diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 8ff18cddc..387ad6c8f 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -175,6 +175,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -3009,6 +3013,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -13441,6 +13448,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -21461,6 +21471,380 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team/{team_slug}/copilot/metrics": { "get": { "summary": "Get Copilot metrics for a team", @@ -39721,6 +40105,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -48207,7 +48594,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -48362,7 +48749,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", @@ -109737,6 +110124,110 @@ "estimated_storage_for_month" ] }, + "network-configuration": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "network-settings": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, "team-organization": { "title": "Team Organization", "description": "Team Organization", @@ -285044,6 +285535,54 @@ "estimated_storage_for_month": 40 } }, + "network-configurations-paginated": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + }, + "network-configuration": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + }, + "network-settings": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + }, "team-full": { "value": { "id": 1, @@ -305691,6 +306230,14 @@ "type": "string" } }, + "dependabot-alert-comma-separated-epss": { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, "dependabot-alert-scope": { "name": "scope", "in": "query", @@ -306520,6 +307067,24 @@ "type": "string" } }, + "network-configuration-id": { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + "network-settings-id": { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "discussion-number": { "name": "discussion_number", "description": "The number that identifies the discussion.", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index b6745d5d4..16733d34f 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -93,6 +93,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -2135,6 +2137,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -9807,6 +9810,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -15538,6 +15542,270 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team/{team_slug}/copilot/metrics": get: summary: Get Copilot metrics for a team @@ -28886,6 +29154,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -35032,7 +35301,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -35146,7 +35415,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -79657,6 +79927,85 @@ components: - days_left_in_billing_cycle - estimated_paid_storage_for_month - estimated_storage_for_month + network-configuration: + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration was created, in + ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + network-settings: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that is using this + settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings resource is + configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region team-organization: title: Team Organization description: Team Organization @@ -210929,6 +211278,40 @@ components: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 estimated_storage_for_month: 40 + network-configurations-paginated: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + network-configuration: + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + network-settings: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus team-full: value: id: 1 @@ -228749,6 +229132,18 @@ components: for these packages will be returned. schema: type: string + dependabot-alert-comma-separated-epss: + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string dependabot-alert-scope: name: scope in: query @@ -229477,6 +229872,20 @@ components: required: false schema: type: string + network-configuration-id: + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + network-settings-id: + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string discussion-number: name: discussion_number description: The number that identifies the discussion. diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 8ff18cddc..387ad6c8f 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -175,6 +175,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -3009,6 +3013,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -13441,6 +13448,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -21461,6 +21471,380 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team/{team_slug}/copilot/metrics": { "get": { "summary": "Get Copilot metrics for a team", @@ -39721,6 +40105,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -48207,7 +48594,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -48362,7 +48749,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", @@ -109737,6 +110124,110 @@ "estimated_storage_for_month" ] }, + "network-configuration": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "network-settings": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, "team-organization": { "title": "Team Organization", "description": "Team Organization", @@ -285044,6 +285535,54 @@ "estimated_storage_for_month": 40 } }, + "network-configurations-paginated": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + }, + "network-configuration": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + }, + "network-settings": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + }, "team-full": { "value": { "id": 1, @@ -305691,6 +306230,14 @@ "type": "string" } }, + "dependabot-alert-comma-separated-epss": { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, "dependabot-alert-scope": { "name": "scope", "in": "query", @@ -306520,6 +307067,24 @@ "type": "string" } }, + "network-configuration-id": { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + "network-settings-id": { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "discussion-number": { "name": "discussion_number", "description": "The number that identifies the discussion.", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index b6745d5d4..16733d34f 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -93,6 +93,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -2135,6 +2137,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -9807,6 +9810,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -15538,6 +15542,270 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team/{team_slug}/copilot/metrics": get: summary: Get Copilot metrics for a team @@ -28886,6 +29154,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -35032,7 +35301,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -35146,7 +35415,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -79657,6 +79927,85 @@ components: - days_left_in_billing_cycle - estimated_paid_storage_for_month - estimated_storage_for_month + network-configuration: + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration was created, in + ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + network-settings: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that is using this + settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings resource is + configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region team-organization: title: Team Organization description: Team Organization @@ -210929,6 +211278,40 @@ components: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 estimated_storage_for_month: 40 + network-configurations-paginated: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + network-configuration: + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + network-settings: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus team-full: value: id: 1 @@ -228749,6 +229132,18 @@ components: for these packages will be returned. schema: type: string + dependabot-alert-comma-separated-epss: + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string dependabot-alert-scope: name: scope in: query @@ -229477,6 +229872,20 @@ components: required: false schema: type: string + network-configuration-id: + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + network-settings-id: + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string discussion-number: name: discussion_number description: The number that identifies the discussion. diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 63d93b35a..377b934a1 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -175,6 +175,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -22008,6 +22012,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -87890,6 +87902,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -154519,6 +154539,775 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "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": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, + "examples": { + "default": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team/{team_slug}/copilot/metrics": { "get": { "summary": "Get Copilot metrics for a team", @@ -294307,6 +295096,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -382059,7 +382856,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -388147,7 +388944,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 07cfda80a..e53544344 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -93,6 +93,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -888,7 +890,7 @@ paths: - subscriptions_url - type - url - type: &234 + type: &235 type: string description: The type of credit the user is receiving. enum: @@ -1054,7 +1056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &545 + - &549 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1650,7 +1652,7 @@ paths: schema: type: integer default: 30 - - &156 + - &157 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 @@ -1666,7 +1668,7 @@ paths: application/json: schema: type: array - items: &157 + items: &158 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1759,7 +1761,7 @@ paths: - installation_id - repository_id examples: - default: &158 + default: &159 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1894,7 +1896,7 @@ paths: description: Response content: application/json: - schema: &159 + schema: &160 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2029,7 +2031,7 @@ paths: - request - response examples: - default: &160 + default: &161 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8717,6 +8719,18 @@ paths: schema: type: string - &146 + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string + - &147 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8726,7 +8740,7 @@ paths: enum: - development - runtime - - &147 + - &148 name: sort in: query description: |- @@ -8744,7 +8758,7 @@ paths: - *46 - *37 - *38 - - &148 + - &149 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -8757,7 +8771,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &149 + - &150 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -8777,7 +8791,7 @@ paths: application/json: schema: type: array - items: &150 + items: &151 type: object description: A Dependabot alert. properties: @@ -8832,7 +8846,7 @@ paths: - development - runtime - - security_advisory: &399 + security_advisory: &403 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9099,7 +9113,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &400 + auto_dismissed_at: &404 type: - string - 'null' @@ -9126,7 +9140,7 @@ paths: - repository additionalProperties: false examples: - default: &151 + default: &152 value: - number: 2 state: dismissed @@ -9470,7 +9484,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &225 + - &226 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9481,7 +9495,7 @@ paths: enum: - open - resolved - - &226 + - &227 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9491,7 +9505,7 @@ paths: required: false schema: type: string - - &227 + - &228 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9500,7 +9514,7 @@ paths: required: false schema: type: string - - &228 + - &229 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. @@ -9516,7 +9530,7 @@ paths: - *17 - *37 - *38 - - &229 + - &230 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9525,7 +9539,7 @@ paths: required: false schema: type: string - - &230 + - &231 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9534,7 +9548,7 @@ paths: schema: type: boolean default: false - - &231 + - &232 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9550,7 +9564,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 type: object properties: number: *51 @@ -9566,14 +9580,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &537 + state: &541 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: &538 + resolution: &542 type: - string - 'null' @@ -9672,7 +9686,7 @@ paths: description: Whether the detected secret was found in multiple repositories in the same organization or enterprise. examples: - default: &233 + default: &234 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10125,7 +10139,7 @@ paths: milestone: anyOf: - type: 'null' - - &387 + - &391 title: Milestone description: A collection of related issues and pull requests. @@ -10389,7 +10403,7 @@ paths: - author_association - created_at - updated_at - comment: &446 + comment: &450 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -10964,7 +10978,7 @@ paths: url: type: string format: uri - user: &568 + user: &572 title: Public User description: Public User type: object @@ -12859,7 +12873,7 @@ paths: - closed - all default: open - - &179 + - &180 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -12910,7 +12924,7 @@ paths: type: array items: *73 examples: - default: &180 + default: &181 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14321,14 +14335,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &255 + - &259 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &256 + - &260 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14399,7 +14413,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &267 + '301': &271 description: Moved permanently content: application/json: @@ -14421,7 +14435,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &475 + - &479 name: all description: If `true`, show notifications marked as read. in: query @@ -14429,7 +14443,7 @@ paths: schema: type: boolean default: false - - &476 + - &480 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14439,7 +14453,7 @@ paths: type: boolean default: false - *63 - - &477 + - &481 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: @@ -14810,7 +14824,7 @@ paths: type: boolean examples: - false - security_and_analysis: &216 + security_and_analysis: &217 type: - object - 'null' @@ -14957,7 +14971,7 @@ paths: - url - subscription_url examples: - default: &478 + default: &482 value: - id: '1' repository: @@ -15578,7 +15592,7 @@ paths: - avatar_url - description examples: - default: &585 + default: &589 value: - login: github id: 1 @@ -16551,7 +16565,7 @@ paths: type: integer repository_cache_usages: type: array - items: &272 + items: &276 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17469,7 +17483,7 @@ paths: - all - local_only - selected - selected_actions_url: &278 + selected_actions_url: &282 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` @@ -17559,7 +17573,7 @@ paths: type: array items: *58 examples: - default: &579 + default: &583 value: total_count: 1 repositories: @@ -17887,7 +17901,7 @@ paths: description: Response content: application/json: - schema: &282 + schema: &286 type: object properties: default_workflow_permissions: &107 @@ -17938,7 +17952,7 @@ paths: required: false content: application/json: - schema: &283 + schema: &287 type: object properties: default_workflow_permissions: *107 @@ -18431,7 +18445,7 @@ paths: type: array items: *114 examples: - default: &571 + default: &575 value: total_count: 1 repositories: @@ -19074,7 +19088,7 @@ paths: application/json: schema: type: array - items: &284 + items: &288 title: Runner Application description: Runner Application type: object @@ -19099,7 +19113,7 @@ paths: - download_url - filename examples: - default: &285 + default: &289 value: - os: osx architecture: x64 @@ -19185,7 +19199,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &286 + '201': &290 description: Response content: application/json: @@ -19299,7 +19313,7 @@ paths: - token - expires_at examples: - default: &287 + default: &291 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19338,7 +19352,7 @@ paths: application/json: schema: *118 examples: - default: &288 + default: &292 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19372,7 +19386,7 @@ paths: application/json: schema: *116 examples: - default: &289 + default: &293 value: id: 23 name: MBP @@ -19596,7 +19610,7 @@ paths: - *89 - *115 responses: - '200': &290 + '200': &294 description: Response content: application/json: @@ -19653,7 +19667,7 @@ paths: parameters: - *89 - *115 - - &291 + - &295 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19785,7 +19799,7 @@ paths: description: Response content: application/json: - schema: &303 + schema: &307 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19820,7 +19834,7 @@ paths: - key_id - key examples: - default: &304 + default: &308 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20231,7 +20245,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *89 - - &277 + - &281 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)." @@ -20763,7 +20777,7 @@ paths: bundle_url: type: string examples: - default: &317 + default: &321 value: attestations: - bundle: @@ -20882,7 +20896,7 @@ paths: type: array items: *4 examples: - default: &181 + default: &182 value: - login: octocat id: 1 @@ -21000,7 +21014,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - &342 + - &346 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`, @@ -21010,7 +21024,7 @@ paths: schema: &130 type: string description: The name of the tool used to generate the code scanning analysis. - - &343 + - &347 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 @@ -21034,7 +21048,7 @@ paths: be returned. in: query required: false - schema: &345 + schema: &349 type: string description: State of a code scanning alert. enum: @@ -21057,7 +21071,7 @@ paths: be returned. in: query required: false - schema: &346 + schema: &350 type: string description: Severity of a code scanning alert. enum: @@ -21083,7 +21097,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: &347 + instances_url: &351 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21105,7 +21119,7 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: &348 + dismissed_reason: &352 type: - string - 'null' @@ -21116,14 +21130,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &349 + dismissed_comment: &353 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &350 + rule: &354 type: object properties: id: @@ -21184,7 +21198,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &351 + tool: &355 type: object properties: name: *130 @@ -21195,15 +21209,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *131 - most_recent_instance: &352 + most_recent_instance: &356 type: object properties: - ref: &344 + ref: &348 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &362 + analysis_key: &366 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21214,7 +21228,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &363 + category: &367 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22398,7 +22412,7 @@ paths: type: integer codespaces: type: array - items: &182 + items: &183 type: object title: Codespace description: A codespace. @@ -22433,7 +22447,7 @@ paths: machine: anyOf: - type: 'null' - - &375 + - &379 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -22720,7 +22734,7 @@ paths: - pulls_url - recent_folders examples: - default: &183 + default: &184 value: total_count: 3 codespaces: @@ -23385,7 +23399,7 @@ paths: - updated_at - visibility examples: - default: &376 + default: &380 value: total_count: 2 secrets: @@ -23423,7 +23437,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &381 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23458,7 +23472,7 @@ paths: - key_id - key examples: - default: &378 + default: &382 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23490,7 +23504,7 @@ paths: application/json: schema: *140 examples: - default: &380 + default: &384 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -23959,7 +23973,7 @@ paths: currently being billed. seats: type: array - items: &185 + items: &186 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -23974,7 +23988,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &178 + - &179 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -24033,7 +24047,7 @@ paths: parent: anyOf: - type: 'null' - - &193 + - &194 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24687,7 +24701,7 @@ paths: application/json: schema: type: array - items: &235 + items: &239 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25003,7 +25017,7 @@ paths: - date additionalProperties: true examples: - default: &236 + default: &240 value: - date: '2024-06-24' total_active_users: 24 @@ -25105,7 +25119,7 @@ paths: '500': *139 '403': *27 '404': *6 - '422': &237 + '422': &241 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25173,7 +25187,7 @@ paths: application/json: schema: type: array - items: &238 + items: &242 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25261,7 +25275,7 @@ paths: - breakdown additionalProperties: false examples: - default: &239 + default: &243 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25357,11 +25371,12 @@ paths: - *145 - *146 - *147 + - *148 - *46 - *37 - *38 - - *148 - *149 + - *150 - *17 responses: '200': @@ -25370,9 +25385,9 @@ paths: application/json: schema: type: array - items: *150 + items: *151 examples: - default: *151 + default: *152 '304': *35 '400': *14 '403': *27 @@ -25416,7 +25431,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &153 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -25495,7 +25510,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &407 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25514,7 +25529,7 @@ paths: - key_id - key examples: - default: &404 + default: &408 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -25544,7 +25559,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *153 examples: default: value: @@ -25841,7 +25856,7 @@ paths: application/json: schema: type: array - items: &195 + items: &196 title: Package description: A software package type: object @@ -25912,7 +25927,7 @@ paths: - created_at - updated_at examples: - default: &196 + default: &197 value: - id: 197 name: hello_docker @@ -26079,7 +26094,7 @@ paths: application/json: schema: type: array - items: &175 + items: &176 title: Organization Invitation description: Organization Invitation type: object @@ -26133,7 +26148,7 @@ paths: - invitation_teams_url - node_id examples: - default: &176 + default: &177 value: - id: 1 login: monalisa @@ -26200,7 +26215,7 @@ paths: application/json: schema: type: array - items: &153 + items: &154 title: Org Hook description: Org Hook type: object @@ -26385,9 +26400,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: - default: &154 + default: &155 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -26435,7 +26450,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &155 + - &156 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. @@ -26448,9 +26463,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: - default: *154 + default: *155 '404': *6 x-github: githubCloudOnly: false @@ -26478,7 +26493,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *155 + - *156 requestBody: required: false content: @@ -26524,7 +26539,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: default: value: @@ -26566,7 +26581,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *155 + - *156 responses: '204': description: Response @@ -26594,7 +26609,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *155 + - *156 responses: '200': description: Response @@ -26625,7 +26640,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *155 + - *156 requestBody: required: false content: @@ -26676,9 +26691,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *155 - - *17 - *156 + - *17 + - *157 responses: '200': description: Response @@ -26686,9 +26701,9 @@ paths: application/json: schema: type: array - items: *157 + items: *158 examples: - default: *158 + default: *159 '400': *14 '422': *15 x-github: @@ -26714,16 +26729,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *155 + - *156 - *16 responses: '200': description: Response content: application/json: - schema: *159 + schema: *160 examples: - default: *160 + default: *161 '400': *14 '422': *15 x-github: @@ -26749,7 +26764,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *155 + - *156 - *16 responses: '202': *45 @@ -26779,7 +26794,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *155 + - *156 responses: '204': description: Response @@ -26802,7 +26817,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &165 + - &166 name: actor_type in: path description: The type of the actor @@ -26815,14 +26830,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &166 + - &167 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &161 + - &162 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`.' @@ -26830,7 +26845,7 @@ paths: required: true schema: type: string - - &162 + - &163 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) @@ -26925,12 +26940,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *161 - *162 + - *163 - *19 - *17 - *46 - - &171 + - &172 name: sort description: The property to sort the results by. in: query @@ -27010,14 +27025,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *161 - *162 + - *163 responses: '200': description: Response content: application/json: - schema: &163 + schema: &164 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -27033,7 +27048,7 @@ paths: type: integer format: int64 examples: - default: &164 + default: &165 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -27054,23 +27069,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &167 + - &168 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *161 - *162 + - *163 responses: '200': description: Response content: application/json: - schema: *163 + schema: *164 examples: - default: *164 + default: *165 x-github: enabledForGitHubApps: true category: orgs @@ -27089,18 +27104,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *161 - *162 - - *165 + - *163 - *166 + - *167 responses: '200': description: Response content: application/json: - schema: *163 + schema: *164 examples: - default: *164 + default: *165 x-github: enabledForGitHubApps: true category: orgs @@ -27118,9 +27133,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *161 - *162 - - &168 + - *163 + - &169 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -27133,7 +27148,7 @@ paths: description: Response content: application/json: - schema: &169 + schema: &170 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -27149,7 +27164,7 @@ paths: type: integer format: int64 examples: - default: &170 + default: &171 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -27186,18 +27201,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *167 - - *161 - - *162 - *168 + - *162 + - *163 + - *169 responses: '200': description: Response content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 x-github: enabledForGitHubApps: true category: orgs @@ -27215,19 +27230,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *165 - *166 - - *161 + - *167 - *162 - - *168 + - *163 + - *169 responses: '200': description: Response content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 x-github: enabledForGitHubApps: true category: orgs @@ -27245,13 +27260,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *167 - - *161 + - *168 - *162 + - *163 - *19 - *17 - *46 - - *171 + - *172 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -27335,7 +27350,7 @@ paths: application/json: schema: *20 examples: - default: &442 + default: &446 value: id: 1 account: @@ -27501,12 +27516,12 @@ paths: application/json: schema: anyOf: - - &173 + - &174 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &172 + limit: &173 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -27534,7 +27549,7 @@ paths: properties: {} additionalProperties: false examples: - default: &174 + default: &175 value: limit: collaborators_only origin: organization @@ -27563,13 +27578,13 @@ paths: required: true content: application/json: - schema: &443 + schema: &447 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *172 + limit: *173 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -27594,9 +27609,9 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: - default: *174 + default: *175 '422': *15 x-github: githubCloudOnly: false @@ -27672,9 +27687,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 '404': *6 @@ -27751,7 +27766,7 @@ paths: description: Response content: application/json: - schema: *175 + schema: *176 examples: default: value: @@ -27806,7 +27821,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &177 + - &178 name: invitation_id description: The unique identifier of the invitation. in: path @@ -27837,7 +27852,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *177 + - *178 - *17 - *19 responses: @@ -27847,9 +27862,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: &194 + default: &195 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -27924,7 +27939,7 @@ paths: - closed - all default: open - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -27949,7 +27964,7 @@ paths: type: array items: *73 examples: - default: *180 + default: *181 headers: Link: *56 '404': *6 @@ -28007,7 +28022,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '422': *15 @@ -28103,9 +28118,9 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 '304': *35 '500': *139 '401': *23 @@ -28132,7 +28147,7 @@ paths: parameters: - *89 - *127 - - &184 + - &185 name: codespace_name in: path required: true @@ -28167,15 +28182,15 @@ paths: parameters: - *89 - *127 - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: &374 + default: &378 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -28355,7 +28370,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *185 + schema: *186 examples: default: value: @@ -28430,7 +28445,7 @@ paths: description: Response content: application/json: - schema: &186 + schema: &187 title: Org Membership description: Org Membership type: object @@ -28483,7 +28498,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &187 + response-if-user-has-an-active-admin-membership-with-organization: &188 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -28580,9 +28595,9 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: - response-if-user-already-had-membership-with-organization: *187 + response-if-user-already-had-membership-with-organization: *188 '422': *15 '403': *27 x-github: @@ -28651,7 +28666,7 @@ paths: application/json: schema: type: array - items: &188 + items: &189 title: Migration description: A migration. type: object @@ -28989,7 +29004,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -29168,7 +29183,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &189 + - &190 name: migration_id description: The unique identifier of the migration. in: path @@ -29196,7 +29211,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -29366,7 +29381,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *189 + - *190 responses: '302': description: Response @@ -29388,7 +29403,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *189 + - *190 responses: '204': description: Response @@ -29412,8 +29427,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *189 - - &584 + - *190 + - &588 name: repo_name description: repo_name parameter in: path @@ -29441,7 +29456,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *189 + - *190 - *17 - *19 responses: @@ -29453,7 +29468,7 @@ paths: type: array items: *114 examples: - default: &201 + default: &202 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -29606,7 +29621,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &192 + items: &193 title: Organization Role description: Organization roles type: object @@ -29756,7 +29771,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *89 - - &190 + - &191 name: team_slug description: The slug of the team name. in: path @@ -29788,8 +29803,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *89 - - *190 - - &191 + - *191 + - &192 name: role_id description: The unique identifier of the role. in: path @@ -29825,8 +29840,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *89 - - *190 - *191 + - *192 responses: '204': description: Response @@ -29879,7 +29894,7 @@ paths: parameters: - *89 - *127 - - *191 + - *192 responses: '204': description: Response @@ -29911,7 +29926,7 @@ paths: parameters: - *89 - *127 - - *191 + - *192 responses: '204': description: Response @@ -29940,13 +29955,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *89 - - *191 + - *192 responses: '200': description: Response content: application/json: - schema: *192 + schema: *193 examples: default: value: @@ -29997,7 +30012,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *89 - - *191 + - *192 - *17 - *19 responses: @@ -30076,7 +30091,7 @@ paths: parent: anyOf: - type: 'null' - - *193 + - *194 required: - id - node_id @@ -30090,7 +30105,7 @@ paths: - slug - parent examples: - default: *194 + default: *195 headers: Link: *56 '404': @@ -30120,7 +30135,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *89 - - *191 + - *192 - *17 - *19 responses: @@ -30149,7 +30164,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *193 + items: *194 name: type: - string @@ -30266,7 +30281,7 @@ paths: - type - url examples: - default: *181 + default: *182 headers: Link: *56 '404': @@ -30314,7 +30329,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -30456,7 +30471,7 @@ paths: - nuget - container - *89 - - &586 + - &590 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30492,12 +30507,12 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *196 + default: *197 '403': *27 '401': *23 - '400': &588 + '400': &592 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -30519,7 +30534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &197 + - &198 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 @@ -30537,7 +30552,7 @@ paths: - docker - nuget - container - - &198 + - &199 name: package_name description: The name of the package. in: path @@ -30550,7 +30565,7 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: default: value: @@ -30602,8 +30617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *197 - *198 + - *199 - *89 responses: '204': @@ -30636,8 +30651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - name: token description: package token @@ -30670,8 +30685,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: - - *197 - *198 + - *199 - *89 - *19 - *17 @@ -30692,7 +30707,7 @@ paths: application/json: schema: type: array - items: &199 + items: &200 title: Package Version description: A version of a software package type: object @@ -30827,10 +30842,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - &200 + - &201 name: package_version_id description: Unique identifier of the package version. in: path @@ -30842,7 +30857,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -30878,10 +30893,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - *200 + - *201 responses: '204': description: Response @@ -30913,10 +30928,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - *200 + - *201 responses: '204': description: Response @@ -30946,7 +30961,7 @@ paths: - *89 - *17 - *19 - - &202 + - &203 name: sort description: The property by which to sort the results. in: query @@ -30957,7 +30972,7 @@ paths: - created_at default: created_at - *46 - - &203 + - &204 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -30969,7 +30984,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &204 + - &205 name: repository description: The name of the repository to use to filter the results. in: query @@ -30978,7 +30993,7 @@ paths: type: string examples: - Hello-World - - &205 + - &206 name: permission description: The permission to use to filter the results. in: query @@ -30987,7 +31002,7 @@ paths: type: string examples: - issues_read - - &206 + - &207 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) @@ -30997,7 +31012,7 @@ paths: schema: type: string format: date-time - - &207 + - &208 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) @@ -31314,7 +31329,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -31340,13 +31355,13 @@ paths: - *89 - *17 - *19 - - *202 - - *46 - *203 + - *46 - *204 - *205 - *206 - *207 + - *208 responses: '500': *139 '422': *15 @@ -31630,7 +31645,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -31674,7 +31689,7 @@ paths: type: integer configurations: type: array - items: &208 + items: &209 title: Organization private registry description: Private registry configuration for an organization type: object @@ -31886,7 +31901,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &209 + org-private-registry-with-selected-visibility: &210 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -31988,9 +32003,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *208 + schema: *209 examples: - default: *209 + default: *210 '404': *6 x-github: githubCloudOnly: false @@ -32141,7 +32156,7 @@ paths: application/json: schema: type: array - items: &210 + items: &211 title: Project description: Projects are a way to organize columns and cards of work. @@ -32320,7 +32335,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: default: value: @@ -32358,7 +32373,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &264 + '410': &268 description: Gone content: application/json: @@ -32390,7 +32405,7 @@ paths: application/json: schema: type: array - items: &211 + items: &212 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32466,7 +32481,7 @@ paths: - property_name - value_type examples: - default: &212 + default: &213 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32521,7 +32536,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *211 + items: *212 minItems: 1 maxItems: 100 required: @@ -32551,9 +32566,9 @@ paths: application/json: schema: type: array - items: *211 + items: *212 examples: - default: *212 + default: *213 '403': *27 '404': *6 x-github: @@ -32575,7 +32590,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *89 - - &213 + - &214 name: custom_property_name description: The custom property name in: path @@ -32587,9 +32602,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: &214 + default: &215 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32624,7 +32639,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *89 - - *213 + - *214 requestBody: required: true content: @@ -32691,9 +32706,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *214 + default: *215 '403': *27 '404': *6 x-github: @@ -32717,7 +32732,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *89 - - *213 + - *214 responses: '204': *136 '403': *27 @@ -32781,7 +32796,7 @@ paths: - octocat/Hello-World properties: type: array - items: &215 + items: &216 title: Custom Property Value description: Custom property name and associated value type: object @@ -32871,7 +32886,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *215 + items: *216 required: - repository_names - properties @@ -32924,7 +32939,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -33063,7 +33078,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -33266,7 +33281,7 @@ paths: description: Response content: application/json: - schema: &266 + schema: &270 title: Full Repository description: Full Repository type: object @@ -33731,7 +33746,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &393 + code_of_conduct: &397 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33761,7 +33776,7 @@ paths: - key - name - html_url - security_and_analysis: *216 + security_and_analysis: *217 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -33845,7 +33860,7 @@ paths: - network_count - subscribers_count examples: - default: &268 + default: &272 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34366,7 +34381,7 @@ paths: - *89 - *17 - *19 - - &524 + - &528 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34385,7 +34400,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34420,7 +34435,7 @@ paths: source: type: string description: The name of the source - enforcement: &219 + enforcement: &220 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34433,7 +34448,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &220 + items: &221 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34499,7 +34514,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &217 + - &218 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34523,7 +34538,7 @@ paths: match. items: type: string - - &221 + - &222 title: Organization ruleset conditions type: object description: |- @@ -34537,7 +34552,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34571,7 +34586,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34593,7 +34608,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34606,7 +34621,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &218 + items: &219 title: Repository ruleset property targeting definition type: object @@ -34639,7 +34654,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *218 + items: *219 required: - repository_property type: @@ -34647,12 +34662,12 @@ paths: - object rules: type: array - items: &222 + items: &223 title: Repository Rule type: object description: A repository rule. oneOf: - - &506 + - &510 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34664,7 +34679,7 @@ paths: type: string enum: - creation - - &507 + - &511 title: update description: Only allow users with bypass permission to update matching refs. @@ -34685,7 +34700,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &509 + - &513 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34697,7 +34712,7 @@ paths: type: string enum: - deletion - - &510 + - &514 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34709,7 +34724,7 @@ paths: type: string enum: - required_linear_history - - &511 + - &515 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34787,7 +34802,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &512 + - &516 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -34811,7 +34826,7 @@ paths: type: string required: - required_deployment_environments - - &513 + - &517 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -34823,7 +34838,7 @@ paths: type: string enum: - required_signatures - - &514 + - &518 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -34876,7 +34891,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &515 + - &519 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34924,7 +34939,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &516 + - &520 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34936,7 +34951,7 @@ paths: type: string enum: - non_fast_forward - - &517 + - &521 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34972,7 +34987,7 @@ paths: required: - operator - pattern - - &518 + - &522 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35008,7 +35023,7 @@ paths: required: - operator - pattern - - &519 + - &523 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35044,7 +35059,7 @@ paths: required: - operator - pattern - - &520 + - &524 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35080,7 +35095,7 @@ paths: required: - operator - pattern - - &521 + - &525 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35206,7 +35221,7 @@ paths: maximum: 100 required: - max_file_size - - &522 + - &526 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35256,7 +35271,7 @@ paths: - repository_id required: - workflows - - &523 + - &527 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35390,16 +35405,16 @@ paths: - push - repository default: branch - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *221 + items: *221 + conditions: *222 rules: type: array description: An array of rules within the ruleset. - items: *222 + items: *223 required: - name - enforcement @@ -35437,9 +35452,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: &224 + default: &225 value: id: 21 name: super cool ruleset @@ -35494,7 +35509,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &525 + - &529 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 @@ -35509,7 +35524,7 @@ paths: in: query schema: type: string - - &526 + - &530 name: time_period description: |- The time period to filter by. @@ -35525,14 +35540,14 @@ paths: - week - month default: day - - &527 + - &531 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 - - &528 + - &532 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35552,7 +35567,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &533 title: Rule Suites description: Response type: array @@ -35608,7 +35623,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &530 + default: &534 value: - id: 21 actor_id: 12 @@ -35652,7 +35667,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &531 + - &535 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35668,7 +35683,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &536 title: Rule Suite description: Response type: object @@ -35775,7 +35790,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &533 + default: &537 value: id: 21 actor_id: 12 @@ -35848,9 +35863,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 '404': *6 '500': *139 put: @@ -35894,16 +35909,16 @@ paths: - tag - push - repository - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *221 + items: *221 + conditions: *222 rules: description: An array of rules within the ruleset. type: array - items: *222 + items: *223 examples: default: value: @@ -35938,9 +35953,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 '404': *6 '500': *139 delete: @@ -35987,14 +36002,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *225 - *226 - *227 - *228 + - *229 - *46 - *19 - *17 - - &535 + - &539 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 @@ -36004,7 +36019,7 @@ paths: required: false schema: type: string - - &536 + - &540 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 @@ -36014,9 +36029,9 @@ paths: required: false schema: type: string - - *229 - *230 - *231 + - *232 responses: '200': description: Response @@ -36024,9 +36039,9 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: - default: *233 + default: *234 headers: Link: *56 '404': *6 @@ -36096,7 +36111,7 @@ paths: application/json: schema: type: array - items: &543 + items: &547 description: A repository security advisory. type: object properties: @@ -36340,7 +36355,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 credits_detailed: type: - array @@ -36351,7 +36366,7 @@ paths: type: object properties: user: *4 - type: *234 + type: *235 state: type: string description: The state of the user's acceptance of the @@ -36377,7 +36392,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *178 + items: *179 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -36415,7 +36430,7 @@ paths: - private_fork additionalProperties: false examples: - default: &544 + default: &548 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -36802,9 +36817,9 @@ paths: application/json: schema: type: array - items: *193 + items: *194 examples: - default: *194 + default: *195 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36828,7 +36843,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -36854,7 +36869,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -36889,7 +36904,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &606 type: object properties: total_minutes_used: @@ -36959,7 +36974,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &603 + default: &607 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -36995,7 +37010,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &608 type: object properties: total_gigabytes_bandwidth_used: @@ -37013,7 +37028,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &605 + default: &609 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37045,7 +37060,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &610 type: object properties: days_left_in_billing_cycle: @@ -37063,7 +37078,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &607 + default: &611 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37073,6 +37088,379 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - *89 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: &236 + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration + supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings + in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration + was created, in ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + examples: + default: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *236 + examples: + default: &237 + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + - &238 + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: *236 + examples: + default: *237 + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + - *238 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *236 + examples: + default: *237 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - *89 + - *238 + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - *89 + - name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that + is using this settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured + for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings + resource is configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region + examples: + default: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team/{team_slug}/copilot/metrics": get: summary: Get Copilot metrics for a team @@ -37098,7 +37486,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *89 - - *190 + - *191 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37130,13 +37518,13 @@ paths: application/json: schema: type: array - items: *235 + items: *239 examples: - default: *236 + default: *240 '500': *139 '403': *27 '404': *6 - '422': *237 + '422': *241 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37171,7 +37559,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *89 - - *190 + - *191 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37203,9 +37591,9 @@ paths: application/json: schema: type: array - items: *238 + items: *242 examples: - default: *239 + default: *243 '500': *139 '401': *23 '403': *27 @@ -37237,9 +37625,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 headers: Link: *56 '403': *27 @@ -37333,7 +37721,7 @@ paths: description: Response content: application/json: - schema: &240 + schema: &244 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -37407,7 +37795,7 @@ paths: parent: anyOf: - type: 'null' - - *193 + - *194 members_count: type: integer examples: @@ -37713,7 +38101,7 @@ paths: - repos_count - organization examples: - default: &241 + default: &245 value: id: 1 node_id: MDQ6VGVhbTE= @@ -37784,15 +38172,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *89 - - *190 + - *191 responses: '200': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 x-github: githubCloudOnly: false @@ -37814,7 +38202,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *89 - - *190 + - *191 requestBody: required: false content: @@ -37877,16 +38265,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '201': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 '422': *15 '403': *27 @@ -37912,7 +38300,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -37939,7 +38327,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *89 - - *190 + - *191 - *46 - *17 - *19 @@ -37956,7 +38344,7 @@ paths: application/json: schema: type: array - items: &242 + items: &246 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38067,7 +38455,7 @@ paths: - updated_at - url examples: - default: &558 + default: &562 value: - author: login: octocat @@ -38142,7 +38530,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *89 - - *190 + - *191 requestBody: required: true content: @@ -38176,9 +38564,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: &243 + default: &247 value: author: login: octocat @@ -38251,8 +38639,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *89 - - *190 - - &244 + - *191 + - &248 name: discussion_number description: The number that identifies the discussion. in: path @@ -38264,9 +38652,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38289,8 +38677,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: false content: @@ -38313,9 +38701,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: &559 + default: &563 value: author: login: octocat @@ -38386,8 +38774,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 responses: '204': description: Response @@ -38414,8 +38802,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *89 - - *190 - - *244 + - *191 + - *248 - *46 - *17 - *19 @@ -38426,7 +38814,7 @@ paths: application/json: schema: type: array - items: &245 + items: &249 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -38506,7 +38894,7 @@ paths: - updated_at - url examples: - default: &560 + default: &564 value: - author: login: octocat @@ -38575,8 +38963,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: true content: @@ -38598,9 +38986,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: &246 + default: &250 value: author: login: octocat @@ -38667,9 +39055,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *89 - - *190 - - *244 - - &247 + - *191 + - *248 + - &251 name: comment_number description: The number that identifies the comment. in: path @@ -38681,9 +39069,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38706,9 +39094,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 requestBody: required: true content: @@ -38730,9 +39118,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: &561 + default: &565 value: author: login: octocat @@ -38797,9 +39185,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 responses: '204': description: Response @@ -38826,9 +39214,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 - 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. @@ -38854,7 +39242,7 @@ paths: application/json: schema: type: array - items: &248 + items: &252 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -38898,7 +39286,7 @@ paths: - content - created_at examples: - default: &250 + default: &254 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38949,9 +39337,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 requestBody: required: true content: @@ -38984,9 +39372,9 @@ paths: team discussion comment content: application/json: - schema: *248 + schema: *252 examples: - default: &249 + default: &253 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39015,9 +39403,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39041,10 +39429,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *89 - - *190 - - *244 - - *247 - - &251 + - *191 + - *248 + - *251 + - &255 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39077,8 +39465,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 - 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. @@ -39104,9 +39492,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -39133,8 +39521,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: true content: @@ -39166,16 +39554,16 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39199,9 +39587,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *89 - - *190 - - *244 - - *251 + - *191 + - *248 + - *255 responses: '204': description: Response @@ -39226,7 +39614,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39236,9 +39624,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 x-github: @@ -39261,7 +39649,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *89 - - *190 + - *191 - name: role description: Filters members returned by their role in the team. in: query @@ -39284,7 +39672,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -39315,14 +39703,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 responses: '200': description: Response content: application/json: - schema: &252 + schema: &256 title: Team Membership description: Team Membership type: object @@ -39350,7 +39738,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &562 + response-if-user-is-a-team-maintainer: &566 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -39387,7 +39775,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 requestBody: required: false @@ -39413,9 +39801,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-users-membership-with-team-is-now-pending: &563 + response-if-users-membership-with-team-is-now-pending: &567 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -39451,7 +39839,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 responses: '204': @@ -39479,7 +39867,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39489,7 +39877,7 @@ paths: application/json: schema: type: array - items: &253 + items: &257 title: Team Project description: A team's access to a project. type: object @@ -39558,7 +39946,7 @@ paths: - updated_at - permissions examples: - default: &564 + default: &568 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39620,8 +40008,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *89 - - *190 - - &254 + - *191 + - &258 name: project_id description: The unique identifier of the project. in: path @@ -39633,9 +40021,9 @@ paths: description: Response content: application/json: - schema: *253 + schema: *257 examples: - default: &565 + default: &569 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39696,8 +40084,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *89 - - *190 - - *254 + - *191 + - *258 requestBody: required: false content: @@ -39763,8 +40151,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *89 - - *190 - - *254 + - *191 + - *258 responses: '204': description: Response @@ -39789,7 +40177,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39801,7 +40189,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -39831,15 +40219,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &566 + schema: &570 title: Team Repository description: A team's access to a repository. type: object @@ -40481,9 +40869,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 requestBody: required: false content: @@ -40529,9 +40917,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 responses: '204': description: Response @@ -40556,7 +40944,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -40566,9 +40954,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - response-if-child-teams-exist: &567 + response-if-child-teams-exist: &571 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -40692,7 +41080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &257 + - &261 name: card_id description: The unique identifier of the card. in: path @@ -40704,7 +41092,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &262 title: Project Card description: Project cards represent a scope of work. type: object @@ -40779,7 +41167,7 @@ paths: - created_at - updated_at examples: - default: &259 + default: &263 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -40829,7 +41217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *257 + - *261 requestBody: required: false content: @@ -40859,9 +41247,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: - default: *259 + default: *263 '304': *35 '403': *27 '401': *23 @@ -40882,7 +41270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *257 + - *261 responses: '204': description: Response @@ -40920,7 +41308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *257 + - *261 requestBody: required: true content: @@ -41027,7 +41415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &260 + - &264 name: column_id description: The unique identifier of the column. in: path @@ -41039,7 +41427,7 @@ paths: description: Response content: application/json: - schema: &261 + schema: &265 title: Project Column description: Project columns contain cards of work. type: object @@ -41093,7 +41481,7 @@ paths: - created_at - updated_at examples: - default: &262 + default: &266 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41122,7 +41510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *260 + - *264 requestBody: required: true content: @@ -41147,9 +41535,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *265 examples: - default: *262 + default: *266 '304': *35 '403': *27 '401': *23 @@ -41168,7 +41556,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *260 + - *264 responses: '204': description: Response @@ -41191,7 +41579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *260 + - *264 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -41212,7 +41600,7 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: default: value: @@ -41265,7 +41653,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *260 + - *264 requestBody: required: true content: @@ -41309,9 +41697,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: - default: *259 + default: *263 '304': *35 '403': *27 '401': *23 @@ -41361,7 +41749,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *260 + - *264 requestBody: required: true content: @@ -41418,15 +41806,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *254 + - *258 responses: '200': description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: &263 + default: &267 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -41479,7 +41867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *254 + - *258 requestBody: required: false content: @@ -41528,9 +41916,9 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: *263 + default: *267 '404': description: Not Found if the authenticated user does not have access to the project @@ -41551,7 +41939,7 @@ paths: items: type: string '401': *23 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -41569,7 +41957,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *254 + - *258 responses: '204': description: Delete Success @@ -41590,7 +41978,7 @@ paths: items: type: string '401': *23 - '410': *264 + '410': *268 '404': *6 x-github: githubCloudOnly: false @@ -41613,7 +42001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *254 + - *258 - 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 @@ -41640,7 +42028,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -41665,7 +42053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *254 + - *258 - *127 requestBody: required: false @@ -41715,7 +42103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *254 + - *258 - *127 responses: '204': @@ -41744,7 +42132,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *254 + - *258 - *127 responses: '200': @@ -41809,7 +42197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *254 + - *258 - *17 - *19 responses: @@ -41819,7 +42207,7 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: default: value: @@ -41851,7 +42239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *254 + - *258 requestBody: required: true content: @@ -41875,7 +42263,7 @@ paths: description: Response content: application/json: - schema: *261 + schema: *265 examples: default: value: @@ -41936,7 +42324,7 @@ paths: resources: type: object properties: - core: &265 + core: &269 title: Rate Limit type: object properties: @@ -41953,20 +42341,20 @@ paths: - remaining - reset - used - graphql: *265 - search: *265 - code_search: *265 - source_import: *265 - integration_manifest: *265 - code_scanning_upload: *265 - actions_runner_registration: *265 - scim: *265 - dependency_snapshots: *265 - code_scanning_autofix: *265 + graphql: *269 + search: *269 + code_search: *269 + source_import: *269 + integration_manifest: *269 + code_scanning_upload: *269 + actions_runner_registration: *269 + scim: *269 + dependency_snapshots: *269 + code_scanning_autofix: *269 required: - core - search - rate: *265 + rate: *269 required: - rate - resources @@ -42070,14 +42458,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *266 + schema: *270 examples: default-response: summary: Default response @@ -42578,7 +42966,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *267 + '301': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42596,8 +42984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -42834,10 +43222,10 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 - '307': &269 + default: *272 + '307': &273 description: Temporary Redirect content: application/json: @@ -42866,8 +43254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -42889,7 +43277,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *269 + '307': *273 '404': *6 x-github: githubCloudOnly: false @@ -42912,11 +43300,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - - &295 + - &299 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -42939,7 +43327,7 @@ paths: type: integer artifacts: type: array - items: &270 + items: &274 title: Artifact description: An artifact type: object @@ -43025,7 +43413,7 @@ paths: - expires_at - updated_at examples: - default: &296 + default: &300 value: total_count: 2 artifacts: @@ -43084,9 +43472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *255 - - *256 - - &271 + - *259 + - *260 + - &275 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43098,7 +43486,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -43135,9 +43523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *255 - - *256 - - *271 + - *259 + - *260 + - *275 responses: '204': description: Response @@ -43161,9 +43549,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *255 - - *256 - - *271 + - *259 + - *260 + - *275 - name: archive_format in: path required: true @@ -43177,7 +43565,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': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43200,14 +43588,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -43233,11 +43621,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - - &273 + - &277 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 @@ -43271,7 +43659,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &278 title: Repository actions caches description: Repository actions caches type: object @@ -43321,7 +43709,7 @@ paths: - total_count - actions_caches examples: - default: &275 + default: &279 value: total_count: 1 actions_caches: @@ -43353,23 +43741,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: - - *255 - - *256 + - *259 + - *260 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *273 + - *277 responses: '200': description: Response content: application/json: - schema: *274 + schema: *278 examples: - default: *275 + default: *279 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43389,8 +43777,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: - - *255 - - *256 + - *259 + - *260 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -43421,9 +43809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *255 - - *256 - - &276 + - *259 + - *260 + - &280 name: job_id description: The unique identifier of the job. in: path @@ -43435,7 +43823,7 @@ paths: description: Response content: application/json: - schema: &299 + schema: &303 title: Job description: Information of a job execution in a workflow run type: object @@ -43782,9 +44170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *255 - - *256 - - *276 + - *259 + - *260 + - *280 responses: '302': description: Response @@ -43812,9 +44200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *255 - - *256 - - *276 + - *259 + - *260 + - *280 requestBody: required: false content: @@ -43860,8 +44248,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Status response @@ -43911,8 +44299,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -43975,8 +44363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -43994,7 +44382,7 @@ paths: type: integer secrets: type: array - items: &301 + items: &305 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44015,7 +44403,7 @@ paths: - created_at - updated_at examples: - default: &302 + default: &306 value: total_count: 2 secrets: @@ -44048,9 +44436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *255 - - *256 - - *277 + - *259 + - *260 + - *281 - *19 responses: '200': @@ -44067,7 +44455,7 @@ paths: type: integer variables: type: array - items: &305 + items: &309 title: Actions Variable type: object properties: @@ -44101,7 +44489,7 @@ paths: - created_at - updated_at examples: - default: &306 + default: &310 value: total_count: 2 variables: @@ -44134,8 +44522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44144,11 +44532,11 @@ paths: schema: type: object properties: - enabled: &279 + enabled: &283 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *103 - selected_actions_url: *278 + selected_actions_url: *282 required: - enabled examples: @@ -44175,8 +44563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -44187,7 +44575,7 @@ paths: schema: type: object properties: - enabled: *279 + enabled: *283 allowed_actions: *103 required: - enabled @@ -44217,14 +44605,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &280 + schema: &284 type: object properties: access_level: @@ -44241,7 +44629,7 @@ paths: required: - access_level examples: - default: &281 + default: &285 value: access_level: organization x-github: @@ -44265,15 +44653,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: application/json: - schema: *280 + schema: *284 examples: - default: *281 + default: *285 responses: '204': description: Response @@ -44297,8 +44685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44325,8 +44713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -44358,14 +44746,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *282 + schema: *286 examples: default: *109 x-github: @@ -44388,8 +44776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Success response @@ -44400,7 +44788,7 @@ paths: required: true content: application/json: - schema: *283 + schema: *287 examples: default: *109 x-github: @@ -44429,8 +44817,8 @@ paths: in: query schema: type: string - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -44474,8 +44862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44483,9 +44871,9 @@ paths: application/json: schema: type: array - items: *284 + items: *288 examples: - default: *285 + default: *289 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44507,8 +44895,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -44551,7 +44939,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *286 + '201': *290 '404': *6 '422': *7 x-github: @@ -44581,8 +44969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -44590,7 +44978,7 @@ paths: application/json: schema: *118 examples: - default: *287 + default: *291 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44618,8 +45006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -44627,7 +45015,7 @@ paths: application/json: schema: *118 examples: - default: *288 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44649,8 +45037,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '200': @@ -44659,7 +45047,7 @@ paths: application/json: schema: *116 examples: - default: *289 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44680,8 +45068,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '204': @@ -44707,8 +45095,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '200': *120 @@ -44733,8 +45121,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: - - *255 - - *256 + - *259 + - *260 - *115 requestBody: required: true @@ -44783,8 +45171,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: - - *255 - - *256 + - *259 + - *260 - *115 requestBody: required: true @@ -44834,11 +45222,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: - '200': *290 + '200': *294 '404': *6 x-github: githubCloudOnly: false @@ -44865,10 +45253,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: - - *255 - - *256 + - *259 + - *260 - *115 - - *291 + - *295 responses: '200': *120 '404': *6 @@ -44896,9 +45284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *255 - - *256 - - &309 + - *259 + - *260 + - &313 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. @@ -44906,7 +45294,7 @@ paths: required: false schema: type: string - - &310 + - &314 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -44914,7 +45302,7 @@ paths: required: false schema: type: string - - &311 + - &315 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -44923,7 +45311,7 @@ paths: required: false schema: type: string - - &312 + - &316 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 @@ -44950,7 +45338,7 @@ paths: - pending - *17 - *19 - - &313 + - &317 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)." @@ -44959,7 +45347,7 @@ paths: schema: type: string format: date-time - - &292 + - &296 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -44968,13 +45356,13 @@ paths: schema: type: boolean default: false - - &314 + - &318 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &315 + - &319 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -44997,7 +45385,7 @@ paths: type: integer workflow_runs: type: array - items: &293 + items: &297 title: Workflow Run description: An invocation of a workflow type: object @@ -45114,7 +45502,7 @@ paths: type: - array - 'null' - items: &334 + items: &338 title: Pull Request Minimal type: object properties: @@ -45241,7 +45629,7 @@ paths: head_commit: anyOf: - type: 'null' - - &338 + - &342 title: Simple Commit description: A commit. type: object @@ -45356,7 +45744,7 @@ paths: - workflow_url - pull_requests examples: - default: &316 + default: &320 value: total_count: 1 workflow_runs: @@ -45592,24 +45980,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *255 - - *256 - - &294 + - *259 + - *260 + - &298 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *292 + - *296 responses: '200': description: Response content: application/json: - schema: *293 + schema: *297 examples: - default: &297 + default: &301 value: id: 30433642 name: Build @@ -45850,9 +46238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '204': description: Response @@ -45875,9 +46263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -46005,9 +46393,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: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '201': description: Response @@ -46040,12 +46428,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 - *17 - *19 - - *295 + - *299 responses: '200': description: Response @@ -46061,9 +46449,9 @@ paths: type: integer artifacts: type: array - items: *270 + items: *274 examples: - default: *296 + default: *300 headers: Link: *56 x-github: @@ -46087,25 +46475,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *255 - - *256 - - *294 - - &298 + - *259 + - *260 + - *298 + - &302 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *292 + - *296 responses: '200': description: Response content: application/json: - schema: *293 + schema: *297 examples: - default: *297 + default: *301 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46128,10 +46516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *255 - - *256 - - *294 + - *259 + - *260 - *298 + - *302 - *17 - *19 responses: @@ -46149,9 +46537,9 @@ paths: type: integer jobs: type: array - items: *299 + items: *303 examples: - default: &300 + default: &304 value: total_count: 1 jobs: @@ -46264,10 +46652,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 - *298 + - *302 responses: '302': description: Response @@ -46295,9 +46683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '202': description: Response @@ -46330,9 +46718,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: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: true content: @@ -46399,9 +46787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '202': description: Response @@ -46434,9 +46822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 - 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 @@ -46466,9 +46854,9 @@ paths: type: integer jobs: type: array - items: *299 + items: *303 examples: - default: *300 + default: *304 headers: Link: *56 x-github: @@ -46493,9 +46881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '302': description: Response @@ -46522,9 +46910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '204': description: Response @@ -46551,9 +46939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -46622,7 +47010,7 @@ paths: items: type: object properties: - type: &412 + type: &416 type: string description: The type of reviewer. enum: @@ -46633,7 +47021,7 @@ paths: reviewer: anyOf: - *4 - - *178 + - *179 required: - environment - wait_timer @@ -46708,9 +47096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: true content: @@ -46760,7 +47148,7 @@ paths: application/json: schema: type: array - items: &407 + items: &411 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -46872,7 +47260,7 @@ paths: - created_at - updated_at examples: - default: &408 + default: &412 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -46928,9 +47316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: false content: @@ -46975,9 +47363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: false content: @@ -47024,9 +47412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -47163,8 +47551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -47182,9 +47570,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *305 examples: - default: *302 + default: *306 headers: Link: *56 x-github: @@ -47209,16 +47597,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *303 + schema: *307 examples: - default: *304 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47240,17 +47628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *301 + schema: *305 examples: - default: &425 + default: &429 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -47276,8 +47664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -47332,8 +47720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -47359,9 +47747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *255 - - *256 - - *277 + - *259 + - *260 + - *281 - *19 responses: '200': @@ -47378,9 +47766,9 @@ paths: type: integer variables: type: array - items: *305 + items: *309 examples: - default: *306 + default: *310 headers: Link: *56 x-github: @@ -47403,8 +47791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -47456,17 +47844,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 responses: '200': description: Response content: application/json: - schema: *305 + schema: *309 examples: - default: &426 + default: &430 value: name: USERNAME value: octocat @@ -47492,8 +47880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 requestBody: required: true @@ -47536,8 +47924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 responses: '204': @@ -47563,8 +47951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -47582,7 +47970,7 @@ paths: type: integer workflows: type: array - items: &307 + items: &311 title: Workflow description: A GitHub Actions workflow type: object @@ -47700,9 +48088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *255 - - *256 - - &308 + - *259 + - *260 + - &312 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -47717,7 +48105,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *311 examples: default: value: @@ -47750,9 +48138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47777,9 +48165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47830,9 +48218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47859,19 +48247,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *255 - - *256 - - *308 - - *309 - - *310 - - *311 + - *259 + - *260 - *312 - - *17 - - *19 - *313 - - *292 - *314 - *315 + - *316 + - *17 + - *19 + - *317 + - *296 + - *318 + - *319 responses: '200': description: Response @@ -47887,9 +48275,9 @@ paths: type: integer workflow_runs: type: array - items: *293 + items: *297 examples: - default: *316 + default: *320 headers: Link: *56 x-github: @@ -47915,9 +48303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '200': description: Response @@ -47978,8 +48366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *255 - - *256 + - *259 + - *260 - *46 - *17 - *37 @@ -48147,8 +48535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -48160,7 +48548,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -48185,8 +48573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *255 - - *256 + - *259 + - *260 - name: assignee in: path required: true @@ -48222,8 +48610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -48335,8 +48723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *37 - *38 @@ -48382,7 +48770,7 @@ paths: bundle_url: type: string examples: - default: *317 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48402,8 +48790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -48411,7 +48799,7 @@ paths: application/json: schema: type: array - items: &318 + items: &322 title: Autolink reference description: An autolink reference. type: object @@ -48465,8 +48853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -48505,9 +48893,9 @@ paths: description: response content: application/json: - schema: *318 + schema: *322 examples: - default: &319 + default: &323 value: id: 1 key_prefix: TICKET- @@ -48538,9 +48926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *255 - - *256 - - &320 + - *259 + - *260 + - &324 name: autolink_id description: The unique identifier of the autolink. in: path @@ -48552,9 +48940,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *322 examples: - default: *319 + default: *323 '404': *6 x-github: githubCloudOnly: false @@ -48574,9 +48962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *255 - - *256 - - *320 + - *259 + - *260 + - *324 responses: '204': description: Response @@ -48600,8 +48988,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response if Dependabot is enabled @@ -48651,8 +49039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -48673,8 +49061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -48694,8 +49082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *255 - - *256 + - *259 + - *260 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -48733,7 +49121,7 @@ paths: - url protected: type: boolean - protection: &322 + protection: &326 title: Branch Protection description: Branch Protection type: object @@ -48776,7 +49164,7 @@ paths: required: - contexts - checks - enforce_admins: &325 + enforce_admins: &329 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -48793,7 +49181,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &327 + required_pull_request_reviews: &331 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -48815,7 +49203,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *178 + items: *179 apps: description: The list of apps with review dismissal access. @@ -48847,7 +49235,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *178 + items: *179 apps: description: The list of apps allowed to bypass pull request requirements. @@ -48877,7 +49265,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &324 + restrictions: &328 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -49202,9 +49590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *255 - - *256 - - &323 + - *259 + - *260 + - &327 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). @@ -49218,14 +49606,14 @@ paths: description: Response content: application/json: - schema: &333 + schema: &337 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &383 + commit: &387 title: Commit description: Commit type: object @@ -49264,7 +49652,7 @@ paths: author: anyOf: - type: 'null' - - &321 + - &325 title: Git User description: Metaproperties for Git author/committer information. @@ -49285,7 +49673,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 message: type: string examples: @@ -49309,7 +49697,7 @@ paths: required: - sha - url - verification: &432 + verification: &436 title: Verification type: object properties: @@ -49388,7 +49776,7 @@ paths: type: integer files: type: array - items: &395 + items: &399 title: Diff Entry description: Diff Entry type: object @@ -49482,7 +49870,7 @@ paths: - self protected: type: boolean - protection: *322 + protection: *326 protection_url: type: string format: uri @@ -49591,7 +49979,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *267 + '301': *271 '404': *6 x-github: githubCloudOnly: false @@ -49613,15 +50001,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *326 examples: default: value: @@ -49815,9 +50203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -50077,7 +50465,7 @@ paths: url: type: string format: uri - required_status_checks: &330 + required_status_checks: &334 title: Status Check Policy description: Status Check Policy type: object @@ -50158,7 +50546,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 apps: type: array items: *5 @@ -50176,7 +50564,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 apps: type: array items: *5 @@ -50236,7 +50624,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *324 + restrictions: *328 required_conversation_resolution: type: object properties: @@ -50348,9 +50736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50375,17 +50763,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: &326 + default: &330 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -50407,17 +50795,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: *326 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50436,9 +50824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50463,17 +50851,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *327 + schema: *331 examples: - default: &328 + default: &332 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -50569,9 +50957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -50669,9 +51057,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *331 examples: - default: *328 + default: *332 '422': *15 x-github: githubCloudOnly: false @@ -50692,9 +51080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50721,17 +51109,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: &329 + default: &333 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -50754,17 +51142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: *329 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -50784,9 +51172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50811,17 +51199,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *330 + schema: *334 examples: - default: &331 + default: &335 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -50847,9 +51235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -50901,9 +51289,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *334 examples: - default: *331 + default: *335 '404': *6 '422': *15 x-github: @@ -50925,9 +51313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50951,9 +51339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -50987,9 +51375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51056,9 +51444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51122,9 +51510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: content: application/json: @@ -51190,15 +51578,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *324 + schema: *328 examples: default: value: @@ -51289,9 +51677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -51314,9 +51702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51326,7 +51714,7 @@ paths: type: array items: *5 examples: - default: &332 + default: &336 value: - id: 1 slug: octoapp @@ -51383,9 +51771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51419,7 +51807,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51440,9 +51828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51476,7 +51864,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51497,9 +51885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51533,7 +51921,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51555,9 +51943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51565,9 +51953,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '404': *6 x-github: githubCloudOnly: false @@ -51587,9 +51975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51625,9 +52013,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51648,9 +52036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51686,9 +52074,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51709,9 +52097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: content: application/json: @@ -51746,9 +52134,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51770,9 +52158,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51782,7 +52170,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '404': *6 x-github: githubCloudOnly: false @@ -51806,9 +52194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51841,7 +52229,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51866,9 +52254,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51901,7 +52289,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51926,9 +52314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51961,7 +52349,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51988,9 +52376,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -52012,7 +52400,7 @@ paths: description: Response content: application/json: - schema: *333 + schema: *337 examples: default: value: @@ -52128,8 +52516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -52408,7 +52796,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &339 title: CheckRun description: A check performed on the code of a given code change type: object @@ -52543,8 +52931,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *334 - deployment: &616 + items: *338 + deployment: &620 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -52831,9 +53219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *255 - - *256 - - &336 + - *259 + - *260 + - &340 name: check_run_id description: The unique identifier of the check run. in: path @@ -52845,9 +53233,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *339 examples: - default: &337 + default: &341 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -52947,9 +53335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 requestBody: required: true content: @@ -53189,9 +53577,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *339 examples: - default: *337 + default: *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53211,9 +53599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 - *17 - *19 responses: @@ -53325,9 +53713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 responses: '201': description: Response @@ -53371,8 +53759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -53394,7 +53782,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &339 + schema: &343 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -53476,7 +53864,7 @@ paths: type: - array - 'null' - items: *334 + items: *338 app: anyOf: - type: 'null' @@ -53492,7 +53880,7 @@ paths: - string - 'null' format: date-time - head_commit: *338 + head_commit: *342 latest_check_runs_count: type: integer check_runs_url: @@ -53520,7 +53908,7 @@ paths: - check_runs_url - pull_requests examples: - default: &340 + default: &344 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -53811,9 +54199,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *339 + schema: *343 examples: - default: *340 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53832,8 +54220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -54142,9 +54530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *255 - - *256 - - &341 + - *259 + - *260 + - &345 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -54156,9 +54544,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *343 examples: - default: *340 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54181,17 +54569,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *255 - - *256 - - *341 - - &390 + - *259 + - *260 + - *345 + - &394 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &391 + - &395 name: status description: Returns check runs with the specified `status`. in: query @@ -54230,9 +54618,9 @@ paths: type: integer check_runs: type: array - items: *335 + items: *339 examples: - default: &392 + default: &396 value: total_count: 1 check_runs: @@ -54334,9 +54722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *255 - - *256 - - *341 + - *259 + - *260 + - *345 responses: '201': description: Response @@ -54369,21 +54757,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *255 - - *256 - - *342 - - *343 + - *259 + - *260 + - *346 + - *347 - *19 - *17 - - &360 + - &364 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: *344 - - &361 + schema: *348 + - &365 name: pr description: The number of the pull request for the results you want to list. in: query @@ -54408,13 +54796,13 @@ paths: be returned. in: query required: false - schema: *345 + schema: *349 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *346 + schema: *350 responses: '200': description: Response @@ -54430,7 +54818,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: *347 + instances_url: *351 state: *132 fixed_at: *128 dismissed_by: @@ -54438,11 +54826,11 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: *348 - dismissed_comment: *349 - rule: *350 - tool: *351 - most_recent_instance: *352 + dismissed_reason: *352 + dismissed_comment: *353 + rule: *354 + tool: *355 + most_recent_instance: *356 required: - number - created_at @@ -54558,7 +54946,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &353 + '403': &357 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -54585,9 +54973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *255 - - *256 - - &354 + - *259 + - *260 + - &358 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -54601,7 +54989,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &359 type: object properties: number: *51 @@ -54609,7 +54997,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: *347 + instances_url: *351 state: *132 fixed_at: *128 dismissed_by: @@ -54617,8 +55005,8 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: *348 - dismissed_comment: *349 + dismissed_reason: *352 + dismissed_comment: *353 rule: type: object properties: @@ -54680,8 +55068,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *351 - most_recent_instance: *352 + tool: *355 + most_recent_instance: *356 required: - number - created_at @@ -54770,7 +55158,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -54790,9 +55178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: true content: @@ -54807,8 +55195,8 @@ paths: enum: - open - dismissed - dismissed_reason: *348 - dismissed_comment: *349 + dismissed_reason: *352 + dismissed_comment: *353 required: - state examples: @@ -54823,7 +55211,7 @@ paths: description: Response content: application/json: - schema: *355 + schema: *359 examples: default: value: @@ -54898,7 +55286,7 @@ paths: classifications: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances - '403': &359 + '403': &363 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -54925,15 +55313,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: Response content: application/json: - schema: &356 + schema: &360 type: object properties: status: @@ -54960,13 +55348,13 @@ paths: - description - started_at examples: - default: &357 + default: &361 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &358 + '400': &362 description: Bad Request content: application/json: @@ -54977,7 +55365,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': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55002,29 +55390,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: OK content: application/json: - schema: *356 + schema: *360 examples: - default: *357 + default: *361 '202': description: Accepted content: application/json: - schema: *356 + schema: *360 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *358 + '400': *362 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55056,9 +55444,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: false content: @@ -55104,8 +55492,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *358 - '403': *359 + '400': *362 + '403': *363 '404': *6 '422': description: Unprocessable Entity @@ -55129,13 +55517,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 - *19 - *17 - - *360 - - *361 + - *364 + - *365 responses: '200': description: Response @@ -55143,7 +55531,7 @@ paths: application/json: schema: type: array - items: *352 + items: *356 examples: default: value: @@ -55182,7 +55570,7 @@ paths: end_column: 50 classifications: - source - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55216,25 +55604,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *255 - - *256 - - *342 - - *343 + - *259 + - *260 + - *346 + - *347 - *19 - *17 - - *361 + - *365 - 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: *344 + schema: *348 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &364 + schema: &368 type: string description: An identifier for the upload. examples: @@ -55256,23 +55644,23 @@ paths: application/json: schema: type: array - items: &365 + items: &369 type: object properties: - ref: *344 - commit_sha: &373 + ref: *348 + commit_sha: &377 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: *362 + analysis_key: *366 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *363 + category: *367 error: type: string examples: @@ -55297,8 +55685,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *364 - tool: *351 + sarif_id: *368 + tool: *355 deletable: type: boolean warning: @@ -55360,7 +55748,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55396,8 +55784,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: - - *255 - - *256 + - *259 + - *260 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -55410,7 +55798,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *369 examples: response: summary: application/json response @@ -55464,7 +55852,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55546,8 +55934,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: - - *255 - - *256 + - *259 + - *260 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -55603,7 +55991,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': *359 + '403': *363 '404': *6 '503': *61 x-github: @@ -55625,8 +56013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -55634,7 +56022,7 @@ paths: application/json: schema: type: array - items: &366 + items: &370 title: CodeQL Database description: A CodeQL database. type: object @@ -55746,7 +56134,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': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55775,8 +56163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: language in: path description: The language of the CodeQL database. @@ -55788,7 +56176,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *370 examples: default: value: @@ -55820,9 +56208,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': &397 + '302': &401 description: Found - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55844,8 +56232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *255 - - *256 + - *259 + - *260 - name: language in: path description: The language of the CodeQL database. @@ -55855,7 +56243,7 @@ paths: responses: '204': description: Response - '403': *359 + '403': *363 '404': *6 '503': *61 x-github: @@ -55883,8 +56271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -55893,7 +56281,7 @@ paths: type: object additionalProperties: false properties: - language: &367 + language: &371 type: string description: The language targeted by the CodeQL query enum: @@ -55971,7 +56359,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &371 + schema: &375 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -55981,7 +56369,7 @@ paths: description: The ID of the variant analysis. controller_repo: *50 actor: *4 - query_language: *367 + query_language: *371 query_pack_url: type: string description: The download url for the query pack. @@ -56029,7 +56417,7 @@ paths: items: type: object properties: - repository: &368 + repository: &372 title: Repository Identifier description: Repository Identifier type: object @@ -56071,7 +56459,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &372 + analysis_status: &376 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56103,7 +56491,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &369 + access_mismatch_repos: &373 type: object properties: repository_count: @@ -56118,7 +56506,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: *368 + items: *372 required: - repository_count - repositories @@ -56141,8 +56529,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *369 - over_limit_repos: *369 + no_codeql_db_repos: *373 + over_limit_repos: *373 required: - access_mismatch_repos - not_found_repos @@ -56158,7 +56546,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &370 + value: &374 summary: Default response value: id: 1 @@ -56310,10 +56698,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *370 + value: *374 repository_lists: summary: Response for a successful variant analysis submission - value: *370 + value: *374 '404': *6 '422': description: Unable to process variant analysis submission @@ -56341,8 +56729,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: - - *255 - - *256 + - *259 + - *260 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -56354,9 +56742,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *375 examples: - default: *370 + default: *374 '404': *6 '503': *61 x-github: @@ -56379,7 +56767,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: - - *255 + - *259 - name: repo in: path description: The name of the controller repository. @@ -56414,7 +56802,7 @@ paths: type: object properties: repository: *50 - analysis_status: *372 + analysis_status: *376 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -56539,8 +56927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -56622,7 +57010,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -56643,8 +57031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -56728,7 +57116,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *359 + '403': *363 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -56793,8 +57181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -56802,7 +57190,7 @@ paths: schema: type: object properties: - commit_sha: *373 + commit_sha: *377 ref: type: string description: |- @@ -56862,7 +57250,7 @@ paths: schema: type: object properties: - id: *364 + id: *368 url: type: string description: The REST API URL for checking the status of the upload. @@ -56876,7 +57264,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': *359 + '403': *363 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -56899,8 +57287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *255 - - *256 + - *259 + - *260 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -56948,7 +57336,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': *353 + '403': *357 '404': description: Not Found if the sarif id does not match any upload '503': *61 @@ -56973,8 +57361,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57052,8 +57440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *255 - - *256 + - *259 + - *260 - 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 @@ -57181,8 +57569,8 @@ paths: parameters: - *17 - *19 - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57198,7 +57586,7 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: default: value: @@ -57496,8 +57884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -57561,17 +57949,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '400': *14 '401': *23 '403': *27 @@ -57600,8 +57988,8 @@ paths: parameters: - *17 - *19 - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57665,8 +58053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -57703,9 +58091,9 @@ paths: type: integer machines: type: array - items: *375 + items: *379 examples: - default: &574 + default: &578 value: total_count: 2 machines: @@ -57745,8 +58133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *255 - - *256 + - *259 + - *260 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -57833,8 +58221,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: - - *255 - - *256 + - *259 + - *260 - 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 @@ -57903,8 +58291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -57922,7 +58310,7 @@ paths: type: integer secrets: type: array - items: &379 + items: &383 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -57943,7 +58331,7 @@ paths: - created_at - updated_at examples: - default: *376 + default: *380 headers: Link: *56 x-github: @@ -57966,16 +58354,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *377 + schema: *381 examples: - default: *378 + default: *382 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57995,17 +58383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *379 + schema: *383 examples: - default: *380 + default: *384 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58025,8 +58413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -58079,8 +58467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -58109,8 +58497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *255 - - *256 + - *259 + - *260 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -58148,7 +58536,7 @@ paths: application/json: schema: type: array - items: &381 + items: &385 title: Collaborator description: Collaborator type: object @@ -58341,8 +58729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '204': @@ -58385,8 +58773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 requestBody: required: false @@ -58413,7 +58801,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &445 + schema: &449 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -58634,8 +59022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '204': @@ -58665,8 +59053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '200': @@ -58687,7 +59075,7 @@ paths: user: anyOf: - type: 'null' - - *381 + - *385 required: - permission - role_name @@ -58741,8 +59129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -58752,7 +59140,7 @@ paths: application/json: schema: type: array - items: &382 + items: &386 title: Commit Comment description: Commit Comment type: object @@ -58810,7 +59198,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &389 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58869,17 +59257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *382 + schema: *386 examples: - default: &386 + default: &390 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58936,8 +59324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -58960,7 +59348,7 @@ paths: description: Response content: application/json: - schema: *382 + schema: *386 examples: default: value: @@ -59011,8 +59399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -59034,8 +59422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59062,9 +59450,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -59085,8 +59473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -59119,16 +59507,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -59150,10 +59538,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -59202,8 +59590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *255 - - *256 + - *259 + - *260 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -59259,9 +59647,9 @@ paths: application/json: schema: type: array - items: *383 + items: *387 examples: - default: &493 + default: &497 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -59355,9 +59743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *255 - - *256 - - &384 + - *259 + - *260 + - &388 name: commit_sha description: The SHA of the commit. in: path @@ -59429,9 +59817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 - *17 - *19 responses: @@ -59441,9 +59829,9 @@ paths: application/json: schema: type: array - items: *382 + items: *386 examples: - default: *385 + default: *389 headers: Link: *56 x-github: @@ -59471,9 +59859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 requestBody: required: true content: @@ -59508,9 +59896,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *386 examples: - default: *386 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59538,9 +59926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 - *17 - *19 responses: @@ -59550,7 +59938,7 @@ paths: application/json: schema: type: array - items: &484 + items: &488 title: Pull Request Simple description: Pull Request Simple type: object @@ -59670,7 +60058,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 active_lock_reason: type: - string @@ -59725,7 +60113,7 @@ paths: type: - array - 'null' - items: *178 + items: *179 head: type: object properties: @@ -59769,7 +60157,7 @@ paths: _links: type: object properties: - comments: &388 + comments: &392 title: Link description: Hypermedia Link type: object @@ -59778,13 +60166,13 @@ paths: type: string required: - href - commits: *388 - statuses: *388 - html: *388 - issue: *388 - review_comments: *388 - review_comment: *388 - self: *388 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -59795,7 +60183,7 @@ paths: - review_comment - self author_association: *59 - auto_merge: &486 + auto_merge: &490 title: Auto merge description: The status of auto merging a pull request. type: @@ -59860,7 +60248,7 @@ paths: - author_association - auto_merge examples: - default: &485 + default: &489 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -60397,11 +60785,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 - - &389 + - &393 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)" @@ -60416,9 +60804,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *387 examples: - default: &472 + default: &476 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60531,11 +60919,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *255 - - *256 - - *389 - - *390 - - *391 + - *259 + - *260 + - *393 + - *394 + - *395 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -60569,9 +60957,9 @@ paths: type: integer check_runs: type: array - items: *335 + items: *339 examples: - default: *392 + default: *396 headers: Link: *56 x-github: @@ -60596,9 +60984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -60606,7 +60994,7 @@ paths: schema: type: integer example: 1 - - *390 + - *394 - *17 - *19 responses: @@ -60624,7 +61012,7 @@ paths: type: integer check_suites: type: array - items: *339 + items: *343 examples: default: value: @@ -60824,9 +61212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - *17 - *19 responses: @@ -61028,9 +61416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - *17 - *19 responses: @@ -61040,7 +61428,7 @@ paths: application/json: schema: type: array - items: &548 + items: &552 title: Status description: The status of a commit. type: object @@ -61121,7 +61509,7 @@ paths: site_admin: false headers: Link: *56 - '301': *267 + '301': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61149,8 +61537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -61183,11 +61571,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *393 + - *397 code_of_conduct_file: anyOf: - type: 'null' - - &394 + - &398 title: Community Health File type: object properties: @@ -61207,19 +61595,19 @@ paths: contributing: anyOf: - type: 'null' - - *394 + - *398 readme: anyOf: - type: 'null' - - *394 + - *398 issue_template: anyOf: - type: 'null' - - *394 + - *398 pull_request_template: anyOf: - type: 'null' - - *394 + - *398 required: - code_of_conduct - code_of_conduct_file @@ -61348,8 +61736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 - name: basehead @@ -61397,8 +61785,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *383 - merge_base_commit: *383 + base_commit: *387 + merge_base_commit: *387 status: type: string enum: @@ -61422,10 +61810,10 @@ paths: - 6 commits: type: array - items: *383 + items: *387 files: type: array - items: *395 + items: *399 required: - url - html_url @@ -61711,8 +62099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -61863,7 +62251,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &396 + response-if-content-is-a-file: &400 summary: Response if content is a file value: type: file @@ -62000,7 +62388,7 @@ paths: - size - type - url - - &498 + - &502 title: Content File description: Content File type: object @@ -62218,7 +62606,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *396 + response-if-content-is-a-file: *400 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -62287,7 +62675,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *397 + '302': *401 '304': *35 x-github: githubCloudOnly: false @@ -62310,8 +62698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -62406,7 +62794,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &402 title: File Commit description: File Commit type: object @@ -62562,7 +62950,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *402 examples: example-for-creating-a-file: value: @@ -62616,7 +63004,7 @@ paths: schema: oneOf: - *3 - - &427 + - &431 description: Repository rule violation was detected type: object properties: @@ -62637,7 +63025,7 @@ paths: items: type: object properties: - placeholder_id: &540 + placeholder_id: &544 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -62669,8 +63057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -62731,7 +63119,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *402 examples: default: value: @@ -62786,8 +63174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *255 - - *256 + - *259 + - *260 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -62911,8 +63299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *142 - *143 - *144 @@ -62925,6 +63313,7 @@ paths: type: string - *146 - *147 + - *148 - *46 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -62944,8 +63333,8 @@ paths: default: 30 - *37 - *38 - - *148 - *149 + - *150 responses: '200': description: Response @@ -62953,7 +63342,7 @@ paths: application/json: schema: type: array - items: &401 + items: &405 type: object description: A Dependabot alert. properties: @@ -62988,7 +63377,7 @@ paths: - development - runtime - - security_advisory: *399 + security_advisory: *403 security_vulnerability: *49 url: *54 html_url: *55 @@ -63019,7 +63408,7 @@ paths: dismissal. maxLength: 280 fixed_at: *128 - auto_dismissed_at: *400 + auto_dismissed_at: *404 required: - number - state @@ -63246,9 +63635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *255 - - *256 - - &402 + - *259 + - *260 + - &406 name: alert_number in: path description: |- @@ -63263,7 +63652,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *405 examples: default: value: @@ -63373,9 +63762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *255 - - *256 - - *402 + - *259 + - *260 + - *406 requestBody: required: true content: @@ -63420,7 +63809,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *405 examples: default: value: @@ -63549,8 +63938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -63568,7 +63957,7 @@ paths: type: integer secrets: type: array - items: &405 + items: &409 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -63622,16 +64011,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *403 + schema: *407 examples: - default: *404 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63651,15 +64040,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *405 + schema: *409 examples: default: value: @@ -63685,8 +64074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -63739,8 +64128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -63763,8 +64152,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: - - *255 - - *256 + - *259 + - *260 - 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 @@ -63938,8 +64327,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -64199,8 +64588,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -64283,7 +64672,7 @@ paths: - version - url additionalProperties: false - metadata: &406 + metadata: &410 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -64322,7 +64711,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *406 + metadata: *410 resolved: type: object description: A collection of resolved package dependencies. @@ -64336,7 +64725,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *406 + metadata: *410 relationship: type: string description: A notation of whether a dependency is requested @@ -64469,8 +64858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *255 - - *256 + - *259 + - *260 - name: sha description: The SHA recorded at creation time. in: query @@ -64511,9 +64900,9 @@ paths: application/json: schema: type: array - items: *407 + items: *411 examples: - default: *408 + default: *412 headers: Link: *56 x-github: @@ -64579,8 +64968,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -64662,7 +65051,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *411 examples: simple-example: summary: Simple example @@ -64735,9 +65124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *255 - - *256 - - &409 + - *259 + - *260 + - &413 name: deployment_id description: deployment_id parameter in: path @@ -64749,7 +65138,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *411 examples: default: value: @@ -64814,9 +65203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 responses: '204': description: Response @@ -64838,9 +65227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 - *17 - *19 responses: @@ -64850,7 +65239,7 @@ paths: application/json: schema: type: array - items: &410 + items: &414 title: Deployment Status description: The status of a deployment. type: object @@ -65014,9 +65403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 requestBody: required: true content: @@ -65091,9 +65480,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *414 examples: - default: &411 + default: &415 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -65149,9 +65538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 - name: status_id in: path required: true @@ -65162,9 +65551,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *414 examples: - default: *411 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -65189,8 +65578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -65247,8 +65636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -65266,7 +65655,7 @@ paths: - 5 environments: type: array - items: &413 + items: &417 title: Environment description: Details of a deployment environment type: object @@ -65328,7 +65717,7 @@ paths: type: string examples: - wait_timer - wait_timer: &415 + wait_timer: &419 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -65370,11 +65759,11 @@ paths: items: type: object properties: - type: *412 + type: *416 reviewer: anyOf: - *4 - - *178 + - *179 required: - id - node_id @@ -65397,7 +65786,7 @@ paths: - id - node_id - type - deployment_branch_policy: &416 + deployment_branch_policy: &420 type: - object - 'null' @@ -65514,9 +65903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *255 - - *256 - - &414 + - *259 + - *260 + - &418 name: environment_name in: path required: true @@ -65529,9 +65918,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *417 examples: - default: &417 + default: &421 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -65615,9 +66004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: false content: @@ -65627,7 +66016,7 @@ paths: - object - 'null' properties: - wait_timer: *415 + wait_timer: *419 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -65646,14 +66035,14 @@ paths: items: type: object properties: - type: *412 + type: *416 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *416 + deployment_branch_policy: *420 additionalProperties: false examples: default: @@ -65673,9 +66062,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *417 examples: - default: *417 + default: *421 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -65699,9 +66088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 responses: '204': description: Default response @@ -65726,9 +66115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *17 - *19 responses: @@ -65747,7 +66136,7 @@ paths: - 2 branch_policies: type: array - items: &418 + items: &422 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -65808,9 +66197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: true content: @@ -65858,9 +66247,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - example-wildcard: &419 + example-wildcard: &423 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -65902,10 +66291,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - &420 + - *259 + - *260 + - *418 + - &424 name: branch_policy_id in: path required: true @@ -65917,9 +66306,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - default: *419 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65938,10 +66327,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - *420 + - *259 + - *260 + - *418 + - *424 requestBody: required: true content: @@ -65970,9 +66359,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - default: *419 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65991,10 +66380,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - *420 + - *259 + - *260 + - *418 + - *424 responses: '204': description: Response @@ -66019,9 +66408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 responses: '200': description: List of deployment protection rules @@ -66038,7 +66427,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &421 + items: &425 title: Deployment protection rule description: Deployment protection rule type: object @@ -66060,7 +66449,7 @@ paths: for the environment. examples: - true - app: &422 + app: &426 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -66163,9 +66552,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: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 requestBody: content: application/json: @@ -66186,9 +66575,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *421 + schema: *425 examples: - default: &423 + default: &427 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -66223,9 +66612,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: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 - *19 - *17 responses: @@ -66245,7 +66634,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *422 + items: *426 examples: default: value: @@ -66280,10 +66669,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *255 - - *256 - - *414 - - &424 + - *259 + - *260 + - *418 + - &428 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -66295,9 +66684,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *425 examples: - default: *423 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66318,10 +66707,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *414 - - *256 - - *255 - - *424 + - *418 + - *260 + - *259 + - *428 responses: '204': description: Response @@ -66347,9 +66736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *17 - *19 responses: @@ -66367,9 +66756,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *305 examples: - default: *302 + default: *306 headers: Link: *56 x-github: @@ -66394,17 +66783,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 responses: '200': description: Response content: application/json: - schema: *303 + schema: *307 examples: - default: *304 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66426,18 +66815,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 responses: '200': description: Response content: application/json: - schema: *301 + schema: *305 examples: - default: *425 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66459,9 +66848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 requestBody: required: true @@ -66519,9 +66908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 responses: '204': @@ -66547,10 +66936,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *255 - - *256 - - *414 - - *277 + - *259 + - *260 + - *418 + - *281 - *19 responses: '200': @@ -66567,9 +66956,9 @@ paths: type: integer variables: type: array - items: *305 + items: *309 examples: - default: *306 + default: *310 headers: Link: *56 x-github: @@ -66592,9 +66981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: true content: @@ -66646,18 +67035,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *125 responses: '200': description: Response content: application/json: - schema: *305 + schema: *309 examples: - default: *426 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66678,10 +67067,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 - - *414 + - *418 requestBody: required: true content: @@ -66723,10 +67112,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 - - *414 + - *418 responses: '204': description: Response @@ -66748,8 +67137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -66826,8 +67215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *255 - - *256 + - *259 + - *260 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -66986,8 +67375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -67020,9 +67409,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 '400': *14 '422': *15 '403': *27 @@ -67043,8 +67432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67104,7 +67493,7 @@ paths: schema: oneOf: - *92 - - *427 + - *431 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67129,8 +67518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *255 - - *256 + - *259 + - *260 - name: file_sha in: path required: true @@ -67230,8 +67619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67340,7 +67729,7 @@ paths: description: Response content: application/json: - schema: &428 + schema: &432 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -67566,15 +67955,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 responses: '200': description: Response content: application/json: - schema: *428 + schema: *432 examples: default: value: @@ -67630,9 +68019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *255 - - *256 - - &429 + - *259 + - *260 + - &433 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. @@ -67649,7 +68038,7 @@ paths: application/json: schema: type: array - items: &430 + items: &434 title: Git Reference description: Git references within a repository type: object @@ -67725,17 +68114,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 responses: '200': description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: &431 + default: &435 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -67764,8 +68153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67794,9 +68183,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: *431 + default: *435 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -67822,9 +68211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 requestBody: required: true content: @@ -67853,9 +68242,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: *431 + default: *435 '422': *15 '409': *44 x-github: @@ -67873,9 +68262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 responses: '204': description: Response @@ -67928,8 +68317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67996,7 +68385,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &437 title: Git Tag description: Metadata for a Git tag type: object @@ -68052,7 +68441,7 @@ paths: - sha - type - url - verification: *432 + verification: *436 required: - sha - url @@ -68062,7 +68451,7 @@ paths: - tag - message examples: - default: &434 + default: &438 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -68135,8 +68524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *255 - - *256 + - *259 + - *260 - name: tag_sha in: path required: true @@ -68147,9 +68536,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *437 examples: - default: *434 + default: *438 '404': *6 '409': *44 x-github: @@ -68173,8 +68562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -68248,7 +68637,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &439 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -68366,8 +68755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *255 - - *256 + - *259 + - *260 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -68390,7 +68779,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *439 examples: default-response: summary: Default response @@ -68449,8 +68838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -68460,7 +68849,7 @@ paths: application/json: schema: type: array - items: &436 + items: &440 title: Webhook description: Webhooks for repositories. type: object @@ -68523,7 +68912,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &647 + last_response: &651 title: Hook Response type: object properties: @@ -68600,8 +68989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -68654,9 +69043,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: &437 + default: &441 value: type: Repository id: 12345678 @@ -68704,17 +69093,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '200': description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: *437 + default: *441 '404': *6 x-github: githubCloudOnly: false @@ -68734,9 +69123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 requestBody: required: true content: @@ -68781,9 +69170,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: *437 + default: *441 '422': *15 '404': *6 x-github: @@ -68804,9 +69193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -68830,9 +69219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '200': description: Response @@ -68859,9 +69248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 requestBody: required: false content: @@ -68905,11 +69294,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 - - *17 + - *259 + - *260 - *156 + - *17 + - *157 responses: '200': description: Response @@ -68917,9 +69306,9 @@ paths: application/json: schema: type: array - items: *157 + items: *158 examples: - default: *158 + default: *159 '400': *14 '422': *15 x-github: @@ -68938,18 +69327,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 - *16 responses: '200': description: Response content: application/json: - schema: *159 + schema: *160 examples: - default: *160 + default: *161 '400': *14 '422': *15 x-github: @@ -68968,9 +69357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 - *16 responses: '202': *45 @@ -68993,9 +69382,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -69020,9 +69409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -69080,14 +69469,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &438 + schema: &442 title: Import description: A repository import from an external source. type: object @@ -69194,7 +69583,7 @@ paths: - html_url - authors_url examples: - default: &441 + default: &445 value: vcs: subversion use_lfs: true @@ -69210,7 +69599,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': &439 + '503': &443 description: Unavailable due to service under maintenance. content: application/json: @@ -69239,8 +69628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -69288,7 +69677,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: default: value: @@ -69313,7 +69702,7 @@ paths: type: string '422': *15 '404': *6 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69341,8 +69730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -69394,7 +69783,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: example-1: summary: Example 1 @@ -69442,7 +69831,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': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69465,12 +69854,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69496,9 +69885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *255 - - *256 - - &597 + - *259 + - *260 + - &601 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -69512,7 +69901,7 @@ paths: application/json: schema: type: array - items: &440 + items: &444 title: Porter Author description: Porter Author type: object @@ -69566,7 +69955,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': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69591,8 +69980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *255 - - *256 + - *259 + - *260 - name: author_id in: path required: true @@ -69622,7 +70011,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *444 examples: default: value: @@ -69635,7 +70024,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69659,8 +70048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69701,7 +70090,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69729,8 +70118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -69757,11 +70146,11 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: - default: *441 + default: *445 '422': *15 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69784,8 +70173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69793,8 +70182,8 @@ paths: application/json: schema: *20 examples: - default: *442 - '301': *267 + default: *446 + '301': *271 '404': *6 x-github: githubCloudOnly: false @@ -69814,8 +70203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69823,12 +70212,12 @@ paths: application/json: schema: anyOf: - - *173 + - *174 - type: object properties: {} additionalProperties: false examples: - default: &444 + default: &448 value: limit: collaborators_only origin: repository @@ -69853,13 +70242,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: application/json: - schema: *443 + schema: *447 examples: default: summary: Example request body @@ -69871,9 +70260,9 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: - default: *444 + default: *448 '409': description: Response x-github: @@ -69895,8 +70284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -69919,8 +70308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -69930,9 +70319,9 @@ paths: application/json: schema: type: array - items: *445 + items: *449 examples: - default: &590 + default: &594 value: - id: 1 repository: @@ -70063,9 +70452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *255 - - *256 - - *177 + - *259 + - *260 + - *178 requestBody: required: false content: @@ -70094,7 +70483,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *449 examples: default: value: @@ -70225,9 +70614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *255 - - *256 - - *177 + - *259 + - *260 + - *178 responses: '204': description: Response @@ -70258,8 +70647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *255 - - *256 + - *259 + - *260 - 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 @@ -70299,7 +70688,7 @@ paths: required: false schema: type: string - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -70324,7 +70713,7 @@ paths: type: array items: *73 examples: - default: &454 + default: &458 value: - id: 1 node_id: MDU6SXNzdWUx @@ -70472,7 +70861,7 @@ paths: state_reason: completed headers: Link: *56 - '301': *267 + '301': *271 '422': *15 '404': *6 x-github: @@ -70501,8 +70890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -70585,7 +70974,7 @@ paths: application/json: schema: *73 examples: - default: &449 + default: &453 value: id: 1 node_id: MDU6SXNzdWUx @@ -70741,7 +71130,7 @@ paths: '422': *15 '503': *61 '404': *6 - '410': *264 + '410': *268 x-github: triggersNotification: true githubCloudOnly: false @@ -70769,8 +71158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *82 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -70791,9 +71180,9 @@ paths: application/json: schema: type: array - items: *446 + items: *450 examples: - default: &451 + default: &455 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70851,17 +71240,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: &447 + default: &451 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70915,8 +71304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -70939,9 +71328,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: *447 + default: *451 '422': *15 x-github: githubCloudOnly: false @@ -70959,8 +71348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -70981,8 +71370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71009,9 +71398,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -71032,8 +71421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -71066,16 +71455,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -71097,10 +71486,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -71120,8 +71509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -71131,7 +71520,7 @@ paths: application/json: schema: type: array - items: &448 + items: &452 title: Issue Event description: Issue Event type: object @@ -71211,7 +71600,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *178 + requested_team: *179 dismissed_review: title: Issue Event Dismissed Review type: object @@ -71470,8 +71859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *255 - - *256 + - *259 + - *260 - name: event_id in: path required: true @@ -71482,7 +71871,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *452 examples: default: value: @@ -71675,7 +72064,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *264 + '410': *268 '403': *27 x-github: githubCloudOnly: false @@ -71709,9 +72098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *255 - - *256 - - &450 + - *259 + - *260 + - &454 name: issue_number description: The number that identifies the issue. in: path @@ -71725,10 +72114,10 @@ paths: application/json: schema: *73 examples: - default: *449 - '301': *267 + default: *453 + '301': *271 '404': *6 - '410': *264 + '410': *268 '304': *35 x-github: githubCloudOnly: false @@ -71753,9 +72142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -71865,13 +72254,13 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 '422': *15 '503': *61 '403': *27 - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71889,9 +72278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -71919,7 +72308,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71935,9 +72324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: content: application/json: @@ -71964,7 +72353,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71986,9 +72375,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: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - name: assignee in: path required: true @@ -72028,9 +72417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *63 - *17 - *19 @@ -72041,13 +72430,13 @@ paths: application/json: schema: type: array - items: *446 + items: *450 examples: - default: *451 + default: *455 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72076,9 +72465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -72100,16 +72489,16 @@ paths: description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: *447 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *264 + '410': *268 '422': *15 '404': *6 x-github: @@ -72129,9 +72518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -72145,7 +72534,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &455 + - &459 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -72194,7 +72583,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &460 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -72322,7 +72711,7 @@ paths: - performed_via_github_app - assignee - assigner - - &457 + - &461 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -72368,7 +72757,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &462 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -72414,7 +72803,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &463 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -72463,7 +72852,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &460 + - &464 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -72492,7 +72881,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *178 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -72505,7 +72894,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &461 + - &465 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -72534,7 +72923,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *178 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -72547,7 +72936,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &462 + - &466 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -72603,7 +72992,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &463 + - &467 title: Locked Issue Event description: Locked Issue Event type: object @@ -72648,7 +73037,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &464 + - &468 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -72709,7 +73098,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &469 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -72770,7 +73159,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &470 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -72831,7 +73220,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &471 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -72924,7 +73313,7 @@ paths: color: red headers: Link: *56 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72941,9 +73330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -72953,7 +73342,7 @@ paths: application/json: schema: type: array - items: &452 + items: &456 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73008,7 +73397,7 @@ paths: - color - default examples: - default: &453 + default: &457 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73026,9 +73415,9 @@ paths: default: false headers: Link: *56 - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73045,9 +73434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73106,12 +73495,12 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 - '301': *267 + default: *457 + '301': *271 '404': *6 - '410': *264 + '410': *268 '422': *15 x-github: githubCloudOnly: false @@ -73128,9 +73517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73190,12 +73579,12 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 - '301': *267 + default: *457 + '301': *271 '404': *6 - '410': *264 + '410': *268 '422': *15 x-github: githubCloudOnly: false @@ -73212,15 +73601,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 responses: '204': description: Response - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73239,9 +73628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - name: name in: path required: true @@ -73254,7 +73643,7 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: default: value: @@ -73265,9 +73654,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73287,9 +73676,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73318,7 +73707,7 @@ paths: '204': description: Response '403': *27 - '410': *264 + '410': *268 '404': *6 '422': *15 x-github: @@ -73336,9 +73725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 responses: '204': description: Response @@ -73360,9 +73749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - 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. @@ -73388,13 +73777,13 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73412,9 +73801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73446,16 +73835,16 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -73477,10 +73866,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: + - *259 + - *260 + - *454 - *255 - - *256 - - *450 - - *251 responses: '204': description: Response @@ -73509,9 +73898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73521,7 +73910,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -73535,7 +73924,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -73568,9 +73957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -73582,11 +73971,11 @@ paths: type: array items: *73 examples: - default: *454 + default: *458 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73614,9 +74003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73626,7 +74015,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -73644,14 +74034,14 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *264 + '410': *268 '422': *15 '404': *6 x-github: @@ -73671,9 +74061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73706,7 +74096,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 '403': *27 '404': *6 '422': *7 @@ -73728,9 +74118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -73745,10 +74135,6 @@ paths: description: Timeline Event type: object anyOf: - - *455 - - *456 - - *457 - - *458 - *459 - *460 - *461 @@ -73758,6 +74144,10 @@ paths: - *465 - *466 - *467 + - *468 + - *469 + - *470 + - *471 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -74080,7 +74470,7 @@ paths: type: string comments: type: array - items: &487 + items: &491 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -74318,7 +74708,7 @@ paths: type: string comments: type: array - items: *382 + items: *386 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -74593,7 +74983,7 @@ paths: headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74610,8 +75000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -74621,7 +75011,7 @@ paths: application/json: schema: type: array - items: &468 + items: &472 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -74688,8 +75078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -74725,9 +75115,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *472 examples: - default: &469 + default: &473 value: id: 1 key: ssh-rsa AAA... @@ -74761,9 +75151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *255 - - *256 - - &470 + - *259 + - *260 + - &474 name: key_id description: The unique identifier of the key. in: path @@ -74775,9 +75165,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *472 examples: - default: *469 + default: *473 '404': *6 x-github: githubCloudOnly: false @@ -74795,9 +75185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *255 - - *256 - - *470 + - *259 + - *260 + - *474 responses: '204': description: Response @@ -74817,8 +75207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -74828,9 +75218,9 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 + default: *457 headers: Link: *56 '404': *6 @@ -74851,8 +75241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -74888,9 +75278,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: - default: &471 + default: &475 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74922,8 +75312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -74934,9 +75324,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: - default: *471 + default: *475 '404': *6 x-github: githubCloudOnly: false @@ -74953,8 +75343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -74993,7 +75383,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: default: value: @@ -75019,8 +75409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -75046,8 +75436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -75086,9 +75476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *255 - - *256 - - *360 + - *259 + - *260 + - *364 responses: '200': description: Response @@ -75235,8 +75625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75301,8 +75691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75336,9 +75726,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *383 + schema: *387 examples: - default: *472 + default: *476 '204': description: Response when already merged '404': @@ -75363,8 +75753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -75405,7 +75795,7 @@ paths: application/json: schema: type: array - items: *387 + items: *391 examples: default: value: @@ -75461,8 +75851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75502,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: &473 + default: &477 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -75563,9 +75953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *255 - - *256 - - &474 + - *259 + - *260 + - &478 name: milestone_number description: The number that identifies the milestone. in: path @@ -75577,9 +75967,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: *473 + default: *477 '404': *6 x-github: githubCloudOnly: false @@ -75596,9 +75986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 requestBody: required: false content: @@ -75636,9 +76026,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: *473 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75654,9 +76044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 responses: '204': description: Response @@ -75677,9 +76067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 - *17 - *19 responses: @@ -75689,9 +76079,9 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 + default: *457 headers: Link: *56 x-github: @@ -75710,12 +76100,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *255 - - *256 - - *475 - - *476 + - *259 + - *260 + - *479 + - *480 - *63 - - *477 + - *481 - *17 - *19 responses: @@ -75727,7 +76117,7 @@ paths: type: array items: *85 examples: - default: *478 + default: *482 headers: Link: *56 x-github: @@ -75751,8 +76141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -75810,14 +76200,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &479 + schema: &483 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -75961,7 +76351,7 @@ paths: - custom_404 - public examples: - default: &480 + default: &484 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76002,8 +76392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76058,9 +76448,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *483 examples: - default: *480 + default: *484 '422': *15 '409': *44 x-github: @@ -76083,8 +76473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76184,8 +76574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -76211,8 +76601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -76222,7 +76612,7 @@ paths: application/json: schema: type: array - items: &481 + items: &485 title: Page Build description: Page Build type: object @@ -76314,8 +76704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -76362,16 +76752,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *481 + schema: *485 examples: - default: &482 + default: &486 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -76419,8 +76809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *255 - - *256 + - *259 + - *260 - name: build_id in: path required: true @@ -76431,9 +76821,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *485 examples: - default: *482 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76453,8 +76843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76563,9 +76953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *255 - - *256 - - &483 + - *259 + - *260 + - &487 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -76623,9 +77013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *255 - - *256 - - *483 + - *259 + - *260 + - *487 responses: '204': *136 '404': *6 @@ -76652,8 +77042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -76948,8 +77338,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Private vulnerability reporting status @@ -76986,8 +77376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': *136 '422': *14 @@ -77008,8 +77398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': *136 '422': *14 @@ -77032,8 +77422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: Indicates the state of the projects to return. in: query @@ -77054,7 +77444,7 @@ paths: application/json: schema: type: array - items: *210 + items: *211 examples: default: value: @@ -77094,7 +77484,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -77114,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77141,13 +77531,13 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: *263 + default: *267 '401': *23 '403': *27 '404': *6 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -77167,8 +77557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -77176,7 +77566,7 @@ paths: application/json: schema: type: array - items: *215 + items: *216 examples: default: value: @@ -77207,8 +77597,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77220,7 +77610,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *215 + items: *216 required: - properties examples: @@ -77270,8 +77660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -77331,9 +77721,9 @@ paths: application/json: schema: type: array - items: *484 + items: *488 examples: - default: *485 + default: *489 headers: Link: *56 '304': *35 @@ -77365,8 +77755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77433,7 +77823,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &493 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -77562,7 +77952,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 active_lock_reason: type: - string @@ -77617,7 +78007,7 @@ paths: type: - array - 'null' - items: *193 + items: *194 head: type: object properties: @@ -77655,14 +78045,14 @@ paths: _links: type: object properties: - comments: *388 - commits: *388 - statuses: *388 - html: *388 - issue: *388 - review_comments: *388 - review_comment: *388 - self: *388 + comments: *392 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -77673,7 +78063,7 @@ paths: - review_comment - self author_association: *59 - auto_merge: *486 + auto_merge: *490 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -77775,7 +78165,7 @@ paths: - merged_by - review_comments examples: - default: &490 + default: &494 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -78302,8 +78692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: sort in: query required: false @@ -78332,9 +78722,9 @@ paths: application/json: schema: type: array - items: *487 + items: *491 examples: - default: &492 + default: &496 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -78411,17 +78801,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *487 + schema: *491 examples: - default: &488 + default: &492 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -78496,8 +78886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -78520,9 +78910,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: - default: *488 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78538,8 +78928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -78561,8 +78951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78589,9 +78979,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -78612,8 +79002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -78646,16 +79036,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -78677,10 +79067,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -78723,9 +79113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *255 - - *256 - - &491 + - *259 + - *260 + - &495 name: pull_number description: The number that identifies the pull request. in: path @@ -78738,9 +79128,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *489 + schema: *493 examples: - default: *490 + default: *494 '304': *35 '404': *6 '406': @@ -78775,9 +79165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -78819,9 +79209,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *493 examples: - default: *490 + default: *494 '422': *15 '403': *27 x-github: @@ -78843,9 +79233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -78906,17 +79296,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -78946,9 +79336,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *82 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -78969,9 +79359,9 @@ paths: application/json: schema: type: array - items: *487 + items: *491 examples: - default: *492 + default: *496 headers: Link: *56 x-github: @@ -79004,9 +79394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -79112,7 +79502,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: example-for-a-multi-line-comment: value: @@ -79200,9 +79590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *72 requestBody: required: true @@ -79225,7 +79615,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: default: value: @@ -79311,9 +79701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -79323,9 +79713,9 @@ paths: application/json: schema: type: array - items: *383 + items: *387 examples: - default: *493 + default: *497 headers: Link: *56 x-github: @@ -79355,9 +79745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -79367,7 +79757,7 @@ paths: application/json: schema: type: array - items: *395 + items: *399 examples: default: value: @@ -79405,9 +79795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 responses: '204': description: Response if pull request has been merged @@ -79430,9 +79820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -79544,9 +79934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 responses: '200': description: Response @@ -79562,7 +79952,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 required: - users - teams @@ -79621,9 +80011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -79660,7 +80050,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *488 examples: default: value: @@ -80196,9 +80586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -80232,7 +80622,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *488 examples: default: value: @@ -80737,9 +81127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -80749,7 +81139,7 @@ paths: application/json: schema: type: array - items: &494 + items: &498 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -80905,9 +81295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -80997,9 +81387,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: &496 + default: &500 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81062,10 +81452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 - - &495 + - *259 + - *260 + - *495 + - &499 name: review_id description: The unique identifier of the review. in: path @@ -81077,9 +81467,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: &497 + default: &501 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81138,10 +81528,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81164,7 +81554,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: default: value: @@ -81226,18 +81616,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 responses: '200': description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: *496 + default: *500 '422': *7 '404': *6 x-github: @@ -81264,10 +81654,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 - *17 - *19 responses: @@ -81365,9 +81755,9 @@ paths: _links: type: object properties: - self: *388 - html: *388 - pull_request: *388 + self: *392 + html: *392 + pull_request: *392 required: - self - html @@ -81518,10 +81908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81550,7 +81940,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: default: value: @@ -81613,10 +82003,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81651,9 +82041,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: *497 + default: *501 '404': *6 '422': *7 '403': *27 @@ -81675,9 +82065,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -81741,8 +82131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *255 - - *256 + - *259 + - *260 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -81755,9 +82145,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *502 examples: - default: &499 + default: &503 value: type: file encoding: base64 @@ -81799,8 +82189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *255 - - *256 + - *259 + - *260 - name: dir description: The alternate path to look for a README file in: path @@ -81820,9 +82210,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *502 examples: - default: *499 + default: *503 '404': *6 '422': *15 x-github: @@ -81844,8 +82234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -81855,7 +82245,7 @@ paths: application/json: schema: type: array - items: &500 + items: &504 title: Release description: A release. type: object @@ -81927,7 +82317,7 @@ paths: author: *4 assets: type: array - items: &501 + items: &505 title: Release Asset description: Data related to a release. type: object @@ -82107,8 +82497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -82184,9 +82574,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: &504 + default: &508 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -82289,9 +82679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *255 - - *256 - - &502 + - *259 + - *260 + - &506 name: asset_id description: The unique identifier of the asset. in: path @@ -82303,9 +82693,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *505 examples: - default: &503 + default: &507 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 @@ -82339,7 +82729,7 @@ paths: type: User site_admin: false '404': *6 - '302': *397 + '302': *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82355,9 +82745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *255 - - *256 - - *502 + - *259 + - *260 + - *506 requestBody: required: false content: @@ -82386,9 +82776,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *505 examples: - default: *503 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82404,9 +82794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *255 - - *256 - - *502 + - *259 + - *260 + - *506 responses: '204': description: Response @@ -82430,8 +82820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -82517,16 +82907,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82543,8 +82933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *255 - - *256 + - *259 + - *260 - name: tag description: tag parameter in: path @@ -82557,9 +82947,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 '404': *6 x-github: githubCloudOnly: false @@ -82581,9 +82971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *255 - - *256 - - &505 + - *259 + - *260 + - &509 name: release_id description: The unique identifier of the release. in: path @@ -82597,9 +82987,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: *500 + schema: *504 examples: - default: *504 + default: *508 '401': description: Unauthorized x-github: @@ -82617,9 +83007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 requestBody: required: false content: @@ -82683,9 +83073,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 '404': description: Not Found if the discussion category name is invalid content: @@ -82706,9 +83096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 responses: '204': description: Response @@ -82728,9 +83118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - *17 - *19 responses: @@ -82740,7 +83130,7 @@ paths: application/json: schema: type: array - items: *501 + items: *505 examples: default: value: @@ -82820,9 +83210,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: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - name: name in: query required: true @@ -82848,7 +83238,7 @@ paths: description: Response for successful upload content: application/json: - schema: *501 + schema: *505 examples: response-for-successful-upload: value: @@ -82902,9 +83292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - 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. @@ -82928,9 +83318,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -82951,9 +83341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 requestBody: required: true content: @@ -82983,16 +83373,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -83014,10 +83404,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: + - *259 + - *260 + - *509 - *255 - - *256 - - *505 - - *251 responses: '204': description: Response @@ -83041,9 +83431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 - *17 - *19 responses: @@ -83059,8 +83449,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *506 - - &508 + - *510 + - &512 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83079,54 +83469,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *507 - - *508 - - allOf: - - *509 - - *508 - - allOf: - - *510 - - *508 - allOf: - *511 - - *508 - - allOf: - *512 - - *508 - allOf: - *513 - - *508 + - *512 - allOf: - *514 - - *508 + - *512 - allOf: - *515 - - *508 + - *512 - allOf: - *516 - - *508 + - *512 - allOf: - *517 - - *508 + - *512 - allOf: - *518 - - *508 + - *512 - allOf: - *519 - - *508 + - *512 - allOf: - *520 - - *508 + - *512 - allOf: - *521 - - *508 + - *512 - allOf: - *522 - - *508 + - *512 - allOf: - *523 - - *508 + - *512 + - allOf: + - *524 + - *512 + - allOf: + - *525 + - *512 + - allOf: + - *526 + - *512 + - allOf: + - *527 + - *512 examples: default: value: @@ -83165,8 +83555,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - name: includes_parents @@ -83177,7 +83567,7 @@ paths: schema: type: boolean default: true - - *524 + - *528 responses: '200': description: Response @@ -83185,7 +83575,7 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: default: value: @@ -83232,8 +83622,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 requestBody: description: Request body required: true @@ -83253,16 +83643,16 @@ paths: - tag - push default: branch - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *217 + items: *221 + conditions: *218 rules: type: array description: An array of rules within the ruleset. - items: *222 + items: *223 required: - name - enforcement @@ -83293,9 +83683,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: &534 + default: &538 value: id: 42 name: super cool ruleset @@ -83342,12 +83732,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *255 - - *256 - - *525 - - *526 - - *527 - - *528 + - *259 + - *260 + - *529 + - *530 + - *531 + - *532 - *17 - *19 responses: @@ -83355,9 +83745,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *533 examples: - default: *530 + default: *534 '404': *6 '500': *139 x-github: @@ -83378,17 +83768,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *255 - - *256 - - *531 + - *259 + - *260 + - *535 responses: '200': description: Response content: application/json: - schema: *532 + schema: *536 examples: - default: *533 + default: *537 '404': *6 '500': *139 x-github: @@ -83416,8 +83806,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83437,9 +83827,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *534 + default: *538 '404': *6 '500': *139 put: @@ -83457,8 +83847,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83483,16 +83873,16 @@ paths: - branch - tag - push - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *217 + items: *221 + conditions: *218 rules: description: An array of rules within the ruleset. type: array - items: *222 + items: *223 examples: default: value: @@ -83520,9 +83910,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *534 + default: *538 '404': *6 '500': *139 delete: @@ -83540,8 +83930,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83569,20 +83959,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *255 - - *256 - - *225 + - *259 + - *260 - *226 - *227 - *228 + - *229 - *46 - *19 - *17 - - *535 - - *536 - - *229 + - *539 + - *540 - *230 - *231 + - *232 responses: '200': description: Response @@ -83590,7 +83980,7 @@ paths: application/json: schema: type: array - items: &539 + items: &543 type: object properties: number: *51 @@ -83606,8 +83996,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *537 - resolution: *538 + state: *541 + resolution: *542 resolved_at: type: - string @@ -83820,15 +84210,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: Response content: application/json: - schema: *539 + schema: *543 examples: default: value: @@ -83880,9 +84270,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: true content: @@ -83890,8 +84280,8 @@ paths: schema: type: object properties: - state: *537 - resolution: *538 + state: *541 + resolution: *542 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -83910,7 +84300,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *543 examples: default: value: @@ -83985,9 +84375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 - *19 - *17 responses: @@ -83998,7 +84388,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &668 + items: &672 type: object properties: type: @@ -84377,8 +84767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -84386,14 +84776,14 @@ paths: schema: type: object properties: - reason: &541 + reason: &545 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *540 + placeholder_id: *544 required: - reason - placeholder_id @@ -84410,7 +84800,7 @@ paths: schema: type: object properties: - reason: *541 + reason: *545 expire_at: type: - string @@ -84454,8 +84844,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: - - *255 - - *256 + - *259 + - *260 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -84470,7 +84860,7 @@ paths: properties: incremental_scans: type: array - items: &542 + items: &546 description: Information on a single scan performed by secret scanning on the repository type: object @@ -84498,15 +84888,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *542 + items: *546 backfill_scans: type: array - items: *542 + items: *546 custom_pattern_backfill_scans: type: array items: allOf: - - *542 + - *546 - type: object properties: pattern_name: @@ -84576,8 +84966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *255 - - *256 + - *259 + - *260 - *46 - name: sort description: The property to sort the results by. @@ -84621,9 +85011,9 @@ paths: application/json: schema: type: array - items: *543 + items: *547 examples: - default: *544 + default: *548 '400': *14 '404': *6 x-github: @@ -84646,8 +85036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -84727,7 +85117,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 required: - login - type @@ -84817,9 +85207,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: &546 + default: &550 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -85052,8 +85442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -85166,7 +85556,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: default: value: @@ -85313,17 +85703,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '200': description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: *546 + default: *550 '403': *27 '404': *6 x-github: @@ -85347,9 +85737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 requestBody: required: true content: @@ -85429,7 +85819,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 required: - login - type @@ -85520,10 +85910,10 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: *546 - add_credit: *546 + default: *550 + add_credit: *550 '403': *27 '404': *6 '422': @@ -85561,9 +85951,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: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '202': *45 '400': *14 @@ -85590,17 +85980,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '202': description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 '400': *14 '422': *15 '403': *27 @@ -85626,8 +86016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -85723,8 +86113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -85733,7 +86123,7 @@ paths: application/json: schema: type: array - items: &547 + items: &551 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -85766,8 +86156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -85845,8 +86235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -85940,8 +86330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -86095,8 +86485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -86106,7 +86496,7 @@ paths: application/json: schema: type: array - items: *547 + items: *551 examples: default: value: @@ -86139,8 +86529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *255 - - *256 + - *259 + - *260 - name: sha in: path required: true @@ -86196,7 +86586,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *552 examples: default: value: @@ -86250,8 +86640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86263,7 +86653,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -86283,14 +86673,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &549 + schema: &553 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -86363,8 +86753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -86390,7 +86780,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *553 examples: default: value: @@ -86417,8 +86807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -86438,8 +86828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86521,8 +86911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -86530,7 +86920,7 @@ paths: application/json: schema: type: array - items: &550 + items: &554 title: Tag protection description: Tag protection type: object @@ -86587,8 +86977,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -86611,7 +87001,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *554 examples: default: value: @@ -86642,8 +87032,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: - - *255 - - *256 + - *259 + - *260 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -86680,8 +87070,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *255 - - *256 + - *259 + - *260 - name: ref in: path required: true @@ -86717,8 +87107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86728,9 +87118,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 headers: Link: *56 '404': *6 @@ -86750,8 +87140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 responses: @@ -86759,7 +87149,7 @@ paths: description: Response content: application/json: - schema: &551 + schema: &555 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -86771,7 +87161,7 @@ paths: required: - names examples: - default: &552 + default: &556 value: names: - octocat @@ -86794,8 +87184,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -86826,9 +87216,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *555 examples: - default: *552 + default: *556 '404': *6 '422': *7 x-github: @@ -86849,9 +87239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *255 - - *256 - - &553 + - *259 + - *260 + - &557 name: per description: The time frame to display results for. in: query @@ -86882,7 +87272,7 @@ paths: - 128 clones: type: array - items: &554 + items: &558 title: Traffic type: object properties: @@ -86969,8 +87359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -87064,8 +87454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -87128,9 +87518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *255 - - *256 - - *553 + - *259 + - *260 + - *557 responses: '200': description: Response @@ -87151,7 +87541,7 @@ paths: - 3782 views: type: array - items: *554 + items: *558 required: - uniques - count @@ -87228,8 +87618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -87503,8 +87893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -87527,8 +87917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -87550,8 +87940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -87577,8 +87967,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *255 - - *256 + - *259 + - *260 - name: ref in: path required: true @@ -87670,9 +88060,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -87921,7 +88311,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &555 + text_matches: &559 title: Search Result Text Matches type: array items: @@ -88084,7 +88474,7 @@ paths: enum: - author-date - committer-date - - &556 + - &560 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 @@ -88153,7 +88543,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 comment_count: type: integer message: @@ -88172,7 +88562,7 @@ paths: url: type: string format: uri - verification: *432 + verification: *436 required: - author - committer @@ -88187,7 +88577,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 parents: type: array items: @@ -88204,7 +88594,7 @@ paths: type: number node_id: type: string - text_matches: *555 + text_matches: *559 required: - sha - node_id @@ -88396,7 +88786,7 @@ paths: - interactions - created - updated - - *556 + - *560 - *17 - *19 responses: @@ -88512,7 +88902,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 comments: type: integer created_at: @@ -88526,7 +88916,7 @@ paths: - string - 'null' format: date-time - text_matches: *555 + text_matches: *559 pull_request: type: object properties: @@ -88748,7 +89138,7 @@ paths: enum: - created - updated - - *556 + - *560 - *17 - *19 responses: @@ -88793,7 +89183,7 @@ paths: - 'null' score: type: number - text_matches: *555 + text_matches: *559 required: - id - node_id @@ -88878,7 +89268,7 @@ paths: - forks - help-wanted-issues - updated - - *556 + - *560 - *17 - *19 responses: @@ -89115,7 +89505,7 @@ paths: - admin - pull - push - text_matches: *555 + text_matches: *559 temp_clone_token: type: string allow_merge_commit: @@ -89423,7 +89813,7 @@ paths: - string - 'null' format: uri - text_matches: *555 + text_matches: *559 related: type: - array @@ -89616,7 +90006,7 @@ paths: - followers - repositories - joined - - *556 + - *560 - *17 - *19 responses: @@ -89726,7 +90116,7 @@ paths: type: - boolean - 'null' - text_matches: *555 + text_matches: *559 blog: type: - string @@ -89808,7 +90198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &557 + - &561 name: team_id description: The unique identifier of the team. in: path @@ -89820,9 +90210,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 x-github: githubCloudOnly: false @@ -89849,7 +90239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *557 + - *561 requestBody: required: true content: @@ -89913,16 +90303,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '201': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 '422': *15 '403': *27 @@ -89950,7 +90340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *557 + - *561 responses: '204': description: Response @@ -89981,7 +90371,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *557 + - *561 - *46 - *17 - *19 @@ -89992,9 +90382,9 @@ paths: application/json: schema: type: array - items: *242 + items: *246 examples: - default: *558 + default: *562 headers: Link: *56 x-github: @@ -90023,7 +90413,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *557 + - *561 requestBody: required: true content: @@ -90057,9 +90447,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: triggersNotification: true githubCloudOnly: false @@ -90086,16 +90476,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90120,8 +90510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: false content: @@ -90144,9 +90534,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *559 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90171,8 +90561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 responses: '204': description: Response @@ -90201,8 +90591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *557 - - *244 + - *561 + - *248 - *46 - *17 - *19 @@ -90213,9 +90603,9 @@ paths: application/json: schema: type: array - items: *245 + items: *249 examples: - default: *560 + default: *564 headers: Link: *56 x-github: @@ -90244,8 +90634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: true content: @@ -90267,9 +90657,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: triggersNotification: true githubCloudOnly: false @@ -90296,17 +90686,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 responses: '200': description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90331,9 +90721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 requestBody: required: true content: @@ -90355,9 +90745,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *561 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90382,9 +90772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 responses: '204': description: Response @@ -90413,9 +90803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 - 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. @@ -90441,9 +90831,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -90472,9 +90862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 requestBody: required: true content: @@ -90506,9 +90896,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90534,8 +90924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 - 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. @@ -90561,9 +90951,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -90592,8 +90982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: true content: @@ -90625,9 +91015,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90651,7 +91041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -90661,9 +91051,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 x-github: @@ -90689,7 +91079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *557 + - *561 - name: role description: Filters members returned by their role in the team. in: query @@ -90712,7 +91102,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -90740,7 +91130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90777,7 +91167,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90817,7 +91207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90854,16 +91244,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-user-is-a-team-maintainer: *562 + response-if-user-is-a-team-maintainer: *566 '404': *6 x-github: githubCloudOnly: false @@ -90896,7 +91286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 requestBody: required: false @@ -90922,9 +91312,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-users-membership-with-team-is-now-pending: *563 + response-if-users-membership-with-team-is-now-pending: *567 '403': description: Forbidden if team synchronization is set up '422': @@ -90958,7 +91348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90988,7 +91378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -90998,9 +91388,9 @@ paths: application/json: schema: type: array - items: *253 + items: *257 examples: - default: *564 + default: *568 headers: Link: *56 '404': *6 @@ -91027,16 +91417,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *557 - - *254 + - *561 + - *258 responses: '200': description: Response content: application/json: - schema: *253 + schema: *257 examples: - default: *565 + default: *569 '404': description: Not Found if project is not managed by this team x-github: @@ -91061,8 +91451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *557 - - *254 + - *561 + - *258 requestBody: required: false content: @@ -91130,8 +91520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *557 - - *254 + - *561 + - *258 responses: '204': description: Response @@ -91158,7 +91548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -91170,7 +91560,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '404': *6 @@ -91200,15 +91590,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *566 + schema: *570 examples: alternative-response-with-extra-repository-information: value: @@ -91359,9 +91749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 requestBody: required: false content: @@ -91411,9 +91801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 responses: '204': description: Response @@ -91438,7 +91828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -91448,9 +91838,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - response-if-child-teams-exist: *567 + response-if-child-teams-exist: *571 headers: Link: *56 '404': *6 @@ -91483,7 +91873,7 @@ paths: application/json: schema: oneOf: - - &569 + - &573 title: Private User description: Private User type: object @@ -91733,7 +92123,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *568 + - *572 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -91893,7 +92283,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *573 examples: default: value: @@ -91972,7 +92362,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '304': *35 '404': *6 '403': *27 @@ -92096,9 +92486,9 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 '304': *35 '500': *139 '401': *23 @@ -92237,17 +92627,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -92291,7 +92681,7 @@ paths: type: integer secrets: type: array - items: &570 + items: &574 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92333,7 +92723,7 @@ paths: - visibility - selected_repositories_url examples: - default: *376 + default: *380 headers: Link: *56 x-github: @@ -92411,7 +92801,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *574 examples: default: value: @@ -92557,7 +92947,7 @@ paths: type: array items: *114 examples: - default: *571 + default: *575 '401': *23 '403': *27 '404': *6 @@ -92701,15 +93091,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '304': *35 '500': *139 '401': *23 @@ -92735,7 +93125,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 requestBody: required: false content: @@ -92765,9 +93155,9 @@ paths: description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -92789,7 +93179,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '202': *45 '304': *35 @@ -92818,13 +93208,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '202': description: Response content: application/json: - schema: &572 + schema: &576 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -92877,7 +93267,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &573 + default: &577 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -92909,7 +93299,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *184 + - *185 - name: export_id in: path required: true @@ -92922,9 +93312,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *576 examples: - default: *573 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -92945,7 +93335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *184 + - *185 responses: '200': description: Response @@ -92961,9 +93351,9 @@ paths: type: integer machines: type: array - items: *375 + items: *379 examples: - default: *574 + default: *578 '304': *35 '500': *139 '401': *23 @@ -92992,7 +93382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *184 + - *185 requestBody: required: true content: @@ -93048,11 +93438,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *266 + repository: *270 machine: anyOf: - type: 'null' - - *375 + - *379 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -93849,15 +94239,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '304': *35 '500': *139 '400': *14 @@ -93889,15 +94279,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '500': *139 '401': *23 '403': *27 @@ -93927,9 +94317,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: &587 + default: &591 value: - id: 197 name: hello_docker @@ -94030,7 +94420,7 @@ paths: application/json: schema: type: array - items: &575 + items: &579 title: Email description: Email type: object @@ -94100,9 +94490,9 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: - default: &589 + default: &593 value: - email: octocat@github.com verified: true @@ -94179,7 +94569,7 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: default: value: @@ -94291,7 +94681,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '304': *35 @@ -94324,7 +94714,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '304': *35 @@ -94437,7 +94827,7 @@ paths: application/json: schema: type: array - items: &576 + items: &580 title: GPG Key description: A unique encryption key type: object @@ -94582,7 +94972,7 @@ paths: - subkeys - revoked examples: - default: &600 + default: &604 value: - id: 3 name: Octocat's GPG Key @@ -94667,9 +95057,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *580 examples: - default: &577 + default: &581 value: id: 3 name: Octocat's GPG Key @@ -94726,7 +95116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &578 + - &582 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -94738,9 +95128,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *580 examples: - default: *577 + default: *581 '404': *6 '304': *35 '403': *27 @@ -94763,7 +95153,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *578 + - *582 responses: '204': description: Response @@ -94954,7 +95344,7 @@ paths: type: array items: *58 examples: - default: *579 + default: *583 headers: Link: *56 '404': *6 @@ -95039,12 +95429,12 @@ paths: application/json: schema: anyOf: - - *173 + - *174 - type: object properties: {} additionalProperties: false examples: - default: *174 + default: *175 '204': description: Response when there are no restrictions x-github: @@ -95068,7 +95458,7 @@ paths: required: true content: application/json: - schema: *443 + schema: *447 examples: default: value: @@ -95079,7 +95469,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: default: value: @@ -95160,7 +95550,7 @@ paths: - closed - all default: open - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -95185,7 +95575,7 @@ paths: type: array items: *73 examples: - default: *180 + default: *181 headers: Link: *56 '404': *6 @@ -95218,7 +95608,7 @@ paths: application/json: schema: type: array - items: &580 + items: &584 title: Key description: Key type: object @@ -95316,9 +95706,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *584 examples: - default: &581 + default: &585 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95351,15 +95741,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *470 + - *474 responses: '200': description: Response content: application/json: - schema: *580 + schema: *584 examples: - default: *581 + default: *585 '404': *6 '304': *35 '403': *27 @@ -95382,7 +95772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *470 + - *474 responses: '204': description: Response @@ -95415,7 +95805,7 @@ paths: application/json: schema: type: array - items: &582 + items: &586 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -95494,7 +95884,7 @@ paths: - account - plan examples: - default: &583 + default: &587 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -95556,9 +95946,9 @@ paths: application/json: schema: type: array - items: *582 + items: *586 examples: - default: *583 + default: *587 headers: Link: *56 '304': *35 @@ -95598,7 +95988,7 @@ paths: application/json: schema: type: array - items: *186 + items: *187 examples: default: value: @@ -95706,7 +96096,7 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: default: value: @@ -95789,7 +96179,7 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: default: value: @@ -95857,7 +96247,7 @@ paths: application/json: schema: type: array - items: *188 + items: *189 examples: default: value: @@ -96119,7 +96509,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -96299,7 +96689,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *189 + - *190 - name: exclude in: query required: false @@ -96312,7 +96702,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -96506,7 +96896,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *189 + - *190 responses: '302': description: Response @@ -96532,7 +96922,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *189 + - *190 responses: '204': description: Response @@ -96561,8 +96951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *189 - - *584 + - *190 + - *588 responses: '204': description: Response @@ -96586,7 +96976,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *189 + - *190 - *17 - *19 responses: @@ -96598,7 +96988,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '404': *6 @@ -96635,7 +97025,7 @@ paths: type: array items: *141 examples: - default: *585 + default: *589 headers: Link: *56 '304': *35 @@ -96677,7 +97067,7 @@ paths: - docker - nuget - container - - *586 + - *590 - *19 - *17 responses: @@ -96687,10 +97077,10 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 - '400': *588 + default: *591 + '400': *592 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -96710,16 +97100,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 responses: '200': description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: &601 + default: &605 value: id: 40201 name: octo-name @@ -96832,8 +97222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 responses: '204': description: Response @@ -96863,8 +97253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 - name: token description: package token schema: @@ -96896,8 +97286,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: - - *197 - *198 + - *199 - *19 - *17 - name: state @@ -96917,7 +97307,7 @@ paths: application/json: schema: type: array - items: *199 + items: *200 examples: default: value: @@ -96966,15 +97356,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '200': description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -97010,9 +97400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '204': description: Response @@ -97042,9 +97432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '204': description: Response @@ -97102,7 +97492,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: default: value: @@ -97171,9 +97561,9 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: - default: *589 + default: *593 headers: Link: *56 '304': *35 @@ -97286,7 +97676,7 @@ paths: type: array items: *58 examples: - default: &596 + default: &600 summary: Default response value: - id: 1296269 @@ -97602,9 +97992,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97642,9 +98032,9 @@ paths: application/json: schema: type: array - items: *445 + items: *449 examples: - default: *590 + default: *594 headers: Link: *56 '304': *35 @@ -97667,7 +98057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *177 + - *178 responses: '204': description: Response @@ -97690,7 +98080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *177 + - *178 responses: '204': description: Response @@ -97723,7 +98113,7 @@ paths: application/json: schema: type: array - items: &591 + items: &595 title: Social account description: Social media account type: object @@ -97740,7 +98130,7 @@ paths: - provider - url examples: - default: &592 + default: &596 value: - provider: twitter url: https://twitter.com/github @@ -97803,9 +98193,9 @@ paths: application/json: schema: type: array - items: *591 + items: *595 examples: - default: *592 + default: *596 '422': *15 '304': *35 '404': *6 @@ -97893,7 +98283,7 @@ paths: application/json: schema: type: array - items: &593 + items: &597 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -97913,7 +98303,7 @@ paths: - title - created_at examples: - default: &608 + default: &612 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -97980,9 +98370,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *597 examples: - default: &594 + default: &598 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98013,7 +98403,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: - - &595 + - &599 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98025,9 +98415,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *597 examples: - default: *594 + default: *598 '404': *6 '304': *35 '403': *27 @@ -98050,7 +98440,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: - - *595 + - *599 responses: '204': description: Response @@ -98079,7 +98469,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &609 + - &613 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 @@ -98104,11 +98494,11 @@ paths: type: array items: *58 examples: - default-response: *596 + default-response: *600 application/vnd.github.v3.star+json: schema: type: array - items: &610 + items: &614 title: Starred Repository description: Starred Repository type: object @@ -98264,8 +98654,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: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response if this repository is starred by you @@ -98293,8 +98683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -98318,8 +98708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -98354,7 +98744,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '304': *35 @@ -98391,7 +98781,7 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: default: value: @@ -98477,10 +98867,10 @@ paths: application/json: schema: oneOf: - - *569 - - *568 + - *573 + - *572 examples: - default-response: &598 + default-response: &602 summary: Default response value: login: octocat @@ -98515,7 +98905,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &599 + response-with-git-hub-plan-information: &603 summary: Response with GitHub plan information value: login: octocat @@ -98575,7 +98965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *597 + - *601 - *17 responses: '200': @@ -98586,7 +98976,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: example: ; rel="next" @@ -98624,11 +99014,11 @@ paths: application/json: schema: oneOf: - - *569 - - *568 + - *573 + - *572 examples: - default-response: *598 - response-with-git-hub-plan-information: *599 + default-response: *602 + response-with-git-hub-plan-information: *603 '404': *6 x-github: githubCloudOnly: false @@ -98792,9 +99182,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 + default: *591 '403': *27 '401': *23 x-github: @@ -99077,7 +99467,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -99108,7 +99498,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -99198,9 +99588,9 @@ paths: application/json: schema: type: array - items: *576 + items: *580 examples: - default: *600 + default: *604 headers: Link: *56 x-github: @@ -99304,7 +99694,7 @@ paths: application/json: schema: *20 examples: - default: *442 + default: *446 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99382,7 +99772,7 @@ paths: type: array items: *141 examples: - default: *585 + default: *589 headers: Link: *56 x-github: @@ -99421,7 +99811,7 @@ paths: - docker - nuget - container - - *586 + - *590 - *127 - *19 - *17 @@ -99432,12 +99822,12 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 + default: *591 '403': *27 '401': *23 - '400': *588 + '400': *592 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99457,17 +99847,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 responses: '200': description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: *601 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99488,8 +99878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 responses: '204': @@ -99522,8 +99912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 - name: token description: package token @@ -99556,8 +99946,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: - - *197 - *198 + - *199 - *127 responses: '200': @@ -99566,7 +99956,7 @@ paths: application/json: schema: type: array - items: *199 + items: *200 examples: default: value: @@ -99624,16 +100014,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 - *127 responses: '200': description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -99668,10 +100058,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *197 - *198 + - *199 - *127 - - *200 + - *201 responses: '204': description: Response @@ -99703,10 +100093,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *197 - *198 + - *199 - *127 - - *200 + - *201 responses: '204': description: Response @@ -99750,7 +100140,7 @@ paths: application/json: schema: type: array - items: *210 + items: *211 examples: default: value: @@ -100030,7 +100420,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -100060,9 +100450,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *606 examples: - default: *603 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100090,9 +100480,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *608 examples: - default: *605 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100120,9 +100510,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *610 examples: - default: *607 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100150,9 +100540,9 @@ paths: application/json: schema: type: array - items: *591 + items: *595 examples: - default: *592 + default: *596 headers: Link: *56 x-github: @@ -100182,9 +100572,9 @@ paths: application/json: schema: type: array - items: *593 + items: *597 examples: - default: *608 + default: *612 headers: Link: *56 x-github: @@ -100209,7 +100599,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *127 - - *609 + - *613 - *46 - *17 - *19 @@ -100221,11 +100611,11 @@ paths: schema: anyOf: - type: array - items: *610 + items: *614 - type: array items: *58 examples: - default-response: *596 + default-response: *600 headers: Link: *56 x-github: @@ -100256,7 +100646,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -100385,7 +100775,7 @@ webhooks: type: string enum: - disabled - enterprise: &611 + enterprise: &615 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -100454,7 +100844,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &612 + installation: &616 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -100475,7 +100865,7 @@ webhooks: required: - id - node_id - organization: &613 + organization: &617 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -100548,7 +100938,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &614 + repository: &618 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -101461,10 +101851,10 @@ webhooks: type: string enum: - enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -101540,11 +101930,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: &615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: &619 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) @@ -101767,11 +102157,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: *619 sender: *4 required: - action @@ -101959,11 +102349,11 @@ webhooks: - everyone required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: *619 sender: *4 required: - action @@ -102047,7 +102437,7 @@ webhooks: type: string enum: - completed - check_run: &617 + check_run: &621 title: CheckRun description: A check performed on the code of a given code change type: object @@ -102115,7 +102505,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *334 + items: *338 repository: *114 status: type: string @@ -102160,7 +102550,7 @@ webhooks: - examples: - neutral - deployment: *616 + deployment: *620 details_url: type: string examples: @@ -102220,7 +102610,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *334 + items: *338 started_at: type: string format: date-time @@ -102258,9 +102648,9 @@ webhooks: - output - app - pull_requests - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -102653,10 +103043,10 @@ webhooks: type: string enum: - created - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -103052,10 +103442,10 @@ webhooks: type: string enum: - requested_action - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 requested_action: description: The action requested by the user. type: object @@ -103460,10 +103850,10 @@ webhooks: type: string enum: - rerequested - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -104455,10 +104845,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105143,10 +105533,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105825,10 +106215,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105994,7 +106384,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -106146,20 +106536,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &618 + commit_oid: &622 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: *611 - installation: *612 - organization: *613 - ref: &619 + enterprise: *615 + installation: *616 + organization: *617 + ref: &623 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: *614 + repository: *618 sender: *4 required: - action @@ -106323,7 +106713,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -106493,12 +106883,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -106596,7 +106986,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106775,12 +107165,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -106946,7 +107336,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107123,12 +107513,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -107228,7 +107618,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107408,9 +107798,9 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -107418,7 +107808,7 @@ webhooks: type: - string - 'null' - repository: *614 + repository: *618 sender: *4 required: - action @@ -107514,7 +107904,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107661,12 +108051,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -107928,10 +108318,10 @@ webhooks: - updated_at - author_association - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -108012,18 +108402,18 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *613 - pusher_type: &620 + organization: *617 + pusher_type: &624 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &621 + ref: &625 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -108033,7 +108423,7 @@ webhooks: enum: - tag - branch - repository: *614 + repository: *618 sender: *4 required: - ref @@ -108115,10 +108505,10 @@ webhooks: type: string enum: - created - definition: *211 - enterprise: *611 - installation: *612 - organization: *613 + definition: *212 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108203,9 +108593,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108282,10 +108672,10 @@ webhooks: type: string enum: - updated - definition: *211 - enterprise: *611 - installation: *612 - organization: *613 + definition: *212 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108362,19 +108752,19 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - repository: *614 - organization: *613 + enterprise: *615 + installation: *616 + repository: *618 + organization: *617 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *215 + items: *216 old_property_values: type: array description: The old custom property values for the repository. - items: *215 + items: *216 required: - action - repository @@ -108450,18 +108840,18 @@ webhooks: title: delete event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - pusher_type: *620 - ref: *621 + enterprise: *615 + installation: *616 + organization: *617 + pusher_type: *624 + ref: *625 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *614 + repository: *618 sender: *4 required: - ref @@ -108545,11 +108935,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108633,11 +109023,11 @@ webhooks: type: string enum: - auto_reopened - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108721,11 +109111,11 @@ webhooks: type: string enum: - created - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108807,11 +109197,11 @@ webhooks: type: string enum: - dismissed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108893,11 +109283,11 @@ webhooks: type: string enum: - fixed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108980,11 +109370,11 @@ webhooks: type: string enum: - reintroduced - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -109066,11 +109456,11 @@ webhooks: type: string enum: - reopened - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -109147,9 +109537,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - key: &622 + enterprise: *615 + installation: *616 + key: &626 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -109187,8 +109577,8 @@ webhooks: - verified - created_at - read_only - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -109265,11 +109655,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - key: *622 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + key: *626 + organization: *617 + repository: *618 sender: *4 required: - action @@ -109841,12 +110231,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: &626 + workflow: &630 title: Workflow type: - object @@ -110584,13 +110974,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *407 + deployment: *411 pull_requests: type: array - items: *489 - repository: *614 - organization: *613 - installation: *612 + items: *493 + repository: *618 + organization: *617 + installation: *616 sender: *4 responses: '200': @@ -110661,7 +111051,7 @@ webhooks: type: string enum: - approved - approver: &623 + approver: &627 type: object properties: avatar_url: @@ -110704,11 +111094,11 @@ webhooks: type: string comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: &624 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + reviewers: &628 type: array items: type: object @@ -110789,7 +111179,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &625 + workflow_job_run: &629 type: object properties: conclusion: @@ -111535,18 +111925,18 @@ webhooks: type: string enum: - rejected - approver: *623 + approver: *627 comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: *624 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + reviewers: *628 sender: *4 since: type: string - workflow_job_run: *625 + workflow_job_run: *629 workflow_job_runs: type: array items: @@ -112263,13 +112653,13 @@ webhooks: type: string enum: - requested - enterprise: *611 + enterprise: *615 environment: type: string - installation: *612 - organization: *613 - repository: *614 - requestor: &631 + installation: *616 + organization: *617 + repository: *618 + requestor: &635 title: User type: - object @@ -114212,12 +114602,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Deployment Workflow Run type: @@ -114908,7 +115298,7 @@ webhooks: type: string enum: - answered - answer: &629 + answer: &633 type: object properties: author_association: @@ -115068,7 +115458,7 @@ webhooks: - created_at - updated_at - body - discussion: &627 + discussion: &631 title: Discussion description: A Discussion in a repository. type: object @@ -115364,7 +115754,7 @@ webhooks: - id labels: type: array - items: *452 + items: *456 required: - repository_url - category @@ -115386,10 +115776,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115516,11 +115906,11 @@ webhooks: - from required: - category - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115603,11 +115993,11 @@ webhooks: type: string enum: - closed - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115689,7 +116079,7 @@ webhooks: type: string enum: - created - comment: &628 + comment: &632 type: object properties: author_association: @@ -115849,11 +116239,11 @@ webhooks: - updated_at - body - reactions - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115936,12 +116326,12 @@ webhooks: type: string enum: - deleted - comment: *628 - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *632 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116036,12 +116426,12 @@ webhooks: - from required: - body - comment: *628 - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *632 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116125,11 +116515,11 @@ webhooks: type: string enum: - created - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116211,11 +116601,11 @@ webhooks: type: string enum: - deleted - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116315,11 +116705,11 @@ webhooks: type: string required: - from - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116401,10 +116791,10 @@ webhooks: type: string enum: - labeled - discussion: *627 - enterprise: *611 - installation: *612 - label: &630 + discussion: *631 + enterprise: *615 + installation: *616 + label: &634 title: Label type: object properties: @@ -116437,8 +116827,8 @@ webhooks: - color - default - description - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116521,11 +116911,11 @@ webhooks: type: string enum: - locked - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116607,11 +116997,11 @@ webhooks: type: string enum: - pinned - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116693,11 +117083,11 @@ webhooks: type: string enum: - reopened - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116782,16 +117172,16 @@ webhooks: changes: type: object properties: - new_discussion: *627 - new_repository: *614 + new_discussion: *631 + new_repository: *618 required: - new_discussion - new_repository - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116874,10 +117264,10 @@ webhooks: type: string enum: - unanswered - discussion: *627 - old_answer: *629 - organization: *613 - repository: *614 + discussion: *631 + old_answer: *633 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116959,12 +117349,12 @@ webhooks: type: string enum: - unlabeled - discussion: *627 - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117047,11 +117437,11 @@ webhooks: type: string enum: - unlocked - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117133,11 +117523,11 @@ webhooks: type: string enum: - unpinned - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117210,7 +117600,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *611 + enterprise: *615 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -117888,9 +118278,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - forkee @@ -118036,9 +118426,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pages: description: The pages that were updated. type: array @@ -118076,7 +118466,7 @@ webhooks: - action - sha - html_url - repository: *614 + repository: *618 sender: *4 required: - pages @@ -118152,10 +118542,10 @@ webhooks: type: string enum: - created - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: &632 + organization: *617 + repositories: &636 description: An array of repository objects that the installation can access. type: array @@ -118181,8 +118571,8 @@ webhooks: - name - full_name - private - repository: *614 - requester: *631 + repository: *618 + requester: *635 sender: *4 required: - action @@ -118257,11 +118647,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118338,11 +118728,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118419,10 +118809,10 @@ webhooks: type: string enum: - added - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories_added: &633 + organization: *617 + repositories_added: &637 description: An array of repository objects, which were added to the installation. type: array @@ -118468,15 +118858,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *614 - repository_selection: &634 + repository: *618 + repository_selection: &638 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *631 + requester: *635 sender: *4 required: - action @@ -118555,10 +118945,10 @@ webhooks: type: string enum: - removed - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories_added: *633 + organization: *617 + repositories_added: *637 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -118585,9 +118975,9 @@ webhooks: - name - full_name - private - repository: *614 - repository_selection: *634 - requester: *631 + repository: *618 + repository_selection: *638 + requester: *635 sender: *4 required: - action @@ -118666,11 +119056,11 @@ webhooks: type: string enum: - suspend - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118852,10 +119242,10 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 target_type: type: string @@ -118934,11 +119324,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -119186,8 +119576,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120377,8 +120767,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -120458,7 +120848,7 @@ webhooks: type: string enum: - deleted - comment: &635 + comment: &639 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -120625,8 +121015,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121814,8 +122204,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -121895,7 +122285,7 @@ webhooks: type: string enum: - edited - changes: &660 + changes: &664 description: The changes to the comment. type: object properties: @@ -121907,9 +122297,9 @@ webhooks: type: string required: - from - comment: *635 - enterprise: *611 - installation: *612 + comment: *639 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123098,8 +123488,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -123181,10 +123571,10 @@ webhooks: type: string enum: - assigned - assignee: *631 - enterprise: *611 - installation: *612 - issue: &638 + assignee: *635 + enterprise: *615 + installation: *616 + issue: &642 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -124128,8 +124518,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -124209,8 +124599,8 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125302,8 +125692,8 @@ webhooks: required: - state - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -125382,8 +125772,8 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126320,8 +126710,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -126400,8 +126790,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127342,7 +127732,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &636 + milestone: &640 title: Milestone description: A collection of related issues and pull requests. type: object @@ -127485,8 +127875,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -127585,8 +127975,8 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128530,9 +128920,9 @@ webhooks: - active_lock_reason - body - reactions - label: *630 - organization: *613 - repository: *614 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -128612,8 +129002,8 @@ webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129556,9 +129946,9 @@ webhooks: - active_lock_reason - body - reactions - label: *630 - organization: *613 - repository: *614 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -129638,8 +130028,8 @@ webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130584,8 +130974,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -130664,8 +131054,8 @@ webhooks: type: string enum: - milestoned - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131604,9 +131994,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *636 - organization: *613 - repository: *614 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -133106,8 +133496,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134050,8 +134440,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -134131,9 +134521,9 @@ webhooks: type: string enum: - pinned - enterprise: *611 - installation: *612 - issue: &637 + enterprise: *615 + installation: *616 + issue: &641 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135070,8 +135460,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -135150,8 +135540,8 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136095,8 +136485,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137596,11 +137986,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *611 - installation: *612 - issue: *637 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *641 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137681,7 +138071,7 @@ webhooks: type: string enum: - unassigned - assignee: &663 + assignee: &667 title: User type: - object @@ -137753,11 +138143,11 @@ webhooks: required: - login - id - enterprise: *611 - installation: *612 - issue: *638 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *642 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137836,12 +138226,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - issue: *638 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *642 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137921,8 +138311,8 @@ webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138865,8 +139255,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -138946,11 +139336,11 @@ webhooks: type: string enum: - unpinned - enterprise: *611 - installation: *612 - issue: *637 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *641 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139029,11 +139419,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139111,11 +139501,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139225,11 +139615,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139311,9 +139701,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: &639 + enterprise: *615 + installation: *616 + marketplace_purchase: &643 title: Marketplace Purchase type: object required: @@ -139401,8 +139791,8 @@ webhooks: type: integer unit_count: type: integer - organization: *613 - previous_marketplace_purchase: &640 + organization: *617 + previous_marketplace_purchase: &644 title: Marketplace Purchase type: object properties: @@ -139486,7 +139876,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139566,10 +139956,10 @@ webhooks: - changed effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139657,7 +140047,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139739,10 +140129,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139828,7 +140218,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139909,8 +140299,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 marketplace_purchase: title: Marketplace Purchase type: object @@ -139996,9 +140386,9 @@ webhooks: type: integer unit_count: type: integer - organization: *613 - previous_marketplace_purchase: *640 - repository: *614 + organization: *617 + previous_marketplace_purchase: *644 + repository: *618 sender: *4 required: - action @@ -140078,12 +140468,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 - previous_marketplace_purchase: *640 - repository: *614 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 + previous_marketplace_purchase: *644 + repository: *618 sender: *4 required: - action @@ -140185,11 +140575,11 @@ webhooks: type: string required: - to - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140291,11 +140681,11 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140374,11 +140764,11 @@ webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140456,11 +140846,11 @@ webhooks: type: string enum: - added - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140538,7 +140928,7 @@ webhooks: required: - login - id - team: &641 + team: &645 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -140731,11 +141121,11 @@ webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140814,7 +141204,7 @@ webhooks: required: - login - id - team: *641 + team: *645 required: - action - scope @@ -140896,8 +141286,8 @@ webhooks: type: string enum: - checks_requested - installation: *612 - merge_group: &642 + installation: *616 + merge_group: &646 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -140916,15 +141306,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *338 + head_commit: *342 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141010,10 +141400,10 @@ webhooks: - merged - invalidated - dequeued - installation: *612 - merge_group: *642 - organization: *613 - repository: *614 + installation: *616 + merge_group: *646 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141086,7 +141476,7 @@ webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *615 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -141194,12 +141584,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *612 - organization: *613 + installation: *616 + organization: *617 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -141279,11 +141669,11 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141362,9 +141752,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - milestone: &643 + enterprise: *615 + installation: *616 + milestone: &647 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141506,8 +141896,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141586,11 +141976,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141700,11 +142090,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141784,11 +142174,11 @@ webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - milestone: *643 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *647 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141867,11 +142257,11 @@ webhooks: type: string enum: - blocked - blocked_user: *631 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + blocked_user: *635 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141950,11 +142340,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *631 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + blocked_user: *635 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142033,9 +142423,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - membership: &644 + enterprise: *615 + installation: *616 + membership: &648 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -142129,8 +142519,8 @@ webhooks: - role - organization_url - user - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142208,11 +142598,11 @@ webhooks: type: string enum: - member_added - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142291,8 +142681,8 @@ webhooks: type: string enum: - member_invited - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -142414,10 +142804,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 - user: *631 + user: *635 required: - action - invitation @@ -142495,11 +142885,11 @@ webhooks: type: string enum: - member_removed - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142586,11 +142976,11 @@ webhooks: properties: from: type: string - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142666,9 +143056,9 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 package: description: Information about the package. type: object @@ -143191,7 +143581,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &645 + items: &649 title: Ruby Gems metadata type: object properties: @@ -143288,7 +143678,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -143364,9 +143754,9 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 package: description: Information about the package. type: object @@ -143728,7 +144118,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *645 + items: *649 source_url: type: string format: uri @@ -143799,7 +144189,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -143980,12 +144370,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *611 + enterprise: *615 id: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - id @@ -144065,7 +144455,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &646 + personal_access_token_request: &650 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -144215,10 +144605,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *611 - organization: *613 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144297,11 +144687,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *646 - enterprise: *611 - organization: *613 + personal_access_token_request: *650 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144379,11 +144769,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *646 - enterprise: *611 - organization: *613 + personal_access_token_request: *650 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144460,11 +144850,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *646 - organization: *613 - enterprise: *611 + personal_access_token_request: *650 + organization: *617 + enterprise: *615 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144568,7 +144958,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *647 + last_response: *651 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -144600,8 +144990,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 zen: description: Random string of GitHub zen. @@ -144846,10 +145236,10 @@ webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: &648 + enterprise: *615 + installation: *616 + organization: *617 + project_card: &652 title: Project Card type: object properties: @@ -144972,7 +145362,7 @@ webhooks: - creator - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -145053,11 +145443,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_card: *648 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_card: *652 + repository: *618 sender: *4 required: - action @@ -145137,9 +145527,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 project_card: title: Project Card type: object @@ -145269,7 +145659,7 @@ webhooks: repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -145363,11 +145753,11 @@ webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: *648 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_card: *652 + repository: *618 sender: *4 required: - action @@ -145461,9 +145851,9 @@ webhooks: - from required: - column_id - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 project_card: allOf: - title: Project Card @@ -145660,7 +146050,7 @@ webhooks: type: string required: - after_id - repository: *614 + repository: *618 sender: *4 required: - action @@ -145740,10 +146130,10 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - organization: *613 - project: &650 + enterprise: *615 + installation: *616 + organization: *617 + project: &654 title: Project type: object properties: @@ -145870,7 +146260,7 @@ webhooks: - creator - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -145950,10 +146340,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_column: &649 + enterprise: *615 + installation: *616 + organization: *617 + project_column: &653 title: Project Column type: object properties: @@ -145993,7 +146383,7 @@ webhooks: - name - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -146072,14 +146462,14 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -146168,11 +146558,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 + repository: *618 sender: *4 required: - action @@ -146252,11 +146642,11 @@ webhooks: type: string enum: - moved - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 + repository: *618 sender: *4 required: - action @@ -146336,11 +146726,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146420,14 +146810,14 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project: *650 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -146528,11 +146918,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146611,11 +147001,11 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146696,9 +147086,9 @@ webhooks: type: string enum: - closed - installation: *612 - organization: *613 - projects_v2: &651 + installation: *616 + organization: *617 + projects_v2: &655 title: Projects v2 Project description: A projects v2 project type: object @@ -146846,9 +147236,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -146929,9 +147319,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147052,9 +147442,9 @@ webhooks: type: string to: type: string - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147137,7 +147527,7 @@ webhooks: type: string enum: - archived - changes: &655 + changes: &659 type: object properties: archived_at: @@ -147153,9 +147543,9 @@ webhooks: - string - 'null' format: date-time - installation: *612 - organization: *613 - projects_v2_item: &652 + installation: *616 + organization: *617 + projects_v2_item: &656 title: Projects v2 Item description: An item belonging to a project type: object @@ -147294,9 +147684,9 @@ webhooks: - 'null' to: type: string - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147378,9 +147768,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147461,9 +147851,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147568,7 +147958,7 @@ webhooks: oneOf: - type: string - type: integer - - &653 + - &657 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -147588,7 +147978,7 @@ webhooks: required: - id - name - - &654 + - &658 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -147617,8 +148007,8 @@ webhooks: oneOf: - type: string - type: integer - - *653 - - *654 + - *657 + - *658 type: - 'null' - string @@ -147641,9 +148031,9 @@ webhooks: - 'null' required: - body - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147740,9 +148130,9 @@ webhooks: type: - string - 'null' - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147825,10 +148215,10 @@ webhooks: type: string enum: - restored - changes: *655 - installation: *612 - organization: *613 - projects_v2_item: *652 + changes: *659 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147910,9 +148300,9 @@ webhooks: type: string enum: - reopened - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147993,9 +148383,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_status_update: &656 + installation: *616 + organization: *617 + projects_v2_status_update: &660 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -148130,9 +148520,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_status_update: *656 + installation: *616 + organization: *617 + projects_v2_status_update: *660 sender: *4 required: - action @@ -148278,9 +148668,9 @@ webhooks: - string - 'null' format: date - installation: *612 - organization: *613 - projects_v2_status_update: *656 + installation: *616 + organization: *617 + projects_v2_status_update: *660 sender: *4 required: - action @@ -148351,10 +148741,10 @@ webhooks: title: public event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - repository @@ -148431,13 +148821,13 @@ webhooks: type: string enum: - assigned - assignee: *631 - enterprise: *611 - installation: *612 - number: &657 + assignee: *635 + enterprise: *615 + installation: *616 + number: &661 description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -150786,7 +151176,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -150868,11 +151258,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -153214,7 +153604,7 @@ webhooks: - draft reason: type: string - repository: *614 + repository: *618 sender: *4 required: - action @@ -153296,11 +153686,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -155642,7 +156032,7 @@ webhooks: - draft reason: type: string - repository: *614 + repository: *618 sender: *4 required: - action @@ -155724,13 +156114,13 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: &658 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: &662 allOf: - - *489 + - *493 - type: object properties: allow_auto_merge: @@ -155792,7 +156182,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *614 + repository: *618 sender: *4 required: - action @@ -155873,12 +156263,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -155958,11 +156348,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *611 - milestone: *387 - number: *657 - organization: *613 - pull_request: &659 + enterprise: *615 + milestone: *391 + number: *661 + organization: *617 + pull_request: &663 title: Pull Request type: object properties: @@ -158289,7 +158679,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -158368,11 +158758,11 @@ webhooks: type: string enum: - dequeued - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -160718,7 +161108,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *614 + repository: *618 sender: *4 required: - action @@ -160842,12 +161232,12 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -160927,11 +161317,11 @@ webhooks: type: string enum: - enqueued - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -163262,7 +163652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -163342,11 +163732,11 @@ webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 - label: *630 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + label: *634 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -165694,7 +166084,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -165775,10 +166165,10 @@ webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -168124,7 +168514,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -168204,12 +168594,12 @@ webhooks: type: string enum: - milestoned - enterprise: *611 - milestone: *387 - number: *657 - organization: *613 - pull_request: *659 - repository: *614 + enterprise: *615 + milestone: *391 + number: *661 + organization: *617 + pull_request: *663 + repository: *618 sender: *4 required: - action @@ -168288,12 +168678,12 @@ webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168374,12 +168764,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168459,12 +168849,12 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168839,9 +169229,9 @@ webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -171071,7 +171461,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -171151,7 +171541,7 @@ webhooks: type: string enum: - deleted - comment: &661 + comment: &665 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -171444,9 +171834,9 @@ webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -173664,7 +174054,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -173744,11 +174134,11 @@ webhooks: type: string enum: - edited - changes: *660 - comment: *661 - enterprise: *611 - installation: *612 - organization: *613 + changes: *664 + comment: *665 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -175969,7 +176359,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -176050,9 +176440,9 @@ webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -178285,7 +178675,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 review: description: The review that was affected. type: object @@ -178531,9 +178921,9 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -180647,8 +181037,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: &662 + repository: *618 + review: &666 description: The review that was affected. type: object properties: @@ -180881,12 +181271,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -183233,7 +183623,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_reviewer: title: User type: @@ -183319,12 +183709,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -185678,7 +186068,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_team: title: Team description: Groups of organization members that gives permissions @@ -185873,12 +186263,12 @@ webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -188227,7 +188617,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_reviewer: title: User type: @@ -188314,12 +188704,12 @@ webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -190659,7 +191049,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_team: title: Team description: Groups of organization members that gives permissions @@ -190843,9 +191233,9 @@ webhooks: type: string enum: - submitted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -193081,8 +193471,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: *662 + repository: *618 + review: *666 sender: *4 required: - action @@ -193162,9 +193552,9 @@ webhooks: type: string enum: - resolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -195295,7 +195685,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 sender: *4 thread: type: object @@ -195687,9 +196077,9 @@ webhooks: type: string enum: - unresolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -197803,7 +198193,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 sender: *4 thread: type: object @@ -198197,10 +198587,10 @@ webhooks: type: string before: type: string - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -200535,7 +200925,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -200617,11 +201007,11 @@ webhooks: type: string enum: - unassigned - assignee: *663 - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + assignee: *667 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -202971,7 +203361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -203050,11 +203440,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - label: *630 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + label: *634 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -205393,7 +205783,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -205474,10 +205864,10 @@ webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -207806,7 +208196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -208009,7 +208399,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *611 + enterprise: *615 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -208104,8 +208494,8 @@ webhooks: - url - author - committer - installation: *612 - organization: *613 + installation: *616 + organization: *617 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -208693,9 +209083,9 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 registry_package: type: object properties: @@ -209172,7 +209562,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *645 + items: *649 summary: type: string tag_name: @@ -209228,7 +209618,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -209306,9 +209696,9 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 registry_package: type: object properties: @@ -209620,7 +210010,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *645 + items: *649 summary: type: string tag_name: @@ -209670,7 +210060,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -209747,10 +210137,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - release: &664 + enterprise: *615 + installation: *616 + organization: *617 + release: &668 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -210066,7 +210456,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *614 + repository: *618 sender: *4 required: - action @@ -210143,11 +210533,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -210255,11 +210645,11 @@ webhooks: type: boolean required: - to - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -210337,9 +210727,9 @@ webhooks: type: string enum: - prereleased - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -210660,7 +211050,7 @@ webhooks: - string - 'null' format: uri - repository: *614 + repository: *618 sender: *4 required: - action @@ -210736,10 +211126,10 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - release: &665 + enterprise: *615 + installation: *616 + organization: *617 + release: &669 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211057,7 +211447,7 @@ webhooks: - string - 'null' format: uri - repository: *614 + repository: *618 sender: *4 required: - action @@ -211133,11 +211523,11 @@ webhooks: type: string enum: - released - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -211213,11 +211603,11 @@ webhooks: type: string enum: - unpublished - enterprise: *611 - installation: *612 - organization: *613 - release: *665 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *669 + repository: *618 sender: *4 required: - action @@ -211293,11 +211683,11 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_advisory: *543 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_advisory: *547 sender: *4 required: - action @@ -211373,11 +211763,11 @@ webhooks: type: string enum: - reported - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_advisory: *543 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_advisory: *547 sender: *4 required: - action @@ -211453,10 +211843,10 @@ webhooks: type: string enum: - archived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211533,10 +211923,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211614,10 +212004,10 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211702,10 +212092,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211820,10 +212210,10 @@ webhooks: - 'null' items: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211895,10 +212285,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 status: type: string @@ -211979,10 +212369,10 @@ webhooks: type: string enum: - privatized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212059,10 +212449,10 @@ webhooks: type: string enum: - publicized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212156,10 +212546,10 @@ webhooks: - name required: - repository - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212239,11 +212629,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 sender: *4 required: - action @@ -212321,11 +212711,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 sender: *4 required: - action @@ -212403,11 +212793,11 @@ webhooks: type: string enum: - edited - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 changes: type: object properties: @@ -212426,16 +212816,16 @@ webhooks: properties: added: type: array - items: *217 + items: *218 deleted: type: array - items: *217 + items: *218 updated: type: array items: type: object properties: - condition: *217 + condition: *218 changes: type: object properties: @@ -212468,16 +212858,16 @@ webhooks: properties: added: type: array - items: *222 + items: *223 deleted: type: array - items: *222 + items: *223 updated: type: array items: type: object properties: - rule: *222 + rule: *223 changes: type: object properties: @@ -212714,10 +213104,10 @@ webhooks: - from required: - owner - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212795,10 +213185,10 @@ webhooks: type: string enum: - unarchived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212876,7 +213266,7 @@ webhooks: type: string enum: - create - alert: &666 + alert: &670 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -213000,10 +213390,10 @@ webhooks: type: string enum: - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213213,10 +213603,10 @@ webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213294,11 +213684,11 @@ webhooks: type: string enum: - reopen - alert: *666 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *670 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213500,10 +213890,10 @@ webhooks: enum: - fixed - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213581,7 +213971,7 @@ webhooks: type: string enum: - created - alert: &667 + alert: &671 type: object properties: number: *51 @@ -213691,10 +214081,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213775,11 +214165,11 @@ webhooks: type: string enum: - created - alert: *667 - installation: *612 - location: *668 - organization: *613 - repository: *614 + alert: *671 + installation: *616 + location: *672 + organization: *617 + repository: *618 sender: *4 required: - location @@ -214017,11 +214407,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214099,11 +214489,11 @@ webhooks: type: string enum: - reopened - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214181,11 +214571,11 @@ webhooks: type: string enum: - resolved - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214263,11 +214653,11 @@ webhooks: type: string enum: - validated - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214397,10 +214787,10 @@ webhooks: - organization - enterprise - - repository: *614 - enterprise: *611 - installation: *612 - organization: *613 + repository: *618 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -214478,11 +214868,11 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: &669 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + security_advisory: &673 description: The details of the security advisory, including summary, description, and severity. type: object @@ -214668,11 +215058,11 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: *669 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + security_advisory: *673 sender: *4 required: - action @@ -214745,10 +215135,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -214934,11 +215324,11 @@ webhooks: from: type: object properties: - security_and_analysis: *216 - enterprise: *611 - installation: *612 - organization: *613 - repository: *266 + security_and_analysis: *217 + enterprise: *615 + installation: *616 + organization: *617 + repository: *270 sender: *4 required: - changes @@ -215016,12 +215406,12 @@ webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: &670 + sponsorship: &674 type: object properties: created_at: @@ -215326,12 +215716,12 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - sponsorship @@ -215419,12 +215809,12 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215501,17 +215891,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &671 + effective_date: &675 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: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - sponsorship @@ -215585,7 +215975,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &672 + changes: &676 type: object properties: tier: @@ -215629,13 +216019,13 @@ webhooks: - from required: - tier - effective_date: *671 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + effective_date: *675 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215712,13 +216102,13 @@ webhooks: type: string enum: - tier_changed - changes: *672 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + changes: *676 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215792,10 +216182,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -215879,10 +216269,10 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216315,15 +216705,15 @@ webhooks: type: - string - 'null' - enterprise: *611 + enterprise: *615 id: description: The unique identifier of the status. type: integer - installation: *612 + installation: *616 name: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 sha: description: The Commit SHA. @@ -216439,9 +216829,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216531,9 +216921,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216623,9 +217013,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216715,9 +217105,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216794,12 +217184,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - team: &673 + team: &677 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -216992,9 +217382,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -217464,7 +217854,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -217540,9 +217930,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -218012,7 +218402,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -218089,9 +218479,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -218561,7 +218951,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -218705,9 +219095,9 @@ webhooks: - from required: - permissions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -219177,7 +219567,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - changes @@ -219255,9 +219645,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -219727,7 +220117,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -219803,10 +220193,10 @@ webhooks: type: string enum: - started - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -219879,17 +220269,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *611 + enterprise: *615 inputs: type: - object - 'null' additionalProperties: true - installation: *612 - organization: *613 + installation: *616 + organization: *617 ref: type: string - repository: *614 + repository: *618 sender: *4 workflow: type: string @@ -219971,10 +220361,10 @@ webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: allOf: @@ -220230,7 +220620,7 @@ webhooks: type: string required: - conclusion - deployment: *407 + deployment: *411 required: - action - repository @@ -220309,10 +220699,10 @@ webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: allOf: @@ -220594,7 +220984,7 @@ webhooks: required: - status - steps - deployment: *407 + deployment: *411 required: - action - repository @@ -220673,10 +221063,10 @@ webhooks: type: string enum: - queued - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: type: object @@ -220822,7 +221212,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *407 + deployment: *411 required: - action - repository @@ -220901,10 +221291,10 @@ webhooks: type: string enum: - waiting - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: type: object @@ -221051,7 +221441,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *407 + deployment: *411 required: - action - repository @@ -221131,12 +221521,12 @@ webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object @@ -222155,12 +222545,12 @@ webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object @@ -223164,12 +223554,12 @@ webhooks: type: string enum: - requested - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 63d93b35a..377b934a1 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -175,6 +175,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -22008,6 +22012,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -87890,6 +87902,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -154519,6 +154539,775 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "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": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, + "examples": { + "default": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team/{team_slug}/copilot/metrics": { "get": { "summary": "Get Copilot metrics for a team", @@ -294307,6 +295096,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -382059,7 +382856,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -388147,7 +388944,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 07cfda80a..e53544344 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -93,6 +93,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -888,7 +890,7 @@ paths: - subscriptions_url - type - url - type: &234 + type: &235 type: string description: The type of credit the user is receiving. enum: @@ -1054,7 +1056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &545 + - &549 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1650,7 +1652,7 @@ paths: schema: type: integer default: 30 - - &156 + - &157 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 @@ -1666,7 +1668,7 @@ paths: application/json: schema: type: array - items: &157 + items: &158 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1759,7 +1761,7 @@ paths: - installation_id - repository_id examples: - default: &158 + default: &159 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1894,7 +1896,7 @@ paths: description: Response content: application/json: - schema: &159 + schema: &160 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2029,7 +2031,7 @@ paths: - request - response examples: - default: &160 + default: &161 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8717,6 +8719,18 @@ paths: schema: type: string - &146 + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string + - &147 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8726,7 +8740,7 @@ paths: enum: - development - runtime - - &147 + - &148 name: sort in: query description: |- @@ -8744,7 +8758,7 @@ paths: - *46 - *37 - *38 - - &148 + - &149 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -8757,7 +8771,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &149 + - &150 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -8777,7 +8791,7 @@ paths: application/json: schema: type: array - items: &150 + items: &151 type: object description: A Dependabot alert. properties: @@ -8832,7 +8846,7 @@ paths: - development - runtime - - security_advisory: &399 + security_advisory: &403 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9099,7 +9113,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &400 + auto_dismissed_at: &404 type: - string - 'null' @@ -9126,7 +9140,7 @@ paths: - repository additionalProperties: false examples: - default: &151 + default: &152 value: - number: 2 state: dismissed @@ -9470,7 +9484,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &225 + - &226 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9481,7 +9495,7 @@ paths: enum: - open - resolved - - &226 + - &227 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9491,7 +9505,7 @@ paths: required: false schema: type: string - - &227 + - &228 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9500,7 +9514,7 @@ paths: required: false schema: type: string - - &228 + - &229 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. @@ -9516,7 +9530,7 @@ paths: - *17 - *37 - *38 - - &229 + - &230 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9525,7 +9539,7 @@ paths: required: false schema: type: string - - &230 + - &231 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9534,7 +9548,7 @@ paths: schema: type: boolean default: false - - &231 + - &232 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9550,7 +9564,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 type: object properties: number: *51 @@ -9566,14 +9580,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &537 + state: &541 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: &538 + resolution: &542 type: - string - 'null' @@ -9672,7 +9686,7 @@ paths: description: Whether the detected secret was found in multiple repositories in the same organization or enterprise. examples: - default: &233 + default: &234 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10125,7 +10139,7 @@ paths: milestone: anyOf: - type: 'null' - - &387 + - &391 title: Milestone description: A collection of related issues and pull requests. @@ -10389,7 +10403,7 @@ paths: - author_association - created_at - updated_at - comment: &446 + comment: &450 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -10964,7 +10978,7 @@ paths: url: type: string format: uri - user: &568 + user: &572 title: Public User description: Public User type: object @@ -12859,7 +12873,7 @@ paths: - closed - all default: open - - &179 + - &180 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -12910,7 +12924,7 @@ paths: type: array items: *73 examples: - default: &180 + default: &181 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14321,14 +14335,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &255 + - &259 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &256 + - &260 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14399,7 +14413,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &267 + '301': &271 description: Moved permanently content: application/json: @@ -14421,7 +14435,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &475 + - &479 name: all description: If `true`, show notifications marked as read. in: query @@ -14429,7 +14443,7 @@ paths: schema: type: boolean default: false - - &476 + - &480 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14439,7 +14453,7 @@ paths: type: boolean default: false - *63 - - &477 + - &481 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: @@ -14810,7 +14824,7 @@ paths: type: boolean examples: - false - security_and_analysis: &216 + security_and_analysis: &217 type: - object - 'null' @@ -14957,7 +14971,7 @@ paths: - url - subscription_url examples: - default: &478 + default: &482 value: - id: '1' repository: @@ -15578,7 +15592,7 @@ paths: - avatar_url - description examples: - default: &585 + default: &589 value: - login: github id: 1 @@ -16551,7 +16565,7 @@ paths: type: integer repository_cache_usages: type: array - items: &272 + items: &276 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17469,7 +17483,7 @@ paths: - all - local_only - selected - selected_actions_url: &278 + selected_actions_url: &282 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` @@ -17559,7 +17573,7 @@ paths: type: array items: *58 examples: - default: &579 + default: &583 value: total_count: 1 repositories: @@ -17887,7 +17901,7 @@ paths: description: Response content: application/json: - schema: &282 + schema: &286 type: object properties: default_workflow_permissions: &107 @@ -17938,7 +17952,7 @@ paths: required: false content: application/json: - schema: &283 + schema: &287 type: object properties: default_workflow_permissions: *107 @@ -18431,7 +18445,7 @@ paths: type: array items: *114 examples: - default: &571 + default: &575 value: total_count: 1 repositories: @@ -19074,7 +19088,7 @@ paths: application/json: schema: type: array - items: &284 + items: &288 title: Runner Application description: Runner Application type: object @@ -19099,7 +19113,7 @@ paths: - download_url - filename examples: - default: &285 + default: &289 value: - os: osx architecture: x64 @@ -19185,7 +19199,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &286 + '201': &290 description: Response content: application/json: @@ -19299,7 +19313,7 @@ paths: - token - expires_at examples: - default: &287 + default: &291 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19338,7 +19352,7 @@ paths: application/json: schema: *118 examples: - default: &288 + default: &292 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19372,7 +19386,7 @@ paths: application/json: schema: *116 examples: - default: &289 + default: &293 value: id: 23 name: MBP @@ -19596,7 +19610,7 @@ paths: - *89 - *115 responses: - '200': &290 + '200': &294 description: Response content: application/json: @@ -19653,7 +19667,7 @@ paths: parameters: - *89 - *115 - - &291 + - &295 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19785,7 +19799,7 @@ paths: description: Response content: application/json: - schema: &303 + schema: &307 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19820,7 +19834,7 @@ paths: - key_id - key examples: - default: &304 + default: &308 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20231,7 +20245,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *89 - - &277 + - &281 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)." @@ -20763,7 +20777,7 @@ paths: bundle_url: type: string examples: - default: &317 + default: &321 value: attestations: - bundle: @@ -20882,7 +20896,7 @@ paths: type: array items: *4 examples: - default: &181 + default: &182 value: - login: octocat id: 1 @@ -21000,7 +21014,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - &342 + - &346 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`, @@ -21010,7 +21024,7 @@ paths: schema: &130 type: string description: The name of the tool used to generate the code scanning analysis. - - &343 + - &347 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 @@ -21034,7 +21048,7 @@ paths: be returned. in: query required: false - schema: &345 + schema: &349 type: string description: State of a code scanning alert. enum: @@ -21057,7 +21071,7 @@ paths: be returned. in: query required: false - schema: &346 + schema: &350 type: string description: Severity of a code scanning alert. enum: @@ -21083,7 +21097,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: &347 + instances_url: &351 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21105,7 +21119,7 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: &348 + dismissed_reason: &352 type: - string - 'null' @@ -21116,14 +21130,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &349 + dismissed_comment: &353 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &350 + rule: &354 type: object properties: id: @@ -21184,7 +21198,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &351 + tool: &355 type: object properties: name: *130 @@ -21195,15 +21209,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *131 - most_recent_instance: &352 + most_recent_instance: &356 type: object properties: - ref: &344 + ref: &348 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &362 + analysis_key: &366 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21214,7 +21228,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &363 + category: &367 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22398,7 +22412,7 @@ paths: type: integer codespaces: type: array - items: &182 + items: &183 type: object title: Codespace description: A codespace. @@ -22433,7 +22447,7 @@ paths: machine: anyOf: - type: 'null' - - &375 + - &379 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -22720,7 +22734,7 @@ paths: - pulls_url - recent_folders examples: - default: &183 + default: &184 value: total_count: 3 codespaces: @@ -23385,7 +23399,7 @@ paths: - updated_at - visibility examples: - default: &376 + default: &380 value: total_count: 2 secrets: @@ -23423,7 +23437,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &381 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23458,7 +23472,7 @@ paths: - key_id - key examples: - default: &378 + default: &382 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23490,7 +23504,7 @@ paths: application/json: schema: *140 examples: - default: &380 + default: &384 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -23959,7 +23973,7 @@ paths: currently being billed. seats: type: array - items: &185 + items: &186 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -23974,7 +23988,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &178 + - &179 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -24033,7 +24047,7 @@ paths: parent: anyOf: - type: 'null' - - &193 + - &194 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24687,7 +24701,7 @@ paths: application/json: schema: type: array - items: &235 + items: &239 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25003,7 +25017,7 @@ paths: - date additionalProperties: true examples: - default: &236 + default: &240 value: - date: '2024-06-24' total_active_users: 24 @@ -25105,7 +25119,7 @@ paths: '500': *139 '403': *27 '404': *6 - '422': &237 + '422': &241 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25173,7 +25187,7 @@ paths: application/json: schema: type: array - items: &238 + items: &242 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25261,7 +25275,7 @@ paths: - breakdown additionalProperties: false examples: - default: &239 + default: &243 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25357,11 +25371,12 @@ paths: - *145 - *146 - *147 + - *148 - *46 - *37 - *38 - - *148 - *149 + - *150 - *17 responses: '200': @@ -25370,9 +25385,9 @@ paths: application/json: schema: type: array - items: *150 + items: *151 examples: - default: *151 + default: *152 '304': *35 '400': *14 '403': *27 @@ -25416,7 +25431,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &153 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -25495,7 +25510,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &407 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25514,7 +25529,7 @@ paths: - key_id - key examples: - default: &404 + default: &408 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -25544,7 +25559,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *153 examples: default: value: @@ -25841,7 +25856,7 @@ paths: application/json: schema: type: array - items: &195 + items: &196 title: Package description: A software package type: object @@ -25912,7 +25927,7 @@ paths: - created_at - updated_at examples: - default: &196 + default: &197 value: - id: 197 name: hello_docker @@ -26079,7 +26094,7 @@ paths: application/json: schema: type: array - items: &175 + items: &176 title: Organization Invitation description: Organization Invitation type: object @@ -26133,7 +26148,7 @@ paths: - invitation_teams_url - node_id examples: - default: &176 + default: &177 value: - id: 1 login: monalisa @@ -26200,7 +26215,7 @@ paths: application/json: schema: type: array - items: &153 + items: &154 title: Org Hook description: Org Hook type: object @@ -26385,9 +26400,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: - default: &154 + default: &155 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -26435,7 +26450,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &155 + - &156 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. @@ -26448,9 +26463,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: - default: *154 + default: *155 '404': *6 x-github: githubCloudOnly: false @@ -26478,7 +26493,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *155 + - *156 requestBody: required: false content: @@ -26524,7 +26539,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *154 examples: default: value: @@ -26566,7 +26581,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *155 + - *156 responses: '204': description: Response @@ -26594,7 +26609,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *155 + - *156 responses: '200': description: Response @@ -26625,7 +26640,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *155 + - *156 requestBody: required: false content: @@ -26676,9 +26691,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *155 - - *17 - *156 + - *17 + - *157 responses: '200': description: Response @@ -26686,9 +26701,9 @@ paths: application/json: schema: type: array - items: *157 + items: *158 examples: - default: *158 + default: *159 '400': *14 '422': *15 x-github: @@ -26714,16 +26729,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *155 + - *156 - *16 responses: '200': description: Response content: application/json: - schema: *159 + schema: *160 examples: - default: *160 + default: *161 '400': *14 '422': *15 x-github: @@ -26749,7 +26764,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *155 + - *156 - *16 responses: '202': *45 @@ -26779,7 +26794,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *155 + - *156 responses: '204': description: Response @@ -26802,7 +26817,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &165 + - &166 name: actor_type in: path description: The type of the actor @@ -26815,14 +26830,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &166 + - &167 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &161 + - &162 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`.' @@ -26830,7 +26845,7 @@ paths: required: true schema: type: string - - &162 + - &163 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) @@ -26925,12 +26940,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *161 - *162 + - *163 - *19 - *17 - *46 - - &171 + - &172 name: sort description: The property to sort the results by. in: query @@ -27010,14 +27025,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *161 - *162 + - *163 responses: '200': description: Response content: application/json: - schema: &163 + schema: &164 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -27033,7 +27048,7 @@ paths: type: integer format: int64 examples: - default: &164 + default: &165 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -27054,23 +27069,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &167 + - &168 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *161 - *162 + - *163 responses: '200': description: Response content: application/json: - schema: *163 + schema: *164 examples: - default: *164 + default: *165 x-github: enabledForGitHubApps: true category: orgs @@ -27089,18 +27104,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *161 - *162 - - *165 + - *163 - *166 + - *167 responses: '200': description: Response content: application/json: - schema: *163 + schema: *164 examples: - default: *164 + default: *165 x-github: enabledForGitHubApps: true category: orgs @@ -27118,9 +27133,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *161 - *162 - - &168 + - *163 + - &169 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -27133,7 +27148,7 @@ paths: description: Response content: application/json: - schema: &169 + schema: &170 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -27149,7 +27164,7 @@ paths: type: integer format: int64 examples: - default: &170 + default: &171 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -27186,18 +27201,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *167 - - *161 - - *162 - *168 + - *162 + - *163 + - *169 responses: '200': description: Response content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 x-github: enabledForGitHubApps: true category: orgs @@ -27215,19 +27230,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *165 - *166 - - *161 + - *167 - *162 - - *168 + - *163 + - *169 responses: '200': description: Response content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 x-github: enabledForGitHubApps: true category: orgs @@ -27245,13 +27260,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *167 - - *161 + - *168 - *162 + - *163 - *19 - *17 - *46 - - *171 + - *172 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -27335,7 +27350,7 @@ paths: application/json: schema: *20 examples: - default: &442 + default: &446 value: id: 1 account: @@ -27501,12 +27516,12 @@ paths: application/json: schema: anyOf: - - &173 + - &174 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &172 + limit: &173 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -27534,7 +27549,7 @@ paths: properties: {} additionalProperties: false examples: - default: &174 + default: &175 value: limit: collaborators_only origin: organization @@ -27563,13 +27578,13 @@ paths: required: true content: application/json: - schema: &443 + schema: &447 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *172 + limit: *173 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -27594,9 +27609,9 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: - default: *174 + default: *175 '422': *15 x-github: githubCloudOnly: false @@ -27672,9 +27687,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 '404': *6 @@ -27751,7 +27766,7 @@ paths: description: Response content: application/json: - schema: *175 + schema: *176 examples: default: value: @@ -27806,7 +27821,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &177 + - &178 name: invitation_id description: The unique identifier of the invitation. in: path @@ -27837,7 +27852,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *177 + - *178 - *17 - *19 responses: @@ -27847,9 +27862,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: &194 + default: &195 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -27924,7 +27939,7 @@ paths: - closed - all default: open - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -27949,7 +27964,7 @@ paths: type: array items: *73 examples: - default: *180 + default: *181 headers: Link: *56 '404': *6 @@ -28007,7 +28022,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '422': *15 @@ -28103,9 +28118,9 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 '304': *35 '500': *139 '401': *23 @@ -28132,7 +28147,7 @@ paths: parameters: - *89 - *127 - - &184 + - &185 name: codespace_name in: path required: true @@ -28167,15 +28182,15 @@ paths: parameters: - *89 - *127 - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: &374 + default: &378 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -28355,7 +28370,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *185 + schema: *186 examples: default: value: @@ -28430,7 +28445,7 @@ paths: description: Response content: application/json: - schema: &186 + schema: &187 title: Org Membership description: Org Membership type: object @@ -28483,7 +28498,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &187 + response-if-user-has-an-active-admin-membership-with-organization: &188 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -28580,9 +28595,9 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: - response-if-user-already-had-membership-with-organization: *187 + response-if-user-already-had-membership-with-organization: *188 '422': *15 '403': *27 x-github: @@ -28651,7 +28666,7 @@ paths: application/json: schema: type: array - items: &188 + items: &189 title: Migration description: A migration. type: object @@ -28989,7 +29004,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -29168,7 +29183,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &189 + - &190 name: migration_id description: The unique identifier of the migration. in: path @@ -29196,7 +29211,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -29366,7 +29381,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *189 + - *190 responses: '302': description: Response @@ -29388,7 +29403,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *189 + - *190 responses: '204': description: Response @@ -29412,8 +29427,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *189 - - &584 + - *190 + - &588 name: repo_name description: repo_name parameter in: path @@ -29441,7 +29456,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *189 + - *190 - *17 - *19 responses: @@ -29453,7 +29468,7 @@ paths: type: array items: *114 examples: - default: &201 + default: &202 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -29606,7 +29621,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &192 + items: &193 title: Organization Role description: Organization roles type: object @@ -29756,7 +29771,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *89 - - &190 + - &191 name: team_slug description: The slug of the team name. in: path @@ -29788,8 +29803,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *89 - - *190 - - &191 + - *191 + - &192 name: role_id description: The unique identifier of the role. in: path @@ -29825,8 +29840,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *89 - - *190 - *191 + - *192 responses: '204': description: Response @@ -29879,7 +29894,7 @@ paths: parameters: - *89 - *127 - - *191 + - *192 responses: '204': description: Response @@ -29911,7 +29926,7 @@ paths: parameters: - *89 - *127 - - *191 + - *192 responses: '204': description: Response @@ -29940,13 +29955,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *89 - - *191 + - *192 responses: '200': description: Response content: application/json: - schema: *192 + schema: *193 examples: default: value: @@ -29997,7 +30012,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *89 - - *191 + - *192 - *17 - *19 responses: @@ -30076,7 +30091,7 @@ paths: parent: anyOf: - type: 'null' - - *193 + - *194 required: - id - node_id @@ -30090,7 +30105,7 @@ paths: - slug - parent examples: - default: *194 + default: *195 headers: Link: *56 '404': @@ -30120,7 +30135,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *89 - - *191 + - *192 - *17 - *19 responses: @@ -30149,7 +30164,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *193 + items: *194 name: type: - string @@ -30266,7 +30281,7 @@ paths: - type - url examples: - default: *181 + default: *182 headers: Link: *56 '404': @@ -30314,7 +30329,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -30456,7 +30471,7 @@ paths: - nuget - container - *89 - - &586 + - &590 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30492,12 +30507,12 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *196 + default: *197 '403': *27 '401': *23 - '400': &588 + '400': &592 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -30519,7 +30534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &197 + - &198 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 @@ -30537,7 +30552,7 @@ paths: - docker - nuget - container - - &198 + - &199 name: package_name description: The name of the package. in: path @@ -30550,7 +30565,7 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: default: value: @@ -30602,8 +30617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *197 - *198 + - *199 - *89 responses: '204': @@ -30636,8 +30651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - name: token description: package token @@ -30670,8 +30685,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: - - *197 - *198 + - *199 - *89 - *19 - *17 @@ -30692,7 +30707,7 @@ paths: application/json: schema: type: array - items: &199 + items: &200 title: Package Version description: A version of a software package type: object @@ -30827,10 +30842,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - &200 + - &201 name: package_version_id description: Unique identifier of the package version. in: path @@ -30842,7 +30857,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -30878,10 +30893,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - *200 + - *201 responses: '204': description: Response @@ -30913,10 +30928,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *197 - *198 + - *199 - *89 - - *200 + - *201 responses: '204': description: Response @@ -30946,7 +30961,7 @@ paths: - *89 - *17 - *19 - - &202 + - &203 name: sort description: The property by which to sort the results. in: query @@ -30957,7 +30972,7 @@ paths: - created_at default: created_at - *46 - - &203 + - &204 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -30969,7 +30984,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &204 + - &205 name: repository description: The name of the repository to use to filter the results. in: query @@ -30978,7 +30993,7 @@ paths: type: string examples: - Hello-World - - &205 + - &206 name: permission description: The permission to use to filter the results. in: query @@ -30987,7 +31002,7 @@ paths: type: string examples: - issues_read - - &206 + - &207 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) @@ -30997,7 +31012,7 @@ paths: schema: type: string format: date-time - - &207 + - &208 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) @@ -31314,7 +31329,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -31340,13 +31355,13 @@ paths: - *89 - *17 - *19 - - *202 - - *46 - *203 + - *46 - *204 - *205 - *206 - *207 + - *208 responses: '500': *139 '422': *15 @@ -31630,7 +31645,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -31674,7 +31689,7 @@ paths: type: integer configurations: type: array - items: &208 + items: &209 title: Organization private registry description: Private registry configuration for an organization type: object @@ -31886,7 +31901,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &209 + org-private-registry-with-selected-visibility: &210 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -31988,9 +32003,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *208 + schema: *209 examples: - default: *209 + default: *210 '404': *6 x-github: githubCloudOnly: false @@ -32141,7 +32156,7 @@ paths: application/json: schema: type: array - items: &210 + items: &211 title: Project description: Projects are a way to organize columns and cards of work. @@ -32320,7 +32335,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: default: value: @@ -32358,7 +32373,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &264 + '410': &268 description: Gone content: application/json: @@ -32390,7 +32405,7 @@ paths: application/json: schema: type: array - items: &211 + items: &212 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32466,7 +32481,7 @@ paths: - property_name - value_type examples: - default: &212 + default: &213 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32521,7 +32536,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *211 + items: *212 minItems: 1 maxItems: 100 required: @@ -32551,9 +32566,9 @@ paths: application/json: schema: type: array - items: *211 + items: *212 examples: - default: *212 + default: *213 '403': *27 '404': *6 x-github: @@ -32575,7 +32590,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *89 - - &213 + - &214 name: custom_property_name description: The custom property name in: path @@ -32587,9 +32602,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: &214 + default: &215 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32624,7 +32639,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *89 - - *213 + - *214 requestBody: required: true content: @@ -32691,9 +32706,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *214 + default: *215 '403': *27 '404': *6 x-github: @@ -32717,7 +32732,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *89 - - *213 + - *214 responses: '204': *136 '403': *27 @@ -32781,7 +32796,7 @@ paths: - octocat/Hello-World properties: type: array - items: &215 + items: &216 title: Custom Property Value description: Custom property name and associated value type: object @@ -32871,7 +32886,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *215 + items: *216 required: - repository_names - properties @@ -32924,7 +32939,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -33063,7 +33078,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -33266,7 +33281,7 @@ paths: description: Response content: application/json: - schema: &266 + schema: &270 title: Full Repository description: Full Repository type: object @@ -33731,7 +33746,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &393 + code_of_conduct: &397 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33761,7 +33776,7 @@ paths: - key - name - html_url - security_and_analysis: *216 + security_and_analysis: *217 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -33845,7 +33860,7 @@ paths: - network_count - subscribers_count examples: - default: &268 + default: &272 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34366,7 +34381,7 @@ paths: - *89 - *17 - *19 - - &524 + - &528 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34385,7 +34400,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34420,7 +34435,7 @@ paths: source: type: string description: The name of the source - enforcement: &219 + enforcement: &220 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34433,7 +34448,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &220 + items: &221 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34499,7 +34514,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &217 + - &218 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34523,7 +34538,7 @@ paths: match. items: type: string - - &221 + - &222 title: Organization ruleset conditions type: object description: |- @@ -34537,7 +34552,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34571,7 +34586,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34593,7 +34608,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *217 + - *218 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34606,7 +34621,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &218 + items: &219 title: Repository ruleset property targeting definition type: object @@ -34639,7 +34654,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *218 + items: *219 required: - repository_property type: @@ -34647,12 +34662,12 @@ paths: - object rules: type: array - items: &222 + items: &223 title: Repository Rule type: object description: A repository rule. oneOf: - - &506 + - &510 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34664,7 +34679,7 @@ paths: type: string enum: - creation - - &507 + - &511 title: update description: Only allow users with bypass permission to update matching refs. @@ -34685,7 +34700,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &509 + - &513 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34697,7 +34712,7 @@ paths: type: string enum: - deletion - - &510 + - &514 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34709,7 +34724,7 @@ paths: type: string enum: - required_linear_history - - &511 + - &515 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34787,7 +34802,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &512 + - &516 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -34811,7 +34826,7 @@ paths: type: string required: - required_deployment_environments - - &513 + - &517 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -34823,7 +34838,7 @@ paths: type: string enum: - required_signatures - - &514 + - &518 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -34876,7 +34891,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &515 + - &519 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34924,7 +34939,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &516 + - &520 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34936,7 +34951,7 @@ paths: type: string enum: - non_fast_forward - - &517 + - &521 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34972,7 +34987,7 @@ paths: required: - operator - pattern - - &518 + - &522 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35008,7 +35023,7 @@ paths: required: - operator - pattern - - &519 + - &523 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35044,7 +35059,7 @@ paths: required: - operator - pattern - - &520 + - &524 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35080,7 +35095,7 @@ paths: required: - operator - pattern - - &521 + - &525 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35206,7 +35221,7 @@ paths: maximum: 100 required: - max_file_size - - &522 + - &526 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35256,7 +35271,7 @@ paths: - repository_id required: - workflows - - &523 + - &527 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35390,16 +35405,16 @@ paths: - push - repository default: branch - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *221 + items: *221 + conditions: *222 rules: type: array description: An array of rules within the ruleset. - items: *222 + items: *223 required: - name - enforcement @@ -35437,9 +35452,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: &224 + default: &225 value: id: 21 name: super cool ruleset @@ -35494,7 +35509,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &525 + - &529 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 @@ -35509,7 +35524,7 @@ paths: in: query schema: type: string - - &526 + - &530 name: time_period description: |- The time period to filter by. @@ -35525,14 +35540,14 @@ paths: - week - month default: day - - &527 + - &531 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 - - &528 + - &532 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35552,7 +35567,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &533 title: Rule Suites description: Response type: array @@ -35608,7 +35623,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &530 + default: &534 value: - id: 21 actor_id: 12 @@ -35652,7 +35667,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &531 + - &535 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35668,7 +35683,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &536 title: Rule Suite description: Response type: object @@ -35775,7 +35790,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &533 + default: &537 value: id: 21 actor_id: 12 @@ -35848,9 +35863,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 '404': *6 '500': *139 put: @@ -35894,16 +35909,16 @@ paths: - tag - push - repository - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *221 + items: *221 + conditions: *222 rules: description: An array of rules within the ruleset. type: array - items: *222 + items: *223 examples: default: value: @@ -35938,9 +35953,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 '404': *6 '500': *139 delete: @@ -35987,14 +36002,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *225 - *226 - *227 - *228 + - *229 - *46 - *19 - *17 - - &535 + - &539 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 @@ -36004,7 +36019,7 @@ paths: required: false schema: type: string - - &536 + - &540 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 @@ -36014,9 +36029,9 @@ paths: required: false schema: type: string - - *229 - *230 - *231 + - *232 responses: '200': description: Response @@ -36024,9 +36039,9 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: - default: *233 + default: *234 headers: Link: *56 '404': *6 @@ -36096,7 +36111,7 @@ paths: application/json: schema: type: array - items: &543 + items: &547 description: A repository security advisory. type: object properties: @@ -36340,7 +36355,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 credits_detailed: type: - array @@ -36351,7 +36366,7 @@ paths: type: object properties: user: *4 - type: *234 + type: *235 state: type: string description: The state of the user's acceptance of the @@ -36377,7 +36392,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *178 + items: *179 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -36415,7 +36430,7 @@ paths: - private_fork additionalProperties: false examples: - default: &544 + default: &548 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -36802,9 +36817,9 @@ paths: application/json: schema: type: array - items: *193 + items: *194 examples: - default: *194 + default: *195 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36828,7 +36843,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -36854,7 +36869,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -36889,7 +36904,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &606 type: object properties: total_minutes_used: @@ -36959,7 +36974,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &603 + default: &607 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -36995,7 +37010,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &608 type: object properties: total_gigabytes_bandwidth_used: @@ -37013,7 +37028,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &605 + default: &609 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37045,7 +37060,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &610 type: object properties: days_left_in_billing_cycle: @@ -37063,7 +37078,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &607 + default: &611 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37073,6 +37088,379 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - *89 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: &236 + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration + supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings + in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration + was created, in ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + examples: + default: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *236 + examples: + default: &237 + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + - &238 + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: *236 + examples: + default: *237 + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *89 + - *238 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *236 + examples: + default: *237 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - *89 + - *238 + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - *89 + - name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that + is using this settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured + for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings + resource is configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region + examples: + default: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus + headers: + Link: *56 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team/{team_slug}/copilot/metrics": get: summary: Get Copilot metrics for a team @@ -37098,7 +37486,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *89 - - *190 + - *191 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37130,13 +37518,13 @@ paths: application/json: schema: type: array - items: *235 + items: *239 examples: - default: *236 + default: *240 '500': *139 '403': *27 '404': *6 - '422': *237 + '422': *241 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37171,7 +37559,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *89 - - *190 + - *191 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37203,9 +37591,9 @@ paths: application/json: schema: type: array - items: *238 + items: *242 examples: - default: *239 + default: *243 '500': *139 '401': *23 '403': *27 @@ -37237,9 +37625,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 headers: Link: *56 '403': *27 @@ -37333,7 +37721,7 @@ paths: description: Response content: application/json: - schema: &240 + schema: &244 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -37407,7 +37795,7 @@ paths: parent: anyOf: - type: 'null' - - *193 + - *194 members_count: type: integer examples: @@ -37713,7 +38101,7 @@ paths: - repos_count - organization examples: - default: &241 + default: &245 value: id: 1 node_id: MDQ6VGVhbTE= @@ -37784,15 +38172,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *89 - - *190 + - *191 responses: '200': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 x-github: githubCloudOnly: false @@ -37814,7 +38202,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *89 - - *190 + - *191 requestBody: required: false content: @@ -37877,16 +38265,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '201': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 '422': *15 '403': *27 @@ -37912,7 +38300,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *89 - - *190 + - *191 responses: '204': description: Response @@ -37939,7 +38327,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *89 - - *190 + - *191 - *46 - *17 - *19 @@ -37956,7 +38344,7 @@ paths: application/json: schema: type: array - items: &242 + items: &246 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38067,7 +38455,7 @@ paths: - updated_at - url examples: - default: &558 + default: &562 value: - author: login: octocat @@ -38142,7 +38530,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *89 - - *190 + - *191 requestBody: required: true content: @@ -38176,9 +38564,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: &243 + default: &247 value: author: login: octocat @@ -38251,8 +38639,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *89 - - *190 - - &244 + - *191 + - &248 name: discussion_number description: The number that identifies the discussion. in: path @@ -38264,9 +38652,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38289,8 +38677,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: false content: @@ -38313,9 +38701,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: &559 + default: &563 value: author: login: octocat @@ -38386,8 +38774,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 responses: '204': description: Response @@ -38414,8 +38802,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *89 - - *190 - - *244 + - *191 + - *248 - *46 - *17 - *19 @@ -38426,7 +38814,7 @@ paths: application/json: schema: type: array - items: &245 + items: &249 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -38506,7 +38894,7 @@ paths: - updated_at - url examples: - default: &560 + default: &564 value: - author: login: octocat @@ -38575,8 +38963,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: true content: @@ -38598,9 +38986,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: &246 + default: &250 value: author: login: octocat @@ -38667,9 +39055,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *89 - - *190 - - *244 - - &247 + - *191 + - *248 + - &251 name: comment_number description: The number that identifies the comment. in: path @@ -38681,9 +39069,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38706,9 +39094,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 requestBody: required: true content: @@ -38730,9 +39118,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: &561 + default: &565 value: author: login: octocat @@ -38797,9 +39185,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 responses: '204': description: Response @@ -38826,9 +39214,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 - 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. @@ -38854,7 +39242,7 @@ paths: application/json: schema: type: array - items: &248 + items: &252 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -38898,7 +39286,7 @@ paths: - content - created_at examples: - default: &250 + default: &254 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38949,9 +39337,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *89 - - *190 - - *244 - - *247 + - *191 + - *248 + - *251 requestBody: required: true content: @@ -38984,9 +39372,9 @@ paths: team discussion comment content: application/json: - schema: *248 + schema: *252 examples: - default: &249 + default: &253 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39015,9 +39403,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39041,10 +39429,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *89 - - *190 - - *244 - - *247 - - &251 + - *191 + - *248 + - *251 + - &255 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39077,8 +39465,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 - 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. @@ -39104,9 +39492,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -39133,8 +39521,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *89 - - *190 - - *244 + - *191 + - *248 requestBody: required: true content: @@ -39166,16 +39554,16 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39199,9 +39587,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *89 - - *190 - - *244 - - *251 + - *191 + - *248 + - *255 responses: '204': description: Response @@ -39226,7 +39614,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39236,9 +39624,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 x-github: @@ -39261,7 +39649,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *89 - - *190 + - *191 - name: role description: Filters members returned by their role in the team. in: query @@ -39284,7 +39672,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -39315,14 +39703,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 responses: '200': description: Response content: application/json: - schema: &252 + schema: &256 title: Team Membership description: Team Membership type: object @@ -39350,7 +39738,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &562 + response-if-user-is-a-team-maintainer: &566 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -39387,7 +39775,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 requestBody: required: false @@ -39413,9 +39801,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-users-membership-with-team-is-now-pending: &563 + response-if-users-membership-with-team-is-now-pending: &567 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -39451,7 +39839,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *89 - - *190 + - *191 - *127 responses: '204': @@ -39479,7 +39867,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39489,7 +39877,7 @@ paths: application/json: schema: type: array - items: &253 + items: &257 title: Team Project description: A team's access to a project. type: object @@ -39558,7 +39946,7 @@ paths: - updated_at - permissions examples: - default: &564 + default: &568 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39620,8 +40008,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *89 - - *190 - - &254 + - *191 + - &258 name: project_id description: The unique identifier of the project. in: path @@ -39633,9 +40021,9 @@ paths: description: Response content: application/json: - schema: *253 + schema: *257 examples: - default: &565 + default: &569 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39696,8 +40084,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *89 - - *190 - - *254 + - *191 + - *258 requestBody: required: false content: @@ -39763,8 +40151,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *89 - - *190 - - *254 + - *191 + - *258 responses: '204': description: Response @@ -39789,7 +40177,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -39801,7 +40189,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -39831,15 +40219,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &566 + schema: &570 title: Team Repository description: A team's access to a repository. type: object @@ -40481,9 +40869,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 requestBody: required: false content: @@ -40529,9 +40917,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *89 - - *190 - - *255 - - *256 + - *191 + - *259 + - *260 responses: '204': description: Response @@ -40556,7 +40944,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *89 - - *190 + - *191 - *17 - *19 responses: @@ -40566,9 +40954,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - response-if-child-teams-exist: &567 + response-if-child-teams-exist: &571 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -40692,7 +41080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &257 + - &261 name: card_id description: The unique identifier of the card. in: path @@ -40704,7 +41092,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &262 title: Project Card description: Project cards represent a scope of work. type: object @@ -40779,7 +41167,7 @@ paths: - created_at - updated_at examples: - default: &259 + default: &263 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -40829,7 +41217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *257 + - *261 requestBody: required: false content: @@ -40859,9 +41247,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: - default: *259 + default: *263 '304': *35 '403': *27 '401': *23 @@ -40882,7 +41270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *257 + - *261 responses: '204': description: Response @@ -40920,7 +41308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *257 + - *261 requestBody: required: true content: @@ -41027,7 +41415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &260 + - &264 name: column_id description: The unique identifier of the column. in: path @@ -41039,7 +41427,7 @@ paths: description: Response content: application/json: - schema: &261 + schema: &265 title: Project Column description: Project columns contain cards of work. type: object @@ -41093,7 +41481,7 @@ paths: - created_at - updated_at examples: - default: &262 + default: &266 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41122,7 +41510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *260 + - *264 requestBody: required: true content: @@ -41147,9 +41535,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *265 examples: - default: *262 + default: *266 '304': *35 '403': *27 '401': *23 @@ -41168,7 +41556,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *260 + - *264 responses: '204': description: Response @@ -41191,7 +41579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *260 + - *264 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -41212,7 +41600,7 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: default: value: @@ -41265,7 +41653,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *260 + - *264 requestBody: required: true content: @@ -41309,9 +41697,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: - default: *259 + default: *263 '304': *35 '403': *27 '401': *23 @@ -41361,7 +41749,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *260 + - *264 requestBody: required: true content: @@ -41418,15 +41806,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *254 + - *258 responses: '200': description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: &263 + default: &267 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -41479,7 +41867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *254 + - *258 requestBody: required: false content: @@ -41528,9 +41916,9 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: *263 + default: *267 '404': description: Not Found if the authenticated user does not have access to the project @@ -41551,7 +41939,7 @@ paths: items: type: string '401': *23 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -41569,7 +41957,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *254 + - *258 responses: '204': description: Delete Success @@ -41590,7 +41978,7 @@ paths: items: type: string '401': *23 - '410': *264 + '410': *268 '404': *6 x-github: githubCloudOnly: false @@ -41613,7 +42001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *254 + - *258 - 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 @@ -41640,7 +42028,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -41665,7 +42053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *254 + - *258 - *127 requestBody: required: false @@ -41715,7 +42103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *254 + - *258 - *127 responses: '204': @@ -41744,7 +42132,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *254 + - *258 - *127 responses: '200': @@ -41809,7 +42197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *254 + - *258 - *17 - *19 responses: @@ -41819,7 +42207,7 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: default: value: @@ -41851,7 +42239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *254 + - *258 requestBody: required: true content: @@ -41875,7 +42263,7 @@ paths: description: Response content: application/json: - schema: *261 + schema: *265 examples: default: value: @@ -41936,7 +42324,7 @@ paths: resources: type: object properties: - core: &265 + core: &269 title: Rate Limit type: object properties: @@ -41953,20 +42341,20 @@ paths: - remaining - reset - used - graphql: *265 - search: *265 - code_search: *265 - source_import: *265 - integration_manifest: *265 - code_scanning_upload: *265 - actions_runner_registration: *265 - scim: *265 - dependency_snapshots: *265 - code_scanning_autofix: *265 + graphql: *269 + search: *269 + code_search: *269 + source_import: *269 + integration_manifest: *269 + code_scanning_upload: *269 + actions_runner_registration: *269 + scim: *269 + dependency_snapshots: *269 + code_scanning_autofix: *269 required: - core - search - rate: *265 + rate: *269 required: - rate - resources @@ -42070,14 +42458,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *266 + schema: *270 examples: default-response: summary: Default response @@ -42578,7 +42966,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *267 + '301': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42596,8 +42984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -42834,10 +43222,10 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 - '307': &269 + default: *272 + '307': &273 description: Temporary Redirect content: application/json: @@ -42866,8 +43254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -42889,7 +43277,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *269 + '307': *273 '404': *6 x-github: githubCloudOnly: false @@ -42912,11 +43300,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - - &295 + - &299 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -42939,7 +43327,7 @@ paths: type: integer artifacts: type: array - items: &270 + items: &274 title: Artifact description: An artifact type: object @@ -43025,7 +43413,7 @@ paths: - expires_at - updated_at examples: - default: &296 + default: &300 value: total_count: 2 artifacts: @@ -43084,9 +43472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *255 - - *256 - - &271 + - *259 + - *260 + - &275 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43098,7 +43486,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -43135,9 +43523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *255 - - *256 - - *271 + - *259 + - *260 + - *275 responses: '204': description: Response @@ -43161,9 +43549,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *255 - - *256 - - *271 + - *259 + - *260 + - *275 - name: archive_format in: path required: true @@ -43177,7 +43565,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': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43200,14 +43588,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -43233,11 +43621,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - - &273 + - &277 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 @@ -43271,7 +43659,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &278 title: Repository actions caches description: Repository actions caches type: object @@ -43321,7 +43709,7 @@ paths: - total_count - actions_caches examples: - default: &275 + default: &279 value: total_count: 1 actions_caches: @@ -43353,23 +43741,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: - - *255 - - *256 + - *259 + - *260 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *273 + - *277 responses: '200': description: Response content: application/json: - schema: *274 + schema: *278 examples: - default: *275 + default: *279 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43389,8 +43777,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: - - *255 - - *256 + - *259 + - *260 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -43421,9 +43809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *255 - - *256 - - &276 + - *259 + - *260 + - &280 name: job_id description: The unique identifier of the job. in: path @@ -43435,7 +43823,7 @@ paths: description: Response content: application/json: - schema: &299 + schema: &303 title: Job description: Information of a job execution in a workflow run type: object @@ -43782,9 +44170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *255 - - *256 - - *276 + - *259 + - *260 + - *280 responses: '302': description: Response @@ -43812,9 +44200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *255 - - *256 - - *276 + - *259 + - *260 + - *280 requestBody: required: false content: @@ -43860,8 +44248,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Status response @@ -43911,8 +44299,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -43975,8 +44363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -43994,7 +44382,7 @@ paths: type: integer secrets: type: array - items: &301 + items: &305 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44015,7 +44403,7 @@ paths: - created_at - updated_at examples: - default: &302 + default: &306 value: total_count: 2 secrets: @@ -44048,9 +44436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *255 - - *256 - - *277 + - *259 + - *260 + - *281 - *19 responses: '200': @@ -44067,7 +44455,7 @@ paths: type: integer variables: type: array - items: &305 + items: &309 title: Actions Variable type: object properties: @@ -44101,7 +44489,7 @@ paths: - created_at - updated_at examples: - default: &306 + default: &310 value: total_count: 2 variables: @@ -44134,8 +44522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44144,11 +44532,11 @@ paths: schema: type: object properties: - enabled: &279 + enabled: &283 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *103 - selected_actions_url: *278 + selected_actions_url: *282 required: - enabled examples: @@ -44175,8 +44563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -44187,7 +44575,7 @@ paths: schema: type: object properties: - enabled: *279 + enabled: *283 allowed_actions: *103 required: - enabled @@ -44217,14 +44605,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &280 + schema: &284 type: object properties: access_level: @@ -44241,7 +44629,7 @@ paths: required: - access_level examples: - default: &281 + default: &285 value: access_level: organization x-github: @@ -44265,15 +44653,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: application/json: - schema: *280 + schema: *284 examples: - default: *281 + default: *285 responses: '204': description: Response @@ -44297,8 +44685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44325,8 +44713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -44358,14 +44746,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *282 + schema: *286 examples: default: *109 x-github: @@ -44388,8 +44776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Success response @@ -44400,7 +44788,7 @@ paths: required: true content: application/json: - schema: *283 + schema: *287 examples: default: *109 x-github: @@ -44429,8 +44817,8 @@ paths: in: query schema: type: string - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -44474,8 +44862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -44483,9 +44871,9 @@ paths: application/json: schema: type: array - items: *284 + items: *288 examples: - default: *285 + default: *289 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44507,8 +44895,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -44551,7 +44939,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *286 + '201': *290 '404': *6 '422': *7 x-github: @@ -44581,8 +44969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -44590,7 +44978,7 @@ paths: application/json: schema: *118 examples: - default: *287 + default: *291 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44618,8 +45006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -44627,7 +45015,7 @@ paths: application/json: schema: *118 examples: - default: *288 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44649,8 +45037,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '200': @@ -44659,7 +45047,7 @@ paths: application/json: schema: *116 examples: - default: *289 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44680,8 +45068,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '204': @@ -44707,8 +45095,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: '200': *120 @@ -44733,8 +45121,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: - - *255 - - *256 + - *259 + - *260 - *115 requestBody: required: true @@ -44783,8 +45171,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: - - *255 - - *256 + - *259 + - *260 - *115 requestBody: required: true @@ -44834,11 +45222,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: - - *255 - - *256 + - *259 + - *260 - *115 responses: - '200': *290 + '200': *294 '404': *6 x-github: githubCloudOnly: false @@ -44865,10 +45253,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: - - *255 - - *256 + - *259 + - *260 - *115 - - *291 + - *295 responses: '200': *120 '404': *6 @@ -44896,9 +45284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *255 - - *256 - - &309 + - *259 + - *260 + - &313 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. @@ -44906,7 +45294,7 @@ paths: required: false schema: type: string - - &310 + - &314 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -44914,7 +45302,7 @@ paths: required: false schema: type: string - - &311 + - &315 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -44923,7 +45311,7 @@ paths: required: false schema: type: string - - &312 + - &316 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 @@ -44950,7 +45338,7 @@ paths: - pending - *17 - *19 - - &313 + - &317 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)." @@ -44959,7 +45347,7 @@ paths: schema: type: string format: date-time - - &292 + - &296 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -44968,13 +45356,13 @@ paths: schema: type: boolean default: false - - &314 + - &318 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &315 + - &319 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -44997,7 +45385,7 @@ paths: type: integer workflow_runs: type: array - items: &293 + items: &297 title: Workflow Run description: An invocation of a workflow type: object @@ -45114,7 +45502,7 @@ paths: type: - array - 'null' - items: &334 + items: &338 title: Pull Request Minimal type: object properties: @@ -45241,7 +45629,7 @@ paths: head_commit: anyOf: - type: 'null' - - &338 + - &342 title: Simple Commit description: A commit. type: object @@ -45356,7 +45744,7 @@ paths: - workflow_url - pull_requests examples: - default: &316 + default: &320 value: total_count: 1 workflow_runs: @@ -45592,24 +45980,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *255 - - *256 - - &294 + - *259 + - *260 + - &298 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *292 + - *296 responses: '200': description: Response content: application/json: - schema: *293 + schema: *297 examples: - default: &297 + default: &301 value: id: 30433642 name: Build @@ -45850,9 +46238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '204': description: Response @@ -45875,9 +46263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -46005,9 +46393,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: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '201': description: Response @@ -46040,12 +46428,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 - *17 - *19 - - *295 + - *299 responses: '200': description: Response @@ -46061,9 +46449,9 @@ paths: type: integer artifacts: type: array - items: *270 + items: *274 examples: - default: *296 + default: *300 headers: Link: *56 x-github: @@ -46087,25 +46475,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *255 - - *256 - - *294 - - &298 + - *259 + - *260 + - *298 + - &302 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *292 + - *296 responses: '200': description: Response content: application/json: - schema: *293 + schema: *297 examples: - default: *297 + default: *301 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46128,10 +46516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *255 - - *256 - - *294 + - *259 + - *260 - *298 + - *302 - *17 - *19 responses: @@ -46149,9 +46537,9 @@ paths: type: integer jobs: type: array - items: *299 + items: *303 examples: - default: &300 + default: &304 value: total_count: 1 jobs: @@ -46264,10 +46652,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 - *298 + - *302 responses: '302': description: Response @@ -46295,9 +46683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '202': description: Response @@ -46330,9 +46718,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: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: true content: @@ -46399,9 +46787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '202': description: Response @@ -46434,9 +46822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 - 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 @@ -46466,9 +46854,9 @@ paths: type: integer jobs: type: array - items: *299 + items: *303 examples: - default: *300 + default: *304 headers: Link: *56 x-github: @@ -46493,9 +46881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '302': description: Response @@ -46522,9 +46910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '204': description: Response @@ -46551,9 +46939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -46622,7 +47010,7 @@ paths: items: type: object properties: - type: &412 + type: &416 type: string description: The type of reviewer. enum: @@ -46633,7 +47021,7 @@ paths: reviewer: anyOf: - *4 - - *178 + - *179 required: - environment - wait_timer @@ -46708,9 +47096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: true content: @@ -46760,7 +47148,7 @@ paths: application/json: schema: type: array - items: &407 + items: &411 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -46872,7 +47260,7 @@ paths: - created_at - updated_at examples: - default: &408 + default: &412 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -46928,9 +47316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: false content: @@ -46975,9 +47363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 requestBody: required: false content: @@ -47024,9 +47412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *255 - - *256 - - *294 + - *259 + - *260 + - *298 responses: '200': description: Response @@ -47163,8 +47551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -47182,9 +47570,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *305 examples: - default: *302 + default: *306 headers: Link: *56 x-github: @@ -47209,16 +47597,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *303 + schema: *307 examples: - default: *304 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47240,17 +47628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *301 + schema: *305 examples: - default: &425 + default: &429 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -47276,8 +47664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -47332,8 +47720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -47359,9 +47747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *255 - - *256 - - *277 + - *259 + - *260 + - *281 - *19 responses: '200': @@ -47378,9 +47766,9 @@ paths: type: integer variables: type: array - items: *305 + items: *309 examples: - default: *306 + default: *310 headers: Link: *56 x-github: @@ -47403,8 +47791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -47456,17 +47844,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 responses: '200': description: Response content: application/json: - schema: *305 + schema: *309 examples: - default: &426 + default: &430 value: name: USERNAME value: octocat @@ -47492,8 +47880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 requestBody: required: true @@ -47536,8 +47924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 responses: '204': @@ -47563,8 +47951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -47582,7 +47970,7 @@ paths: type: integer workflows: type: array - items: &307 + items: &311 title: Workflow description: A GitHub Actions workflow type: object @@ -47700,9 +48088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *255 - - *256 - - &308 + - *259 + - *260 + - &312 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -47717,7 +48105,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *311 examples: default: value: @@ -47750,9 +48138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47777,9 +48165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47830,9 +48218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '204': description: Response @@ -47859,19 +48247,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *255 - - *256 - - *308 - - *309 - - *310 - - *311 + - *259 + - *260 - *312 - - *17 - - *19 - *313 - - *292 - *314 - *315 + - *316 + - *17 + - *19 + - *317 + - *296 + - *318 + - *319 responses: '200': description: Response @@ -47887,9 +48275,9 @@ paths: type: integer workflow_runs: type: array - items: *293 + items: *297 examples: - default: *316 + default: *320 headers: Link: *56 x-github: @@ -47915,9 +48303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *255 - - *256 - - *308 + - *259 + - *260 + - *312 responses: '200': description: Response @@ -47978,8 +48366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *255 - - *256 + - *259 + - *260 - *46 - *17 - *37 @@ -48147,8 +48535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -48160,7 +48548,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -48185,8 +48573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *255 - - *256 + - *259 + - *260 - name: assignee in: path required: true @@ -48222,8 +48610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -48335,8 +48723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *37 - *38 @@ -48382,7 +48770,7 @@ paths: bundle_url: type: string examples: - default: *317 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48402,8 +48790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -48411,7 +48799,7 @@ paths: application/json: schema: type: array - items: &318 + items: &322 title: Autolink reference description: An autolink reference. type: object @@ -48465,8 +48853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -48505,9 +48893,9 @@ paths: description: response content: application/json: - schema: *318 + schema: *322 examples: - default: &319 + default: &323 value: id: 1 key_prefix: TICKET- @@ -48538,9 +48926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *255 - - *256 - - &320 + - *259 + - *260 + - &324 name: autolink_id description: The unique identifier of the autolink. in: path @@ -48552,9 +48940,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *322 examples: - default: *319 + default: *323 '404': *6 x-github: githubCloudOnly: false @@ -48574,9 +48962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *255 - - *256 - - *320 + - *259 + - *260 + - *324 responses: '204': description: Response @@ -48600,8 +48988,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response if Dependabot is enabled @@ -48651,8 +49039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -48673,8 +49061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -48694,8 +49082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *255 - - *256 + - *259 + - *260 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -48733,7 +49121,7 @@ paths: - url protected: type: boolean - protection: &322 + protection: &326 title: Branch Protection description: Branch Protection type: object @@ -48776,7 +49164,7 @@ paths: required: - contexts - checks - enforce_admins: &325 + enforce_admins: &329 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -48793,7 +49181,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &327 + required_pull_request_reviews: &331 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -48815,7 +49203,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *178 + items: *179 apps: description: The list of apps with review dismissal access. @@ -48847,7 +49235,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *178 + items: *179 apps: description: The list of apps allowed to bypass pull request requirements. @@ -48877,7 +49265,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &324 + restrictions: &328 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -49202,9 +49590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *255 - - *256 - - &323 + - *259 + - *260 + - &327 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). @@ -49218,14 +49606,14 @@ paths: description: Response content: application/json: - schema: &333 + schema: &337 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &383 + commit: &387 title: Commit description: Commit type: object @@ -49264,7 +49652,7 @@ paths: author: anyOf: - type: 'null' - - &321 + - &325 title: Git User description: Metaproperties for Git author/committer information. @@ -49285,7 +49673,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 message: type: string examples: @@ -49309,7 +49697,7 @@ paths: required: - sha - url - verification: &432 + verification: &436 title: Verification type: object properties: @@ -49388,7 +49776,7 @@ paths: type: integer files: type: array - items: &395 + items: &399 title: Diff Entry description: Diff Entry type: object @@ -49482,7 +49870,7 @@ paths: - self protected: type: boolean - protection: *322 + protection: *326 protection_url: type: string format: uri @@ -49591,7 +49979,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *267 + '301': *271 '404': *6 x-github: githubCloudOnly: false @@ -49613,15 +50001,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *326 examples: default: value: @@ -49815,9 +50203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -50077,7 +50465,7 @@ paths: url: type: string format: uri - required_status_checks: &330 + required_status_checks: &334 title: Status Check Policy description: Status Check Policy type: object @@ -50158,7 +50546,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 apps: type: array items: *5 @@ -50176,7 +50564,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 apps: type: array items: *5 @@ -50236,7 +50624,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *324 + restrictions: *328 required_conversation_resolution: type: object properties: @@ -50348,9 +50736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50375,17 +50763,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: &326 + default: &330 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -50407,17 +50795,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: *326 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50436,9 +50824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50463,17 +50851,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *327 + schema: *331 examples: - default: &328 + default: &332 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -50569,9 +50957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -50669,9 +51057,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *331 examples: - default: *328 + default: *332 '422': *15 x-github: githubCloudOnly: false @@ -50692,9 +51080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50721,17 +51109,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: &329 + default: &333 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -50754,17 +51142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *325 + schema: *329 examples: - default: *329 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -50784,9 +51172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50811,17 +51199,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *330 + schema: *334 examples: - default: &331 + default: &335 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -50847,9 +51235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -50901,9 +51289,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *334 examples: - default: *331 + default: *335 '404': *6 '422': *15 x-github: @@ -50925,9 +51313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -50951,9 +51339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -50987,9 +51375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51056,9 +51444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51122,9 +51510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: content: application/json: @@ -51190,15 +51578,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response content: application/json: - schema: *324 + schema: *328 examples: default: value: @@ -51289,9 +51677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '204': description: Response @@ -51314,9 +51702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51326,7 +51714,7 @@ paths: type: array items: *5 examples: - default: &332 + default: &336 value: - id: 1 slug: octoapp @@ -51383,9 +51771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51419,7 +51807,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51440,9 +51828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51476,7 +51864,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51497,9 +51885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51533,7 +51921,7 @@ paths: type: array items: *5 examples: - default: *332 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -51555,9 +51943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51565,9 +51953,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '404': *6 x-github: githubCloudOnly: false @@ -51587,9 +51975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51625,9 +52013,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51648,9 +52036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: false content: @@ -51686,9 +52074,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51709,9 +52097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: content: application/json: @@ -51746,9 +52134,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 '422': *15 x-github: githubCloudOnly: false @@ -51770,9 +52158,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 responses: '200': description: Response @@ -51782,7 +52170,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '404': *6 x-github: githubCloudOnly: false @@ -51806,9 +52194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51841,7 +52229,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51866,9 +52254,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51901,7 +52289,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51926,9 +52314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -51961,7 +52349,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '422': *15 x-github: githubCloudOnly: false @@ -51988,9 +52376,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 requestBody: required: true content: @@ -52012,7 +52400,7 @@ paths: description: Response content: application/json: - schema: *333 + schema: *337 examples: default: value: @@ -52128,8 +52516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -52408,7 +52796,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &339 title: CheckRun description: A check performed on the code of a given code change type: object @@ -52543,8 +52931,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *334 - deployment: &616 + items: *338 + deployment: &620 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -52831,9 +53219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *255 - - *256 - - &336 + - *259 + - *260 + - &340 name: check_run_id description: The unique identifier of the check run. in: path @@ -52845,9 +53233,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *339 examples: - default: &337 + default: &341 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -52947,9 +53335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 requestBody: required: true content: @@ -53189,9 +53577,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *339 examples: - default: *337 + default: *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53211,9 +53599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 - *17 - *19 responses: @@ -53325,9 +53713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *255 - - *256 - - *336 + - *259 + - *260 + - *340 responses: '201': description: Response @@ -53371,8 +53759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -53394,7 +53782,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &339 + schema: &343 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -53476,7 +53864,7 @@ paths: type: - array - 'null' - items: *334 + items: *338 app: anyOf: - type: 'null' @@ -53492,7 +53880,7 @@ paths: - string - 'null' format: date-time - head_commit: *338 + head_commit: *342 latest_check_runs_count: type: integer check_runs_url: @@ -53520,7 +53908,7 @@ paths: - check_runs_url - pull_requests examples: - default: &340 + default: &344 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -53811,9 +54199,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *339 + schema: *343 examples: - default: *340 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53832,8 +54220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -54142,9 +54530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *255 - - *256 - - &341 + - *259 + - *260 + - &345 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -54156,9 +54544,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *343 examples: - default: *340 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54181,17 +54569,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *255 - - *256 - - *341 - - &390 + - *259 + - *260 + - *345 + - &394 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &391 + - &395 name: status description: Returns check runs with the specified `status`. in: query @@ -54230,9 +54618,9 @@ paths: type: integer check_runs: type: array - items: *335 + items: *339 examples: - default: &392 + default: &396 value: total_count: 1 check_runs: @@ -54334,9 +54722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *255 - - *256 - - *341 + - *259 + - *260 + - *345 responses: '201': description: Response @@ -54369,21 +54757,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *255 - - *256 - - *342 - - *343 + - *259 + - *260 + - *346 + - *347 - *19 - *17 - - &360 + - &364 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: *344 - - &361 + schema: *348 + - &365 name: pr description: The number of the pull request for the results you want to list. in: query @@ -54408,13 +54796,13 @@ paths: be returned. in: query required: false - schema: *345 + schema: *349 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *346 + schema: *350 responses: '200': description: Response @@ -54430,7 +54818,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: *347 + instances_url: *351 state: *132 fixed_at: *128 dismissed_by: @@ -54438,11 +54826,11 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: *348 - dismissed_comment: *349 - rule: *350 - tool: *351 - most_recent_instance: *352 + dismissed_reason: *352 + dismissed_comment: *353 + rule: *354 + tool: *355 + most_recent_instance: *356 required: - number - created_at @@ -54558,7 +54946,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &353 + '403': &357 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -54585,9 +54973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *255 - - *256 - - &354 + - *259 + - *260 + - &358 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -54601,7 +54989,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &359 type: object properties: number: *51 @@ -54609,7 +54997,7 @@ paths: updated_at: *53 url: *54 html_url: *55 - instances_url: *347 + instances_url: *351 state: *132 fixed_at: *128 dismissed_by: @@ -54617,8 +55005,8 @@ paths: - type: 'null' - *4 dismissed_at: *129 - dismissed_reason: *348 - dismissed_comment: *349 + dismissed_reason: *352 + dismissed_comment: *353 rule: type: object properties: @@ -54680,8 +55068,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *351 - most_recent_instance: *352 + tool: *355 + most_recent_instance: *356 required: - number - created_at @@ -54770,7 +55158,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -54790,9 +55178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: true content: @@ -54807,8 +55195,8 @@ paths: enum: - open - dismissed - dismissed_reason: *348 - dismissed_comment: *349 + dismissed_reason: *352 + dismissed_comment: *353 required: - state examples: @@ -54823,7 +55211,7 @@ paths: description: Response content: application/json: - schema: *355 + schema: *359 examples: default: value: @@ -54898,7 +55286,7 @@ paths: classifications: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances - '403': &359 + '403': &363 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -54925,15 +55313,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: Response content: application/json: - schema: &356 + schema: &360 type: object properties: status: @@ -54960,13 +55348,13 @@ paths: - description - started_at examples: - default: &357 + default: &361 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &358 + '400': &362 description: Bad Request content: application/json: @@ -54977,7 +55365,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': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55002,29 +55390,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: OK content: application/json: - schema: *356 + schema: *360 examples: - default: *357 + default: *361 '202': description: Accepted content: application/json: - schema: *356 + schema: *360 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *358 + '400': *362 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55056,9 +55444,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: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: false content: @@ -55104,8 +55492,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *358 - '403': *359 + '400': *362 + '403': *363 '404': *6 '422': description: Unprocessable Entity @@ -55129,13 +55517,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 - *19 - *17 - - *360 - - *361 + - *364 + - *365 responses: '200': description: Response @@ -55143,7 +55531,7 @@ paths: application/json: schema: type: array - items: *352 + items: *356 examples: default: value: @@ -55182,7 +55570,7 @@ paths: end_column: 50 classifications: - source - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55216,25 +55604,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *255 - - *256 - - *342 - - *343 + - *259 + - *260 + - *346 + - *347 - *19 - *17 - - *361 + - *365 - 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: *344 + schema: *348 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &364 + schema: &368 type: string description: An identifier for the upload. examples: @@ -55256,23 +55644,23 @@ paths: application/json: schema: type: array - items: &365 + items: &369 type: object properties: - ref: *344 - commit_sha: &373 + ref: *348 + commit_sha: &377 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: *362 + analysis_key: *366 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *363 + category: *367 error: type: string examples: @@ -55297,8 +55685,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *364 - tool: *351 + sarif_id: *368 + tool: *355 deletable: type: boolean warning: @@ -55360,7 +55748,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55396,8 +55784,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: - - *255 - - *256 + - *259 + - *260 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -55410,7 +55798,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *369 examples: response: summary: application/json response @@ -55464,7 +55852,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55546,8 +55934,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: - - *255 - - *256 + - *259 + - *260 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -55603,7 +55991,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': *359 + '403': *363 '404': *6 '503': *61 x-github: @@ -55625,8 +56013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -55634,7 +56022,7 @@ paths: application/json: schema: type: array - items: &366 + items: &370 title: CodeQL Database description: A CodeQL database. type: object @@ -55746,7 +56134,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': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55775,8 +56163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: language in: path description: The language of the CodeQL database. @@ -55788,7 +56176,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *370 examples: default: value: @@ -55820,9 +56208,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': &397 + '302': &401 description: Found - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -55844,8 +56232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *255 - - *256 + - *259 + - *260 - name: language in: path description: The language of the CodeQL database. @@ -55855,7 +56243,7 @@ paths: responses: '204': description: Response - '403': *359 + '403': *363 '404': *6 '503': *61 x-github: @@ -55883,8 +56271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -55893,7 +56281,7 @@ paths: type: object additionalProperties: false properties: - language: &367 + language: &371 type: string description: The language targeted by the CodeQL query enum: @@ -55971,7 +56359,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &371 + schema: &375 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -55981,7 +56369,7 @@ paths: description: The ID of the variant analysis. controller_repo: *50 actor: *4 - query_language: *367 + query_language: *371 query_pack_url: type: string description: The download url for the query pack. @@ -56029,7 +56417,7 @@ paths: items: type: object properties: - repository: &368 + repository: &372 title: Repository Identifier description: Repository Identifier type: object @@ -56071,7 +56459,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &372 + analysis_status: &376 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56103,7 +56491,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &369 + access_mismatch_repos: &373 type: object properties: repository_count: @@ -56118,7 +56506,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: *368 + items: *372 required: - repository_count - repositories @@ -56141,8 +56529,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *369 - over_limit_repos: *369 + no_codeql_db_repos: *373 + over_limit_repos: *373 required: - access_mismatch_repos - not_found_repos @@ -56158,7 +56546,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &370 + value: &374 summary: Default response value: id: 1 @@ -56310,10 +56698,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *370 + value: *374 repository_lists: summary: Response for a successful variant analysis submission - value: *370 + value: *374 '404': *6 '422': description: Unable to process variant analysis submission @@ -56341,8 +56729,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: - - *255 - - *256 + - *259 + - *260 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -56354,9 +56742,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *375 examples: - default: *370 + default: *374 '404': *6 '503': *61 x-github: @@ -56379,7 +56767,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: - - *255 + - *259 - name: repo in: path description: The name of the controller repository. @@ -56414,7 +56802,7 @@ paths: type: object properties: repository: *50 - analysis_status: *372 + analysis_status: *376 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -56539,8 +56927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -56622,7 +57010,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *353 + '403': *357 '404': *6 '503': *61 x-github: @@ -56643,8 +57031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -56728,7 +57116,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *359 + '403': *363 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -56793,8 +57181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -56802,7 +57190,7 @@ paths: schema: type: object properties: - commit_sha: *373 + commit_sha: *377 ref: type: string description: |- @@ -56862,7 +57250,7 @@ paths: schema: type: object properties: - id: *364 + id: *368 url: type: string description: The REST API URL for checking the status of the upload. @@ -56876,7 +57264,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': *359 + '403': *363 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -56899,8 +57287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *255 - - *256 + - *259 + - *260 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -56948,7 +57336,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': *353 + '403': *357 '404': description: Not Found if the sarif id does not match any upload '503': *61 @@ -56973,8 +57361,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57052,8 +57440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *255 - - *256 + - *259 + - *260 - 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 @@ -57181,8 +57569,8 @@ paths: parameters: - *17 - *19 - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57198,7 +57586,7 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: default: value: @@ -57496,8 +57884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -57561,17 +57949,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '400': *14 '401': *23 '403': *27 @@ -57600,8 +57988,8 @@ paths: parameters: - *17 - *19 - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -57665,8 +58053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -57703,9 +58091,9 @@ paths: type: integer machines: type: array - items: *375 + items: *379 examples: - default: &574 + default: &578 value: total_count: 2 machines: @@ -57745,8 +58133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *255 - - *256 + - *259 + - *260 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -57833,8 +58221,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: - - *255 - - *256 + - *259 + - *260 - 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 @@ -57903,8 +58291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -57922,7 +58310,7 @@ paths: type: integer secrets: type: array - items: &379 + items: &383 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -57943,7 +58331,7 @@ paths: - created_at - updated_at examples: - default: *376 + default: *380 headers: Link: *56 x-github: @@ -57966,16 +58354,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *377 + schema: *381 examples: - default: *378 + default: *382 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57995,17 +58383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *379 + schema: *383 examples: - default: *380 + default: *384 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58025,8 +58413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -58079,8 +58467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -58109,8 +58497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *255 - - *256 + - *259 + - *260 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -58148,7 +58536,7 @@ paths: application/json: schema: type: array - items: &381 + items: &385 title: Collaborator description: Collaborator type: object @@ -58341,8 +58729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '204': @@ -58385,8 +58773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 requestBody: required: false @@ -58413,7 +58801,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &445 + schema: &449 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -58634,8 +59022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '204': @@ -58665,8 +59053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *255 - - *256 + - *259 + - *260 - *127 responses: '200': @@ -58687,7 +59075,7 @@ paths: user: anyOf: - type: 'null' - - *381 + - *385 required: - permission - role_name @@ -58741,8 +59129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -58752,7 +59140,7 @@ paths: application/json: schema: type: array - items: &382 + items: &386 title: Commit Comment description: Commit Comment type: object @@ -58810,7 +59198,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &389 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58869,17 +59257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *382 + schema: *386 examples: - default: &386 + default: &390 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58936,8 +59324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -58960,7 +59348,7 @@ paths: description: Response content: application/json: - schema: *382 + schema: *386 examples: default: value: @@ -59011,8 +59399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -59034,8 +59422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59062,9 +59450,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -59085,8 +59473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -59119,16 +59507,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -59150,10 +59538,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -59202,8 +59590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *255 - - *256 + - *259 + - *260 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -59259,9 +59647,9 @@ paths: application/json: schema: type: array - items: *383 + items: *387 examples: - default: &493 + default: &497 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -59355,9 +59743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *255 - - *256 - - &384 + - *259 + - *260 + - &388 name: commit_sha description: The SHA of the commit. in: path @@ -59429,9 +59817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 - *17 - *19 responses: @@ -59441,9 +59829,9 @@ paths: application/json: schema: type: array - items: *382 + items: *386 examples: - default: *385 + default: *389 headers: Link: *56 x-github: @@ -59471,9 +59859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 requestBody: required: true content: @@ -59508,9 +59896,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *386 examples: - default: *386 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59538,9 +59926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 - *17 - *19 responses: @@ -59550,7 +59938,7 @@ paths: application/json: schema: type: array - items: &484 + items: &488 title: Pull Request Simple description: Pull Request Simple type: object @@ -59670,7 +60058,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 active_lock_reason: type: - string @@ -59725,7 +60113,7 @@ paths: type: - array - 'null' - items: *178 + items: *179 head: type: object properties: @@ -59769,7 +60157,7 @@ paths: _links: type: object properties: - comments: &388 + comments: &392 title: Link description: Hypermedia Link type: object @@ -59778,13 +60166,13 @@ paths: type: string required: - href - commits: *388 - statuses: *388 - html: *388 - issue: *388 - review_comments: *388 - review_comment: *388 - self: *388 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -59795,7 +60183,7 @@ paths: - review_comment - self author_association: *59 - auto_merge: &486 + auto_merge: &490 title: Auto merge description: The status of auto merging a pull request. type: @@ -59860,7 +60248,7 @@ paths: - author_association - auto_merge examples: - default: &485 + default: &489 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -60397,11 +60785,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 - - &389 + - &393 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)" @@ -60416,9 +60804,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *387 examples: - default: &472 + default: &476 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60531,11 +60919,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *255 - - *256 - - *389 - - *390 - - *391 + - *259 + - *260 + - *393 + - *394 + - *395 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -60569,9 +60957,9 @@ paths: type: integer check_runs: type: array - items: *335 + items: *339 examples: - default: *392 + default: *396 headers: Link: *56 x-github: @@ -60596,9 +60984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -60606,7 +60994,7 @@ paths: schema: type: integer example: 1 - - *390 + - *394 - *17 - *19 responses: @@ -60624,7 +61012,7 @@ paths: type: integer check_suites: type: array - items: *339 + items: *343 examples: default: value: @@ -60824,9 +61212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - *17 - *19 responses: @@ -61028,9 +61416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *255 - - *256 - - *389 + - *259 + - *260 + - *393 - *17 - *19 responses: @@ -61040,7 +61428,7 @@ paths: application/json: schema: type: array - items: &548 + items: &552 title: Status description: The status of a commit. type: object @@ -61121,7 +61509,7 @@ paths: site_admin: false headers: Link: *56 - '301': *267 + '301': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61149,8 +61537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -61183,11 +61571,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *393 + - *397 code_of_conduct_file: anyOf: - type: 'null' - - &394 + - &398 title: Community Health File type: object properties: @@ -61207,19 +61595,19 @@ paths: contributing: anyOf: - type: 'null' - - *394 + - *398 readme: anyOf: - type: 'null' - - *394 + - *398 issue_template: anyOf: - type: 'null' - - *394 + - *398 pull_request_template: anyOf: - type: 'null' - - *394 + - *398 required: - code_of_conduct - code_of_conduct_file @@ -61348,8 +61736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 - name: basehead @@ -61397,8 +61785,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *383 - merge_base_commit: *383 + base_commit: *387 + merge_base_commit: *387 status: type: string enum: @@ -61422,10 +61810,10 @@ paths: - 6 commits: type: array - items: *383 + items: *387 files: type: array - items: *395 + items: *399 required: - url - html_url @@ -61711,8 +62099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -61863,7 +62251,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &396 + response-if-content-is-a-file: &400 summary: Response if content is a file value: type: file @@ -62000,7 +62388,7 @@ paths: - size - type - url - - &498 + - &502 title: Content File description: Content File type: object @@ -62218,7 +62606,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *396 + response-if-content-is-a-file: *400 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -62287,7 +62675,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *397 + '302': *401 '304': *35 x-github: githubCloudOnly: false @@ -62310,8 +62698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -62406,7 +62794,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &402 title: File Commit description: File Commit type: object @@ -62562,7 +62950,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *402 examples: example-for-creating-a-file: value: @@ -62616,7 +63004,7 @@ paths: schema: oneOf: - *3 - - &427 + - &431 description: Repository rule violation was detected type: object properties: @@ -62637,7 +63025,7 @@ paths: items: type: object properties: - placeholder_id: &540 + placeholder_id: &544 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -62669,8 +63057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *255 - - *256 + - *259 + - *260 - name: path description: path parameter in: path @@ -62731,7 +63119,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *402 examples: default: value: @@ -62786,8 +63174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *255 - - *256 + - *259 + - *260 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -62911,8 +63299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *142 - *143 - *144 @@ -62925,6 +63313,7 @@ paths: type: string - *146 - *147 + - *148 - *46 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -62944,8 +63333,8 @@ paths: default: 30 - *37 - *38 - - *148 - *149 + - *150 responses: '200': description: Response @@ -62953,7 +63342,7 @@ paths: application/json: schema: type: array - items: &401 + items: &405 type: object description: A Dependabot alert. properties: @@ -62988,7 +63377,7 @@ paths: - development - runtime - - security_advisory: *399 + security_advisory: *403 security_vulnerability: *49 url: *54 html_url: *55 @@ -63019,7 +63408,7 @@ paths: dismissal. maxLength: 280 fixed_at: *128 - auto_dismissed_at: *400 + auto_dismissed_at: *404 required: - number - state @@ -63246,9 +63635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *255 - - *256 - - &402 + - *259 + - *260 + - &406 name: alert_number in: path description: |- @@ -63263,7 +63652,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *405 examples: default: value: @@ -63373,9 +63762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *255 - - *256 - - *402 + - *259 + - *260 + - *406 requestBody: required: true content: @@ -63420,7 +63809,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *405 examples: default: value: @@ -63549,8 +63938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -63568,7 +63957,7 @@ paths: type: integer secrets: type: array - items: &405 + items: &409 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -63622,16 +64011,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *403 + schema: *407 examples: - default: *404 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63651,15 +64040,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '200': description: Response content: application/json: - schema: *405 + schema: *409 examples: default: value: @@ -63685,8 +64074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 requestBody: required: true @@ -63739,8 +64128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *255 - - *256 + - *259 + - *260 - *122 responses: '204': @@ -63763,8 +64152,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: - - *255 - - *256 + - *259 + - *260 - 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 @@ -63938,8 +64327,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -64199,8 +64588,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -64283,7 +64672,7 @@ paths: - version - url additionalProperties: false - metadata: &406 + metadata: &410 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -64322,7 +64711,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *406 + metadata: *410 resolved: type: object description: A collection of resolved package dependencies. @@ -64336,7 +64725,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *406 + metadata: *410 relationship: type: string description: A notation of whether a dependency is requested @@ -64469,8 +64858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *255 - - *256 + - *259 + - *260 - name: sha description: The SHA recorded at creation time. in: query @@ -64511,9 +64900,9 @@ paths: application/json: schema: type: array - items: *407 + items: *411 examples: - default: *408 + default: *412 headers: Link: *56 x-github: @@ -64579,8 +64968,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -64662,7 +65051,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *411 examples: simple-example: summary: Simple example @@ -64735,9 +65124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *255 - - *256 - - &409 + - *259 + - *260 + - &413 name: deployment_id description: deployment_id parameter in: path @@ -64749,7 +65138,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *411 examples: default: value: @@ -64814,9 +65203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 responses: '204': description: Response @@ -64838,9 +65227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 - *17 - *19 responses: @@ -64850,7 +65239,7 @@ paths: application/json: schema: type: array - items: &410 + items: &414 title: Deployment Status description: The status of a deployment. type: object @@ -65014,9 +65403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 requestBody: required: true content: @@ -65091,9 +65480,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *414 examples: - default: &411 + default: &415 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -65149,9 +65538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *255 - - *256 - - *409 + - *259 + - *260 + - *413 - name: status_id in: path required: true @@ -65162,9 +65551,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *414 examples: - default: *411 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -65189,8 +65578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -65247,8 +65636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -65266,7 +65655,7 @@ paths: - 5 environments: type: array - items: &413 + items: &417 title: Environment description: Details of a deployment environment type: object @@ -65328,7 +65717,7 @@ paths: type: string examples: - wait_timer - wait_timer: &415 + wait_timer: &419 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -65370,11 +65759,11 @@ paths: items: type: object properties: - type: *412 + type: *416 reviewer: anyOf: - *4 - - *178 + - *179 required: - id - node_id @@ -65397,7 +65786,7 @@ paths: - id - node_id - type - deployment_branch_policy: &416 + deployment_branch_policy: &420 type: - object - 'null' @@ -65514,9 +65903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *255 - - *256 - - &414 + - *259 + - *260 + - &418 name: environment_name in: path required: true @@ -65529,9 +65918,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *417 examples: - default: &417 + default: &421 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -65615,9 +66004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: false content: @@ -65627,7 +66016,7 @@ paths: - object - 'null' properties: - wait_timer: *415 + wait_timer: *419 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -65646,14 +66035,14 @@ paths: items: type: object properties: - type: *412 + type: *416 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *416 + deployment_branch_policy: *420 additionalProperties: false examples: default: @@ -65673,9 +66062,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *417 examples: - default: *417 + default: *421 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -65699,9 +66088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 responses: '204': description: Default response @@ -65726,9 +66115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *17 - *19 responses: @@ -65747,7 +66136,7 @@ paths: - 2 branch_policies: type: array - items: &418 + items: &422 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -65808,9 +66197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: true content: @@ -65858,9 +66247,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - example-wildcard: &419 + example-wildcard: &423 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -65902,10 +66291,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - &420 + - *259 + - *260 + - *418 + - &424 name: branch_policy_id in: path required: true @@ -65917,9 +66306,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - default: *419 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65938,10 +66327,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - *420 + - *259 + - *260 + - *418 + - *424 requestBody: required: true content: @@ -65970,9 +66359,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *422 examples: - default: *419 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65991,10 +66380,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *255 - - *256 - - *414 - - *420 + - *259 + - *260 + - *418 + - *424 responses: '204': description: Response @@ -66019,9 +66408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 responses: '200': description: List of deployment protection rules @@ -66038,7 +66427,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &421 + items: &425 title: Deployment protection rule description: Deployment protection rule type: object @@ -66060,7 +66449,7 @@ paths: for the environment. examples: - true - app: &422 + app: &426 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -66163,9 +66552,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: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 requestBody: content: application/json: @@ -66186,9 +66575,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *421 + schema: *425 examples: - default: &423 + default: &427 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -66223,9 +66612,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: - - *414 - - *256 - - *255 + - *418 + - *260 + - *259 - *19 - *17 responses: @@ -66245,7 +66634,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *422 + items: *426 examples: default: value: @@ -66280,10 +66669,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *255 - - *256 - - *414 - - &424 + - *259 + - *260 + - *418 + - &428 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -66295,9 +66684,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *425 examples: - default: *423 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66318,10 +66707,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *414 - - *256 - - *255 - - *424 + - *418 + - *260 + - *259 + - *428 responses: '204': description: Response @@ -66347,9 +66736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *17 - *19 responses: @@ -66367,9 +66756,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *305 examples: - default: *302 + default: *306 headers: Link: *56 x-github: @@ -66394,17 +66783,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 responses: '200': description: Response content: application/json: - schema: *303 + schema: *307 examples: - default: *304 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66426,18 +66815,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 responses: '200': description: Response content: application/json: - schema: *301 + schema: *305 examples: - default: *425 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66459,9 +66848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 requestBody: required: true @@ -66519,9 +66908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *122 responses: '204': @@ -66547,10 +66936,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *255 - - *256 - - *414 - - *277 + - *259 + - *260 + - *418 + - *281 - *19 responses: '200': @@ -66567,9 +66956,9 @@ paths: type: integer variables: type: array - items: *305 + items: *309 examples: - default: *306 + default: *310 headers: Link: *56 x-github: @@ -66592,9 +66981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 requestBody: required: true content: @@ -66646,18 +67035,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *255 - - *256 - - *414 + - *259 + - *260 + - *418 - *125 responses: '200': description: Response content: application/json: - schema: *305 + schema: *309 examples: - default: *426 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66678,10 +67067,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 - - *414 + - *418 requestBody: required: true content: @@ -66723,10 +67112,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *255 - - *256 + - *259 + - *260 - *125 - - *414 + - *418 responses: '204': description: Response @@ -66748,8 +67137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -66826,8 +67215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *255 - - *256 + - *259 + - *260 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -66986,8 +67375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -67020,9 +67409,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 '400': *14 '422': *15 '403': *27 @@ -67043,8 +67432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67104,7 +67493,7 @@ paths: schema: oneOf: - *92 - - *427 + - *431 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67129,8 +67518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *255 - - *256 + - *259 + - *260 - name: file_sha in: path required: true @@ -67230,8 +67619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67340,7 +67729,7 @@ paths: description: Response content: application/json: - schema: &428 + schema: &432 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -67566,15 +67955,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *255 - - *256 - - *384 + - *259 + - *260 + - *388 responses: '200': description: Response content: application/json: - schema: *428 + schema: *432 examples: default: value: @@ -67630,9 +68019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *255 - - *256 - - &429 + - *259 + - *260 + - &433 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. @@ -67649,7 +68038,7 @@ paths: application/json: schema: type: array - items: &430 + items: &434 title: Git Reference description: Git references within a repository type: object @@ -67725,17 +68114,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 responses: '200': description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: &431 + default: &435 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -67764,8 +68153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67794,9 +68183,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: *431 + default: *435 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -67822,9 +68211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 requestBody: required: true content: @@ -67853,9 +68242,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *434 examples: - default: *431 + default: *435 '422': *15 '409': *44 x-github: @@ -67873,9 +68262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *255 - - *256 - - *429 + - *259 + - *260 + - *433 responses: '204': description: Response @@ -67928,8 +68317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -67996,7 +68385,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &437 title: Git Tag description: Metadata for a Git tag type: object @@ -68052,7 +68441,7 @@ paths: - sha - type - url - verification: *432 + verification: *436 required: - sha - url @@ -68062,7 +68451,7 @@ paths: - tag - message examples: - default: &434 + default: &438 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -68135,8 +68524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *255 - - *256 + - *259 + - *260 - name: tag_sha in: path required: true @@ -68147,9 +68536,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *437 examples: - default: *434 + default: *438 '404': *6 '409': *44 x-github: @@ -68173,8 +68562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -68248,7 +68637,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &439 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -68366,8 +68755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *255 - - *256 + - *259 + - *260 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -68390,7 +68779,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *439 examples: default-response: summary: Default response @@ -68449,8 +68838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -68460,7 +68849,7 @@ paths: application/json: schema: type: array - items: &436 + items: &440 title: Webhook description: Webhooks for repositories. type: object @@ -68523,7 +68912,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &647 + last_response: &651 title: Hook Response type: object properties: @@ -68600,8 +68989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -68654,9 +69043,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: &437 + default: &441 value: type: Repository id: 12345678 @@ -68704,17 +69093,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '200': description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: *437 + default: *441 '404': *6 x-github: githubCloudOnly: false @@ -68734,9 +69123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 requestBody: required: true content: @@ -68781,9 +69170,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *440 examples: - default: *437 + default: *441 '422': *15 '404': *6 x-github: @@ -68804,9 +69193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -68830,9 +69219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '200': description: Response @@ -68859,9 +69248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 requestBody: required: false content: @@ -68905,11 +69294,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 - - *17 + - *259 + - *260 - *156 + - *17 + - *157 responses: '200': description: Response @@ -68917,9 +69306,9 @@ paths: application/json: schema: type: array - items: *157 + items: *158 examples: - default: *158 + default: *159 '400': *14 '422': *15 x-github: @@ -68938,18 +69327,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 - *16 responses: '200': description: Response content: application/json: - schema: *159 + schema: *160 examples: - default: *160 + default: *161 '400': *14 '422': *15 x-github: @@ -68968,9 +69357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 - *16 responses: '202': *45 @@ -68993,9 +69382,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -69020,9 +69409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *255 - - *256 - - *155 + - *259 + - *260 + - *156 responses: '204': description: Response @@ -69080,14 +69469,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &438 + schema: &442 title: Import description: A repository import from an external source. type: object @@ -69194,7 +69583,7 @@ paths: - html_url - authors_url examples: - default: &441 + default: &445 value: vcs: subversion use_lfs: true @@ -69210,7 +69599,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': &439 + '503': &443 description: Unavailable due to service under maintenance. content: application/json: @@ -69239,8 +69628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -69288,7 +69677,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: default: value: @@ -69313,7 +69702,7 @@ paths: type: string '422': *15 '404': *6 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69341,8 +69730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -69394,7 +69783,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: example-1: summary: Example 1 @@ -69442,7 +69831,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': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69465,12 +69854,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69496,9 +69885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *255 - - *256 - - &597 + - *259 + - *260 + - &601 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -69512,7 +69901,7 @@ paths: application/json: schema: type: array - items: &440 + items: &444 title: Porter Author description: Porter Author type: object @@ -69566,7 +69955,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': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69591,8 +69980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *255 - - *256 + - *259 + - *260 - name: author_id in: path required: true @@ -69622,7 +70011,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *444 examples: default: value: @@ -69635,7 +70024,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69659,8 +70048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69701,7 +70090,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69729,8 +70118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -69757,11 +70146,11 @@ paths: description: Response content: application/json: - schema: *438 + schema: *442 examples: - default: *441 + default: *445 '422': *15 - '503': *439 + '503': *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69784,8 +70173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69793,8 +70182,8 @@ paths: application/json: schema: *20 examples: - default: *442 - '301': *267 + default: *446 + '301': *271 '404': *6 x-github: githubCloudOnly: false @@ -69814,8 +70203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -69823,12 +70212,12 @@ paths: application/json: schema: anyOf: - - *173 + - *174 - type: object properties: {} additionalProperties: false examples: - default: &444 + default: &448 value: limit: collaborators_only origin: repository @@ -69853,13 +70242,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: application/json: - schema: *443 + schema: *447 examples: default: summary: Example request body @@ -69871,9 +70260,9 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: - default: *444 + default: *448 '409': description: Response x-github: @@ -69895,8 +70284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -69919,8 +70308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -69930,9 +70319,9 @@ paths: application/json: schema: type: array - items: *445 + items: *449 examples: - default: &590 + default: &594 value: - id: 1 repository: @@ -70063,9 +70452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *255 - - *256 - - *177 + - *259 + - *260 + - *178 requestBody: required: false content: @@ -70094,7 +70483,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *449 examples: default: value: @@ -70225,9 +70614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *255 - - *256 - - *177 + - *259 + - *260 + - *178 responses: '204': description: Response @@ -70258,8 +70647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *255 - - *256 + - *259 + - *260 - 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 @@ -70299,7 +70688,7 @@ paths: required: false schema: type: string - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -70324,7 +70713,7 @@ paths: type: array items: *73 examples: - default: &454 + default: &458 value: - id: 1 node_id: MDU6SXNzdWUx @@ -70472,7 +70861,7 @@ paths: state_reason: completed headers: Link: *56 - '301': *267 + '301': *271 '422': *15 '404': *6 x-github: @@ -70501,8 +70890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -70585,7 +70974,7 @@ paths: application/json: schema: *73 examples: - default: &449 + default: &453 value: id: 1 node_id: MDU6SXNzdWUx @@ -70741,7 +71130,7 @@ paths: '422': *15 '503': *61 '404': *6 - '410': *264 + '410': *268 x-github: triggersNotification: true githubCloudOnly: false @@ -70769,8 +71158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *82 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -70791,9 +71180,9 @@ paths: application/json: schema: type: array - items: *446 + items: *450 examples: - default: &451 + default: &455 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70851,17 +71240,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: &447 + default: &451 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70915,8 +71304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -70939,9 +71328,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: *447 + default: *451 '422': *15 x-github: githubCloudOnly: false @@ -70959,8 +71348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -70981,8 +71370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71009,9 +71398,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -71032,8 +71421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -71066,16 +71455,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -71097,10 +71486,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -71120,8 +71509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -71131,7 +71520,7 @@ paths: application/json: schema: type: array - items: &448 + items: &452 title: Issue Event description: Issue Event type: object @@ -71211,7 +71600,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *178 + requested_team: *179 dismissed_review: title: Issue Event Dismissed Review type: object @@ -71470,8 +71859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *255 - - *256 + - *259 + - *260 - name: event_id in: path required: true @@ -71482,7 +71871,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *452 examples: default: value: @@ -71675,7 +72064,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *264 + '410': *268 '403': *27 x-github: githubCloudOnly: false @@ -71709,9 +72098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *255 - - *256 - - &450 + - *259 + - *260 + - &454 name: issue_number description: The number that identifies the issue. in: path @@ -71725,10 +72114,10 @@ paths: application/json: schema: *73 examples: - default: *449 - '301': *267 + default: *453 + '301': *271 '404': *6 - '410': *264 + '410': *268 '304': *35 x-github: githubCloudOnly: false @@ -71753,9 +72142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -71865,13 +72254,13 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 '422': *15 '503': *61 '403': *27 - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71889,9 +72278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -71919,7 +72308,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71935,9 +72324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: content: application/json: @@ -71964,7 +72353,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71986,9 +72375,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: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - name: assignee in: path required: true @@ -72028,9 +72417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *63 - *17 - *19 @@ -72041,13 +72430,13 @@ paths: application/json: schema: type: array - items: *446 + items: *450 examples: - default: *451 + default: *455 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72076,9 +72465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -72100,16 +72489,16 @@ paths: description: Response content: application/json: - schema: *446 + schema: *450 examples: - default: *447 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *264 + '410': *268 '422': *15 '404': *6 x-github: @@ -72129,9 +72518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -72145,7 +72534,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &455 + - &459 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -72194,7 +72583,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &460 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -72322,7 +72711,7 @@ paths: - performed_via_github_app - assignee - assigner - - &457 + - &461 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -72368,7 +72757,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &462 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -72414,7 +72803,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &463 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -72463,7 +72852,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &460 + - &464 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -72492,7 +72881,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *178 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -72505,7 +72894,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &461 + - &465 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -72534,7 +72923,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *178 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -72547,7 +72936,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &462 + - &466 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -72603,7 +72992,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &463 + - &467 title: Locked Issue Event description: Locked Issue Event type: object @@ -72648,7 +73037,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &464 + - &468 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -72709,7 +73098,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &469 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -72770,7 +73159,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &470 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -72831,7 +73220,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &471 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -72924,7 +73313,7 @@ paths: color: red headers: Link: *56 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72941,9 +73330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -72953,7 +73342,7 @@ paths: application/json: schema: type: array - items: &452 + items: &456 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73008,7 +73397,7 @@ paths: - color - default examples: - default: &453 + default: &457 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73026,9 +73415,9 @@ paths: default: false headers: Link: *56 - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73045,9 +73434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73106,12 +73495,12 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 - '301': *267 + default: *457 + '301': *271 '404': *6 - '410': *264 + '410': *268 '422': *15 x-github: githubCloudOnly: false @@ -73128,9 +73517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73190,12 +73579,12 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 - '301': *267 + default: *457 + '301': *271 '404': *6 - '410': *264 + '410': *268 '422': *15 x-github: githubCloudOnly: false @@ -73212,15 +73601,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 responses: '204': description: Response - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73239,9 +73628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - name: name in: path required: true @@ -73254,7 +73643,7 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: default: value: @@ -73265,9 +73654,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *267 + '301': *271 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73287,9 +73676,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: false content: @@ -73318,7 +73707,7 @@ paths: '204': description: Response '403': *27 - '410': *264 + '410': *268 '404': *6 '422': *15 x-github: @@ -73336,9 +73725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 responses: '204': description: Response @@ -73360,9 +73749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - 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. @@ -73388,13 +73777,13 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73412,9 +73801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73446,16 +73835,16 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -73477,10 +73866,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: + - *259 + - *260 + - *454 - *255 - - *256 - - *450 - - *251 responses: '204': description: Response @@ -73509,9 +73898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73521,7 +73910,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -73535,7 +73924,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -73568,9 +73957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -73582,11 +73971,11 @@ paths: type: array items: *73 examples: - default: *454 + default: *458 headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73614,9 +74003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73626,7 +74015,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -73644,14 +74034,14 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *264 + '410': *268 '422': *15 '404': *6 x-github: @@ -73671,9 +74061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 requestBody: required: true content: @@ -73706,7 +74096,7 @@ paths: application/json: schema: *73 examples: - default: *449 + default: *453 '403': *27 '404': *6 '422': *7 @@ -73728,9 +74118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *255 - - *256 - - *450 + - *259 + - *260 + - *454 - *17 - *19 responses: @@ -73745,10 +74135,6 @@ paths: description: Timeline Event type: object anyOf: - - *455 - - *456 - - *457 - - *458 - *459 - *460 - *461 @@ -73758,6 +74144,10 @@ paths: - *465 - *466 - *467 + - *468 + - *469 + - *470 + - *471 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -74080,7 +74470,7 @@ paths: type: string comments: type: array - items: &487 + items: &491 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -74318,7 +74708,7 @@ paths: type: string comments: type: array - items: *382 + items: *386 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -74593,7 +74983,7 @@ paths: headers: Link: *56 '404': *6 - '410': *264 + '410': *268 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74610,8 +75000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -74621,7 +75011,7 @@ paths: application/json: schema: type: array - items: &468 + items: &472 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -74688,8 +75078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -74725,9 +75115,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *472 examples: - default: &469 + default: &473 value: id: 1 key: ssh-rsa AAA... @@ -74761,9 +75151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *255 - - *256 - - &470 + - *259 + - *260 + - &474 name: key_id description: The unique identifier of the key. in: path @@ -74775,9 +75165,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *472 examples: - default: *469 + default: *473 '404': *6 x-github: githubCloudOnly: false @@ -74795,9 +75185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *255 - - *256 - - *470 + - *259 + - *260 + - *474 responses: '204': description: Response @@ -74817,8 +75207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -74828,9 +75218,9 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 + default: *457 headers: Link: *56 '404': *6 @@ -74851,8 +75241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -74888,9 +75278,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: - default: &471 + default: &475 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74922,8 +75312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -74934,9 +75324,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: - default: *471 + default: *475 '404': *6 x-github: githubCloudOnly: false @@ -74953,8 +75343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -74993,7 +75383,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *456 examples: default: value: @@ -75019,8 +75409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *255 - - *256 + - *259 + - *260 - name: name in: path required: true @@ -75046,8 +75436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -75086,9 +75476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *255 - - *256 - - *360 + - *259 + - *260 + - *364 responses: '200': description: Response @@ -75235,8 +75625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75301,8 +75691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75336,9 +75726,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *383 + schema: *387 examples: - default: *472 + default: *476 '204': description: Response when already merged '404': @@ -75363,8 +75753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -75405,7 +75795,7 @@ paths: application/json: schema: type: array - items: *387 + items: *391 examples: default: value: @@ -75461,8 +75851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -75502,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: &473 + default: &477 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -75563,9 +75953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *255 - - *256 - - &474 + - *259 + - *260 + - &478 name: milestone_number description: The number that identifies the milestone. in: path @@ -75577,9 +75967,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: *473 + default: *477 '404': *6 x-github: githubCloudOnly: false @@ -75596,9 +75986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 requestBody: required: false content: @@ -75636,9 +76026,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *391 examples: - default: *473 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75654,9 +76044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 responses: '204': description: Response @@ -75677,9 +76067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *255 - - *256 - - *474 + - *259 + - *260 + - *478 - *17 - *19 responses: @@ -75689,9 +76079,9 @@ paths: application/json: schema: type: array - items: *452 + items: *456 examples: - default: *453 + default: *457 headers: Link: *56 x-github: @@ -75710,12 +76100,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *255 - - *256 - - *475 - - *476 + - *259 + - *260 + - *479 + - *480 - *63 - - *477 + - *481 - *17 - *19 responses: @@ -75727,7 +76117,7 @@ paths: type: array items: *85 examples: - default: *478 + default: *482 headers: Link: *56 x-github: @@ -75751,8 +76141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -75810,14 +76200,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &479 + schema: &483 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -75961,7 +76351,7 @@ paths: - custom_404 - public examples: - default: &480 + default: &484 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76002,8 +76392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76058,9 +76448,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *483 examples: - default: *480 + default: *484 '422': *15 '409': *44 x-github: @@ -76083,8 +76473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76184,8 +76574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -76211,8 +76601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -76222,7 +76612,7 @@ paths: application/json: schema: type: array - items: &481 + items: &485 title: Page Build description: Page Build type: object @@ -76314,8 +76704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *255 - - *256 + - *259 + - *260 responses: '201': description: Response @@ -76362,16 +76752,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *481 + schema: *485 examples: - default: &482 + default: &486 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -76419,8 +76809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *255 - - *256 + - *259 + - *260 - name: build_id in: path required: true @@ -76431,9 +76821,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *485 examples: - default: *482 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76453,8 +76843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -76563,9 +76953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *255 - - *256 - - &483 + - *259 + - *260 + - &487 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -76623,9 +77013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *255 - - *256 - - *483 + - *259 + - *260 + - *487 responses: '204': *136 '404': *6 @@ -76652,8 +77042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -76948,8 +77338,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: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Private vulnerability reporting status @@ -76986,8 +77376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': *136 '422': *14 @@ -77008,8 +77398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': *136 '422': *14 @@ -77032,8 +77422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: Indicates the state of the projects to return. in: query @@ -77054,7 +77444,7 @@ paths: application/json: schema: type: array - items: *210 + items: *211 examples: default: value: @@ -77094,7 +77484,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -77114,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77141,13 +77531,13 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: - default: *263 + default: *267 '401': *23 '403': *27 '404': *6 - '410': *264 + '410': *268 '422': *7 x-github: githubCloudOnly: false @@ -77167,8 +77557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -77176,7 +77566,7 @@ paths: application/json: schema: type: array - items: *215 + items: *216 examples: default: value: @@ -77207,8 +77597,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77220,7 +77610,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *215 + items: *216 required: - properties examples: @@ -77270,8 +77660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *255 - - *256 + - *259 + - *260 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -77331,9 +77721,9 @@ paths: application/json: schema: type: array - items: *484 + items: *488 examples: - default: *485 + default: *489 headers: Link: *56 '304': *35 @@ -77365,8 +77755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -77433,7 +77823,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &493 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -77562,7 +77952,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 active_lock_reason: type: - string @@ -77617,7 +78007,7 @@ paths: type: - array - 'null' - items: *193 + items: *194 head: type: object properties: @@ -77655,14 +78045,14 @@ paths: _links: type: object properties: - comments: *388 - commits: *388 - statuses: *388 - html: *388 - issue: *388 - review_comments: *388 - review_comment: *388 - self: *388 + comments: *392 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -77673,7 +78063,7 @@ paths: - review_comment - self author_association: *59 - auto_merge: *486 + auto_merge: *490 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -77775,7 +78165,7 @@ paths: - merged_by - review_comments examples: - default: &490 + default: &494 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -78302,8 +78692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *255 - - *256 + - *259 + - *260 - name: sort in: query required: false @@ -78332,9 +78722,9 @@ paths: application/json: schema: type: array - items: *487 + items: *491 examples: - default: &492 + default: &496 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -78411,17 +78801,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '200': description: Response content: application/json: - schema: *487 + schema: *491 examples: - default: &488 + default: &492 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -78496,8 +78886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -78520,9 +78910,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: - default: *488 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78538,8 +78928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 + - *259 + - *260 - *72 responses: '204': @@ -78561,8 +78951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78589,9 +78979,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -78612,8 +79002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *255 - - *256 + - *259 + - *260 - *72 requestBody: required: true @@ -78646,16 +79036,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -78677,10 +79067,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *255 - - *256 + - *259 + - *260 - *72 - - *251 + - *255 responses: '204': description: Response @@ -78723,9 +79113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *255 - - *256 - - &491 + - *259 + - *260 + - &495 name: pull_number description: The number that identifies the pull request. in: path @@ -78738,9 +79128,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *489 + schema: *493 examples: - default: *490 + default: *494 '304': *35 '404': *6 '406': @@ -78775,9 +79165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -78819,9 +79209,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *493 examples: - default: *490 + default: *494 '422': *15 '403': *27 x-github: @@ -78843,9 +79233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -78906,17 +79296,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -78946,9 +79336,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *82 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -78969,9 +79359,9 @@ paths: application/json: schema: type: array - items: *487 + items: *491 examples: - default: *492 + default: *496 headers: Link: *56 x-github: @@ -79004,9 +79394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -79112,7 +79502,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: example-for-a-multi-line-comment: value: @@ -79200,9 +79590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *72 requestBody: required: true @@ -79225,7 +79615,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *491 examples: default: value: @@ -79311,9 +79701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -79323,9 +79713,9 @@ paths: application/json: schema: type: array - items: *383 + items: *387 examples: - default: *493 + default: *497 headers: Link: *56 x-github: @@ -79355,9 +79745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -79367,7 +79757,7 @@ paths: application/json: schema: type: array - items: *395 + items: *399 examples: default: value: @@ -79405,9 +79795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 responses: '204': description: Response if pull request has been merged @@ -79430,9 +79820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -79544,9 +79934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 responses: '200': description: Response @@ -79562,7 +79952,7 @@ paths: items: *4 teams: type: array - items: *178 + items: *179 required: - users - teams @@ -79621,9 +80011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -79660,7 +80050,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *488 examples: default: value: @@ -80196,9 +80586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: true content: @@ -80232,7 +80622,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *488 examples: default: value: @@ -80737,9 +81127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 - *17 - *19 responses: @@ -80749,7 +81139,7 @@ paths: application/json: schema: type: array - items: &494 + items: &498 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -80905,9 +81295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -80997,9 +81387,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: &496 + default: &500 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81062,10 +81452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 - - &495 + - *259 + - *260 + - *495 + - &499 name: review_id description: The unique identifier of the review. in: path @@ -81077,9 +81467,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: &497 + default: &501 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81138,10 +81528,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81164,7 +81554,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: default: value: @@ -81226,18 +81616,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 responses: '200': description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: *496 + default: *500 '422': *7 '404': *6 x-github: @@ -81264,10 +81654,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 - *17 - *19 responses: @@ -81365,9 +81755,9 @@ paths: _links: type: object properties: - self: *388 - html: *388 - pull_request: *388 + self: *392 + html: *392 + pull_request: *392 required: - self - html @@ -81518,10 +81908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81550,7 +81940,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: default: value: @@ -81613,10 +82003,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *255 - - *256 - - *491 + - *259 + - *260 - *495 + - *499 requestBody: required: true content: @@ -81651,9 +82041,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *498 examples: - default: *497 + default: *501 '404': *6 '422': *7 '403': *27 @@ -81675,9 +82065,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *255 - - *256 - - *491 + - *259 + - *260 + - *495 requestBody: required: false content: @@ -81741,8 +82131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *255 - - *256 + - *259 + - *260 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -81755,9 +82145,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *502 examples: - default: &499 + default: &503 value: type: file encoding: base64 @@ -81799,8 +82189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *255 - - *256 + - *259 + - *260 - name: dir description: The alternate path to look for a README file in: path @@ -81820,9 +82210,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *502 examples: - default: *499 + default: *503 '404': *6 '422': *15 x-github: @@ -81844,8 +82234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -81855,7 +82245,7 @@ paths: application/json: schema: type: array - items: &500 + items: &504 title: Release description: A release. type: object @@ -81927,7 +82317,7 @@ paths: author: *4 assets: type: array - items: &501 + items: &505 title: Release Asset description: Data related to a release. type: object @@ -82107,8 +82497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -82184,9 +82574,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: &504 + default: &508 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -82289,9 +82679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *255 - - *256 - - &502 + - *259 + - *260 + - &506 name: asset_id description: The unique identifier of the asset. in: path @@ -82303,9 +82693,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *505 examples: - default: &503 + default: &507 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 @@ -82339,7 +82729,7 @@ paths: type: User site_admin: false '404': *6 - '302': *397 + '302': *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82355,9 +82745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *255 - - *256 - - *502 + - *259 + - *260 + - *506 requestBody: required: false content: @@ -82386,9 +82776,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *505 examples: - default: *503 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82404,9 +82794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *255 - - *256 - - *502 + - *259 + - *260 + - *506 responses: '204': description: Response @@ -82430,8 +82820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -82517,16 +82907,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82543,8 +82933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *255 - - *256 + - *259 + - *260 - name: tag description: tag parameter in: path @@ -82557,9 +82947,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 '404': *6 x-github: githubCloudOnly: false @@ -82581,9 +82971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *255 - - *256 - - &505 + - *259 + - *260 + - &509 name: release_id description: The unique identifier of the release. in: path @@ -82597,9 +82987,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: *500 + schema: *504 examples: - default: *504 + default: *508 '401': description: Unauthorized x-github: @@ -82617,9 +83007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 requestBody: required: false content: @@ -82683,9 +83073,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *504 examples: - default: *504 + default: *508 '404': description: Not Found if the discussion category name is invalid content: @@ -82706,9 +83096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 responses: '204': description: Response @@ -82728,9 +83118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - *17 - *19 responses: @@ -82740,7 +83130,7 @@ paths: application/json: schema: type: array - items: *501 + items: *505 examples: default: value: @@ -82820,9 +83210,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: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - name: name in: query required: true @@ -82848,7 +83238,7 @@ paths: description: Response for successful upload content: application/json: - schema: *501 + schema: *505 examples: response-for-successful-upload: value: @@ -82902,9 +83292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 - 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. @@ -82928,9 +83318,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 '404': *6 @@ -82951,9 +83341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *255 - - *256 - - *505 + - *259 + - *260 + - *509 requestBody: required: true content: @@ -82983,16 +83373,16 @@ paths: description: Reaction exists content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '201': description: Reaction created content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -83014,10 +83404,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: + - *259 + - *260 + - *509 - *255 - - *256 - - *505 - - *251 responses: '204': description: Response @@ -83041,9 +83431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *255 - - *256 - - *323 + - *259 + - *260 + - *327 - *17 - *19 responses: @@ -83059,8 +83449,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *506 - - &508 + - *510 + - &512 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83079,54 +83469,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *507 - - *508 - - allOf: - - *509 - - *508 - - allOf: - - *510 - - *508 - allOf: - *511 - - *508 - - allOf: - *512 - - *508 - allOf: - *513 - - *508 + - *512 - allOf: - *514 - - *508 + - *512 - allOf: - *515 - - *508 + - *512 - allOf: - *516 - - *508 + - *512 - allOf: - *517 - - *508 + - *512 - allOf: - *518 - - *508 + - *512 - allOf: - *519 - - *508 + - *512 - allOf: - *520 - - *508 + - *512 - allOf: - *521 - - *508 + - *512 - allOf: - *522 - - *508 + - *512 - allOf: - *523 - - *508 + - *512 + - allOf: + - *524 + - *512 + - allOf: + - *525 + - *512 + - allOf: + - *526 + - *512 + - allOf: + - *527 + - *512 examples: default: value: @@ -83165,8 +83555,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 - name: includes_parents @@ -83177,7 +83567,7 @@ paths: schema: type: boolean default: true - - *524 + - *528 responses: '200': description: Response @@ -83185,7 +83575,7 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: default: value: @@ -83232,8 +83622,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 requestBody: description: Request body required: true @@ -83253,16 +83643,16 @@ paths: - tag - push default: branch - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *217 + items: *221 + conditions: *218 rules: type: array description: An array of rules within the ruleset. - items: *222 + items: *223 required: - name - enforcement @@ -83293,9 +83683,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: &534 + default: &538 value: id: 42 name: super cool ruleset @@ -83342,12 +83732,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *255 - - *256 - - *525 - - *526 - - *527 - - *528 + - *259 + - *260 + - *529 + - *530 + - *531 + - *532 - *17 - *19 responses: @@ -83355,9 +83745,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *533 examples: - default: *530 + default: *534 '404': *6 '500': *139 x-github: @@ -83378,17 +83768,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *255 - - *256 - - *531 + - *259 + - *260 + - *535 responses: '200': description: Response content: application/json: - schema: *532 + schema: *536 examples: - default: *533 + default: *537 '404': *6 '500': *139 x-github: @@ -83416,8 +83806,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83437,9 +83827,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *534 + default: *538 '404': *6 '500': *139 put: @@ -83457,8 +83847,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83483,16 +83873,16 @@ paths: - branch - tag - push - enforcement: *219 + enforcement: *220 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *220 - conditions: *217 + items: *221 + conditions: *218 rules: description: An array of rules within the ruleset. type: array - items: *222 + items: *223 examples: default: value: @@ -83520,9 +83910,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *534 + default: *538 '404': *6 '500': *139 delete: @@ -83540,8 +83930,8 @@ paths: category: repos subcategory: rules parameters: - - *255 - - *256 + - *259 + - *260 - name: ruleset_id description: The ID of the ruleset. in: path @@ -83569,20 +83959,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *255 - - *256 - - *225 + - *259 + - *260 - *226 - *227 - *228 + - *229 - *46 - *19 - *17 - - *535 - - *536 - - *229 + - *539 + - *540 - *230 - *231 + - *232 responses: '200': description: Response @@ -83590,7 +83980,7 @@ paths: application/json: schema: type: array - items: &539 + items: &543 type: object properties: number: *51 @@ -83606,8 +83996,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *537 - resolution: *538 + state: *541 + resolution: *542 resolved_at: type: - string @@ -83820,15 +84210,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 responses: '200': description: Response content: application/json: - schema: *539 + schema: *543 examples: default: value: @@ -83880,9 +84270,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 requestBody: required: true content: @@ -83890,8 +84280,8 @@ paths: schema: type: object properties: - state: *537 - resolution: *538 + state: *541 + resolution: *542 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -83910,7 +84300,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *543 examples: default: value: @@ -83985,9 +84375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *255 - - *256 - - *354 + - *259 + - *260 + - *358 - *19 - *17 responses: @@ -83998,7 +84388,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &668 + items: &672 type: object properties: type: @@ -84377,8 +84767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -84386,14 +84776,14 @@ paths: schema: type: object properties: - reason: &541 + reason: &545 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *540 + placeholder_id: *544 required: - reason - placeholder_id @@ -84410,7 +84800,7 @@ paths: schema: type: object properties: - reason: *541 + reason: *545 expire_at: type: - string @@ -84454,8 +84844,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: - - *255 - - *256 + - *259 + - *260 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -84470,7 +84860,7 @@ paths: properties: incremental_scans: type: array - items: &542 + items: &546 description: Information on a single scan performed by secret scanning on the repository type: object @@ -84498,15 +84888,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *542 + items: *546 backfill_scans: type: array - items: *542 + items: *546 custom_pattern_backfill_scans: type: array items: allOf: - - *542 + - *546 - type: object properties: pattern_name: @@ -84576,8 +84966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *255 - - *256 + - *259 + - *260 - *46 - name: sort description: The property to sort the results by. @@ -84621,9 +85011,9 @@ paths: application/json: schema: type: array - items: *543 + items: *547 examples: - default: *544 + default: *548 '400': *14 '404': *6 x-github: @@ -84646,8 +85036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -84727,7 +85117,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 required: - login - type @@ -84817,9 +85207,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: &546 + default: &550 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -85052,8 +85442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -85166,7 +85556,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: default: value: @@ -85313,17 +85703,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '200': description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: *546 + default: *550 '403': *27 '404': *6 x-github: @@ -85347,9 +85737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 requestBody: required: true content: @@ -85429,7 +85819,7 @@ paths: login: type: string description: The username of the user credited. - type: *234 + type: *235 required: - login - type @@ -85520,10 +85910,10 @@ paths: description: Response content: application/json: - schema: *543 + schema: *547 examples: - default: *546 - add_credit: *546 + default: *550 + add_credit: *550 '403': *27 '404': *6 '422': @@ -85561,9 +85951,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: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '202': *45 '400': *14 @@ -85590,17 +85980,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *255 - - *256 - - *545 + - *259 + - *260 + - *549 responses: '202': description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 '400': *14 '422': *15 '403': *27 @@ -85626,8 +86016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -85723,8 +86113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -85733,7 +86123,7 @@ paths: application/json: schema: type: array - items: &547 + items: &551 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -85766,8 +86156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -85845,8 +86235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -85940,8 +86330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -86095,8 +86485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -86106,7 +86496,7 @@ paths: application/json: schema: type: array - items: *547 + items: *551 examples: default: value: @@ -86139,8 +86529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *255 - - *256 + - *259 + - *260 - name: sha in: path required: true @@ -86196,7 +86586,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *552 examples: default: value: @@ -86250,8 +86640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86263,7 +86653,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -86283,14 +86673,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &549 + schema: &553 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -86363,8 +86753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: false content: @@ -86390,7 +86780,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *553 examples: default: value: @@ -86417,8 +86807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -86438,8 +86828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86521,8 +86911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -86530,7 +86920,7 @@ paths: application/json: schema: type: array - items: &550 + items: &554 title: Tag protection description: Tag protection type: object @@ -86587,8 +86977,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: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -86611,7 +87001,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *554 examples: default: value: @@ -86642,8 +87032,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: - - *255 - - *256 + - *259 + - *260 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -86680,8 +87070,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *255 - - *256 + - *259 + - *260 - name: ref in: path required: true @@ -86717,8 +87107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *255 - - *256 + - *259 + - *260 - *17 - *19 responses: @@ -86728,9 +87118,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - default: *194 + default: *195 headers: Link: *56 '404': *6 @@ -86750,8 +87140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *255 - - *256 + - *259 + - *260 - *19 - *17 responses: @@ -86759,7 +87149,7 @@ paths: description: Response content: application/json: - schema: &551 + schema: &555 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -86771,7 +87161,7 @@ paths: required: - names examples: - default: &552 + default: &556 value: names: - octocat @@ -86794,8 +87184,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -86826,9 +87216,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *555 examples: - default: *552 + default: *556 '404': *6 '422': *7 x-github: @@ -86849,9 +87239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *255 - - *256 - - &553 + - *259 + - *260 + - &557 name: per description: The time frame to display results for. in: query @@ -86882,7 +87272,7 @@ paths: - 128 clones: type: array - items: &554 + items: &558 title: Traffic type: object properties: @@ -86969,8 +87359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -87064,8 +87454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *255 - - *256 + - *259 + - *260 responses: '200': description: Response @@ -87128,9 +87518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *255 - - *256 - - *553 + - *259 + - *260 + - *557 responses: '200': description: Response @@ -87151,7 +87541,7 @@ paths: - 3782 views: type: array - items: *554 + items: *558 required: - uniques - count @@ -87228,8 +87618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *255 - - *256 + - *259 + - *260 requestBody: required: true content: @@ -87503,8 +87893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -87527,8 +87917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -87550,8 +87940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -87577,8 +87967,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *255 - - *256 + - *259 + - *260 - name: ref in: path required: true @@ -87670,9 +88060,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -87921,7 +88311,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &555 + text_matches: &559 title: Search Result Text Matches type: array items: @@ -88084,7 +88474,7 @@ paths: enum: - author-date - committer-date - - &556 + - &560 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 @@ -88153,7 +88543,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 comment_count: type: integer message: @@ -88172,7 +88562,7 @@ paths: url: type: string format: uri - verification: *432 + verification: *436 required: - author - committer @@ -88187,7 +88577,7 @@ paths: committer: anyOf: - type: 'null' - - *321 + - *325 parents: type: array items: @@ -88204,7 +88594,7 @@ paths: type: number node_id: type: string - text_matches: *555 + text_matches: *559 required: - sha - node_id @@ -88396,7 +88786,7 @@ paths: - interactions - created - updated - - *556 + - *560 - *17 - *19 responses: @@ -88512,7 +88902,7 @@ paths: milestone: anyOf: - type: 'null' - - *387 + - *391 comments: type: integer created_at: @@ -88526,7 +88916,7 @@ paths: - string - 'null' format: date-time - text_matches: *555 + text_matches: *559 pull_request: type: object properties: @@ -88748,7 +89138,7 @@ paths: enum: - created - updated - - *556 + - *560 - *17 - *19 responses: @@ -88793,7 +89183,7 @@ paths: - 'null' score: type: number - text_matches: *555 + text_matches: *559 required: - id - node_id @@ -88878,7 +89268,7 @@ paths: - forks - help-wanted-issues - updated - - *556 + - *560 - *17 - *19 responses: @@ -89115,7 +89505,7 @@ paths: - admin - pull - push - text_matches: *555 + text_matches: *559 temp_clone_token: type: string allow_merge_commit: @@ -89423,7 +89813,7 @@ paths: - string - 'null' format: uri - text_matches: *555 + text_matches: *559 related: type: - array @@ -89616,7 +90006,7 @@ paths: - followers - repositories - joined - - *556 + - *560 - *17 - *19 responses: @@ -89726,7 +90116,7 @@ paths: type: - boolean - 'null' - text_matches: *555 + text_matches: *559 blog: type: - string @@ -89808,7 +90198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &557 + - &561 name: team_id description: The unique identifier of the team. in: path @@ -89820,9 +90210,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 x-github: githubCloudOnly: false @@ -89849,7 +90239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *557 + - *561 requestBody: required: true content: @@ -89913,16 +90303,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '201': description: Response content: application/json: - schema: *240 + schema: *244 examples: - default: *241 + default: *245 '404': *6 '422': *15 '403': *27 @@ -89950,7 +90340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *557 + - *561 responses: '204': description: Response @@ -89981,7 +90371,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *557 + - *561 - *46 - *17 - *19 @@ -89992,9 +90382,9 @@ paths: application/json: schema: type: array - items: *242 + items: *246 examples: - default: *558 + default: *562 headers: Link: *56 x-github: @@ -90023,7 +90413,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *557 + - *561 requestBody: required: true content: @@ -90057,9 +90447,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: triggersNotification: true githubCloudOnly: false @@ -90086,16 +90476,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90120,8 +90510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: false content: @@ -90144,9 +90534,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *559 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90171,8 +90561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 responses: '204': description: Response @@ -90201,8 +90591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *557 - - *244 + - *561 + - *248 - *46 - *17 - *19 @@ -90213,9 +90603,9 @@ paths: application/json: schema: type: array - items: *245 + items: *249 examples: - default: *560 + default: *564 headers: Link: *56 x-github: @@ -90244,8 +90634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: true content: @@ -90267,9 +90657,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: triggersNotification: true githubCloudOnly: false @@ -90296,17 +90686,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 responses: '200': description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *246 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90331,9 +90721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 requestBody: required: true content: @@ -90355,9 +90745,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *249 examples: - default: *561 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90382,9 +90772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 responses: '204': description: Response @@ -90413,9 +90803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 - 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. @@ -90441,9 +90831,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -90472,9 +90862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *557 - - *244 - - *247 + - *561 + - *248 + - *251 requestBody: required: true content: @@ -90506,9 +90896,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90534,8 +90924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 - 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. @@ -90561,9 +90951,9 @@ paths: application/json: schema: type: array - items: *248 + items: *252 examples: - default: *250 + default: *254 headers: Link: *56 x-github: @@ -90592,8 +90982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *557 - - *244 + - *561 + - *248 requestBody: required: true content: @@ -90625,9 +91015,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *252 examples: - default: *249 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90651,7 +91041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -90661,9 +91051,9 @@ paths: application/json: schema: type: array - items: *175 + items: *176 examples: - default: *176 + default: *177 headers: Link: *56 x-github: @@ -90689,7 +91079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *557 + - *561 - name: role description: Filters members returned by their role in the team. in: query @@ -90712,7 +91102,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '404': *6 @@ -90740,7 +91130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90777,7 +91167,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90817,7 +91207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90854,16 +91244,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-user-is-a-team-maintainer: *562 + response-if-user-is-a-team-maintainer: *566 '404': *6 x-github: githubCloudOnly: false @@ -90896,7 +91286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 requestBody: required: false @@ -90922,9 +91312,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *256 examples: - response-if-users-membership-with-team-is-now-pending: *563 + response-if-users-membership-with-team-is-now-pending: *567 '403': description: Forbidden if team synchronization is set up '422': @@ -90958,7 +91348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *557 + - *561 - *127 responses: '204': @@ -90988,7 +91378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -90998,9 +91388,9 @@ paths: application/json: schema: type: array - items: *253 + items: *257 examples: - default: *564 + default: *568 headers: Link: *56 '404': *6 @@ -91027,16 +91417,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *557 - - *254 + - *561 + - *258 responses: '200': description: Response content: application/json: - schema: *253 + schema: *257 examples: - default: *565 + default: *569 '404': description: Not Found if project is not managed by this team x-github: @@ -91061,8 +91451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *557 - - *254 + - *561 + - *258 requestBody: required: false content: @@ -91130,8 +91520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *557 - - *254 + - *561 + - *258 responses: '204': description: Response @@ -91158,7 +91548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -91170,7 +91560,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '404': *6 @@ -91200,15 +91590,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *566 + schema: *570 examples: alternative-response-with-extra-repository-information: value: @@ -91359,9 +91749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 requestBody: required: false content: @@ -91411,9 +91801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *557 - - *255 - - *256 + - *561 + - *259 + - *260 responses: '204': description: Response @@ -91438,7 +91828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *557 + - *561 - *17 - *19 responses: @@ -91448,9 +91838,9 @@ paths: application/json: schema: type: array - items: *178 + items: *179 examples: - response-if-child-teams-exist: *567 + response-if-child-teams-exist: *571 headers: Link: *56 '404': *6 @@ -91483,7 +91873,7 @@ paths: application/json: schema: oneOf: - - &569 + - &573 title: Private User description: Private User type: object @@ -91733,7 +92123,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *568 + - *572 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -91893,7 +92283,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *573 examples: default: value: @@ -91972,7 +92362,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 '304': *35 '404': *6 '403': *27 @@ -92096,9 +92486,9 @@ paths: type: integer codespaces: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 '304': *35 '500': *139 '401': *23 @@ -92237,17 +92627,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -92291,7 +92681,7 @@ paths: type: integer secrets: type: array - items: &570 + items: &574 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92333,7 +92723,7 @@ paths: - visibility - selected_repositories_url examples: - default: *376 + default: *380 headers: Link: *56 x-github: @@ -92411,7 +92801,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *574 examples: default: value: @@ -92557,7 +92947,7 @@ paths: type: array items: *114 examples: - default: *571 + default: *575 '401': *23 '403': *27 '404': *6 @@ -92701,15 +93091,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '304': *35 '500': *139 '401': *23 @@ -92735,7 +93125,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 requestBody: required: false content: @@ -92765,9 +93155,9 @@ paths: description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '401': *23 '403': *27 '404': *6 @@ -92789,7 +93179,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '202': *45 '304': *35 @@ -92818,13 +93208,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '202': description: Response content: application/json: - schema: &572 + schema: &576 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -92877,7 +93267,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &573 + default: &577 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -92909,7 +93299,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *184 + - *185 - name: export_id in: path required: true @@ -92922,9 +93312,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *576 examples: - default: *573 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -92945,7 +93335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *184 + - *185 responses: '200': description: Response @@ -92961,9 +93351,9 @@ paths: type: integer machines: type: array - items: *375 + items: *379 examples: - default: *574 + default: *578 '304': *35 '500': *139 '401': *23 @@ -92992,7 +93382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *184 + - *185 requestBody: required: true content: @@ -93048,11 +93438,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *266 + repository: *270 machine: anyOf: - type: 'null' - - *375 + - *379 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -93849,15 +94239,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '304': *35 '500': *139 '400': *14 @@ -93889,15 +94279,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *182 + schema: *183 examples: - default: *374 + default: *378 '500': *139 '401': *23 '403': *27 @@ -93927,9 +94317,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: &587 + default: &591 value: - id: 197 name: hello_docker @@ -94030,7 +94420,7 @@ paths: application/json: schema: type: array - items: &575 + items: &579 title: Email description: Email type: object @@ -94100,9 +94490,9 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: - default: &589 + default: &593 value: - email: octocat@github.com verified: true @@ -94179,7 +94569,7 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: default: value: @@ -94291,7 +94681,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '304': *35 @@ -94324,7 +94714,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 '304': *35 @@ -94437,7 +94827,7 @@ paths: application/json: schema: type: array - items: &576 + items: &580 title: GPG Key description: A unique encryption key type: object @@ -94582,7 +94972,7 @@ paths: - subkeys - revoked examples: - default: &600 + default: &604 value: - id: 3 name: Octocat's GPG Key @@ -94667,9 +95057,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *580 examples: - default: &577 + default: &581 value: id: 3 name: Octocat's GPG Key @@ -94726,7 +95116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &578 + - &582 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -94738,9 +95128,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *580 examples: - default: *577 + default: *581 '404': *6 '304': *35 '403': *27 @@ -94763,7 +95153,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *578 + - *582 responses: '204': description: Response @@ -94954,7 +95344,7 @@ paths: type: array items: *58 examples: - default: *579 + default: *583 headers: Link: *56 '404': *6 @@ -95039,12 +95429,12 @@ paths: application/json: schema: anyOf: - - *173 + - *174 - type: object properties: {} additionalProperties: false examples: - default: *174 + default: *175 '204': description: Response when there are no restrictions x-github: @@ -95068,7 +95458,7 @@ paths: required: true content: application/json: - schema: *443 + schema: *447 examples: default: value: @@ -95079,7 +95469,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *174 examples: default: value: @@ -95160,7 +95550,7 @@ paths: - closed - all default: open - - *179 + - *180 - name: sort description: What to sort results by. in: query @@ -95185,7 +95575,7 @@ paths: type: array items: *73 examples: - default: *180 + default: *181 headers: Link: *56 '404': *6 @@ -95218,7 +95608,7 @@ paths: application/json: schema: type: array - items: &580 + items: &584 title: Key description: Key type: object @@ -95316,9 +95706,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *584 examples: - default: &581 + default: &585 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95351,15 +95741,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *470 + - *474 responses: '200': description: Response content: application/json: - schema: *580 + schema: *584 examples: - default: *581 + default: *585 '404': *6 '304': *35 '403': *27 @@ -95382,7 +95772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *470 + - *474 responses: '204': description: Response @@ -95415,7 +95805,7 @@ paths: application/json: schema: type: array - items: &582 + items: &586 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -95494,7 +95884,7 @@ paths: - account - plan examples: - default: &583 + default: &587 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -95556,9 +95946,9 @@ paths: application/json: schema: type: array - items: *582 + items: *586 examples: - default: *583 + default: *587 headers: Link: *56 '304': *35 @@ -95598,7 +95988,7 @@ paths: application/json: schema: type: array - items: *186 + items: *187 examples: default: value: @@ -95706,7 +96096,7 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: default: value: @@ -95789,7 +96179,7 @@ paths: description: Response content: application/json: - schema: *186 + schema: *187 examples: default: value: @@ -95857,7 +96247,7 @@ paths: application/json: schema: type: array - items: *188 + items: *189 examples: default: value: @@ -96119,7 +96509,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -96299,7 +96689,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *189 + - *190 - name: exclude in: query required: false @@ -96312,7 +96702,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *189 examples: default: value: @@ -96506,7 +96896,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *189 + - *190 responses: '302': description: Response @@ -96532,7 +96922,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *189 + - *190 responses: '204': description: Response @@ -96561,8 +96951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *189 - - *584 + - *190 + - *588 responses: '204': description: Response @@ -96586,7 +96976,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *189 + - *190 - *17 - *19 responses: @@ -96598,7 +96988,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '404': *6 @@ -96635,7 +97025,7 @@ paths: type: array items: *141 examples: - default: *585 + default: *589 headers: Link: *56 '304': *35 @@ -96677,7 +97067,7 @@ paths: - docker - nuget - container - - *586 + - *590 - *19 - *17 responses: @@ -96687,10 +97077,10 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 - '400': *588 + default: *591 + '400': *592 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -96710,16 +97100,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 responses: '200': description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: &601 + default: &605 value: id: 40201 name: octo-name @@ -96832,8 +97222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 responses: '204': description: Response @@ -96863,8 +97253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *197 - *198 + - *199 - name: token description: package token schema: @@ -96896,8 +97286,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: - - *197 - *198 + - *199 - *19 - *17 - name: state @@ -96917,7 +97307,7 @@ paths: application/json: schema: type: array - items: *199 + items: *200 examples: default: value: @@ -96966,15 +97356,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '200': description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -97010,9 +97400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '204': description: Response @@ -97042,9 +97432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 responses: '204': description: Response @@ -97102,7 +97492,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *211 examples: default: value: @@ -97171,9 +97561,9 @@ paths: application/json: schema: type: array - items: *575 + items: *579 examples: - default: *589 + default: *593 headers: Link: *56 '304': *35 @@ -97286,7 +97676,7 @@ paths: type: array items: *58 examples: - default: &596 + default: &600 summary: Default response value: - id: 1296269 @@ -97602,9 +97992,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *270 examples: - default: *268 + default: *272 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97642,9 +98032,9 @@ paths: application/json: schema: type: array - items: *445 + items: *449 examples: - default: *590 + default: *594 headers: Link: *56 '304': *35 @@ -97667,7 +98057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *177 + - *178 responses: '204': description: Response @@ -97690,7 +98080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *177 + - *178 responses: '204': description: Response @@ -97723,7 +98113,7 @@ paths: application/json: schema: type: array - items: &591 + items: &595 title: Social account description: Social media account type: object @@ -97740,7 +98130,7 @@ paths: - provider - url examples: - default: &592 + default: &596 value: - provider: twitter url: https://twitter.com/github @@ -97803,9 +98193,9 @@ paths: application/json: schema: type: array - items: *591 + items: *595 examples: - default: *592 + default: *596 '422': *15 '304': *35 '404': *6 @@ -97893,7 +98283,7 @@ paths: application/json: schema: type: array - items: &593 + items: &597 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -97913,7 +98303,7 @@ paths: - title - created_at examples: - default: &608 + default: &612 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -97980,9 +98370,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *597 examples: - default: &594 + default: &598 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98013,7 +98403,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: - - &595 + - &599 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98025,9 +98415,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *597 examples: - default: *594 + default: *598 '404': *6 '304': *35 '403': *27 @@ -98050,7 +98440,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: - - *595 + - *599 responses: '204': description: Response @@ -98079,7 +98469,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &609 + - &613 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 @@ -98104,11 +98494,11 @@ paths: type: array items: *58 examples: - default-response: *596 + default-response: *600 application/vnd.github.v3.star+json: schema: type: array - items: &610 + items: &614 title: Starred Repository description: Starred Repository type: object @@ -98264,8 +98654,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: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response if this repository is starred by you @@ -98293,8 +98683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -98318,8 +98708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *255 - - *256 + - *259 + - *260 responses: '204': description: Response @@ -98354,7 +98744,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 '304': *35 @@ -98391,7 +98781,7 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: default: value: @@ -98477,10 +98867,10 @@ paths: application/json: schema: oneOf: - - *569 - - *568 + - *573 + - *572 examples: - default-response: &598 + default-response: &602 summary: Default response value: login: octocat @@ -98515,7 +98905,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &599 + response-with-git-hub-plan-information: &603 summary: Response with GitHub plan information value: login: octocat @@ -98575,7 +98965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *597 + - *601 - *17 responses: '200': @@ -98586,7 +98976,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: example: ; rel="next" @@ -98624,11 +99014,11 @@ paths: application/json: schema: oneOf: - - *569 - - *568 + - *573 + - *572 examples: - default-response: *598 - response-with-git-hub-plan-information: *599 + default-response: *602 + response-with-git-hub-plan-information: *603 '404': *6 x-github: githubCloudOnly: false @@ -98792,9 +99182,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 + default: *591 '403': *27 '401': *23 x-github: @@ -99077,7 +99467,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -99108,7 +99498,7 @@ paths: type: array items: *4 examples: - default: *181 + default: *182 headers: Link: *56 x-github: @@ -99198,9 +99588,9 @@ paths: application/json: schema: type: array - items: *576 + items: *580 examples: - default: *600 + default: *604 headers: Link: *56 x-github: @@ -99304,7 +99694,7 @@ paths: application/json: schema: *20 examples: - default: *442 + default: *446 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99382,7 +99772,7 @@ paths: type: array items: *141 examples: - default: *585 + default: *589 headers: Link: *56 x-github: @@ -99421,7 +99811,7 @@ paths: - docker - nuget - container - - *586 + - *590 - *127 - *19 - *17 @@ -99432,12 +99822,12 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *587 + default: *591 '403': *27 '401': *23 - '400': *588 + '400': *592 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99457,17 +99847,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 responses: '200': description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: *601 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99488,8 +99878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 responses: '204': @@ -99522,8 +99912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *197 - *198 + - *199 - *127 - name: token description: package token @@ -99556,8 +99946,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: - - *197 - *198 + - *199 - *127 responses: '200': @@ -99566,7 +99956,7 @@ paths: application/json: schema: type: array - items: *199 + items: *200 examples: default: value: @@ -99624,16 +100014,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *197 - *198 - - *200 + - *199 + - *201 - *127 responses: '200': description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -99668,10 +100058,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *197 - *198 + - *199 - *127 - - *200 + - *201 responses: '204': description: Response @@ -99703,10 +100093,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *197 - *198 + - *199 - *127 - - *200 + - *201 responses: '204': description: Response @@ -99750,7 +100140,7 @@ paths: application/json: schema: type: array - items: *210 + items: *211 examples: default: value: @@ -100030,7 +100420,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -100060,9 +100450,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *606 examples: - default: *603 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100090,9 +100480,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *608 examples: - default: *605 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100120,9 +100510,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *610 examples: - default: *607 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100150,9 +100540,9 @@ paths: application/json: schema: type: array - items: *591 + items: *595 examples: - default: *592 + default: *596 headers: Link: *56 x-github: @@ -100182,9 +100572,9 @@ paths: application/json: schema: type: array - items: *593 + items: *597 examples: - default: *608 + default: *612 headers: Link: *56 x-github: @@ -100209,7 +100599,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *127 - - *609 + - *613 - *46 - *17 - *19 @@ -100221,11 +100611,11 @@ paths: schema: anyOf: - type: array - items: *610 + items: *614 - type: array items: *58 examples: - default-response: *596 + default-response: *600 headers: Link: *56 x-github: @@ -100256,7 +100646,7 @@ paths: type: array items: *114 examples: - default: *201 + default: *202 headers: Link: *56 x-github: @@ -100385,7 +100775,7 @@ webhooks: type: string enum: - disabled - enterprise: &611 + enterprise: &615 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -100454,7 +100844,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &612 + installation: &616 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -100475,7 +100865,7 @@ webhooks: required: - id - node_id - organization: &613 + organization: &617 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -100548,7 +100938,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &614 + repository: &618 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -101461,10 +101851,10 @@ webhooks: type: string enum: - enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -101540,11 +101930,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: &615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: &619 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) @@ -101767,11 +102157,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: *619 sender: *4 required: - action @@ -101959,11 +102349,11 @@ webhooks: - everyone required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + rule: *619 sender: *4 required: - action @@ -102047,7 +102437,7 @@ webhooks: type: string enum: - completed - check_run: &617 + check_run: &621 title: CheckRun description: A check performed on the code of a given code change type: object @@ -102115,7 +102505,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *334 + items: *338 repository: *114 status: type: string @@ -102160,7 +102550,7 @@ webhooks: - examples: - neutral - deployment: *616 + deployment: *620 details_url: type: string examples: @@ -102220,7 +102610,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *334 + items: *338 started_at: type: string format: date-time @@ -102258,9 +102648,9 @@ webhooks: - output - app - pull_requests - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -102653,10 +103043,10 @@ webhooks: type: string enum: - created - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -103052,10 +103442,10 @@ webhooks: type: string enum: - requested_action - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 requested_action: description: The action requested by the user. type: object @@ -103460,10 +103850,10 @@ webhooks: type: string enum: - rerequested - check_run: *617 - installation: *612 - organization: *613 - repository: *614 + check_run: *621 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - check_run @@ -104455,10 +104845,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105143,10 +105533,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105825,10 +106215,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -105994,7 +106384,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -106146,20 +106536,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &618 + commit_oid: &622 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: *611 - installation: *612 - organization: *613 - ref: &619 + enterprise: *615 + installation: *616 + organization: *617 + ref: &623 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: *614 + repository: *618 sender: *4 required: - action @@ -106323,7 +106713,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -106493,12 +106883,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -106596,7 +106986,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106775,12 +107165,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -106946,7 +107336,7 @@ webhooks: required: - login - id - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107123,12 +107513,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -107228,7 +107618,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107408,9 +107798,9 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -107418,7 +107808,7 @@ webhooks: type: - string - 'null' - repository: *614 + repository: *618 sender: *4 required: - action @@ -107514,7 +107904,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *349 + dismissed_comment: *353 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107661,12 +108051,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *618 - enterprise: *611 - installation: *612 - organization: *613 - ref: *619 - repository: *614 + commit_oid: *622 + enterprise: *615 + installation: *616 + organization: *617 + ref: *623 + repository: *618 sender: *4 required: - action @@ -107928,10 +108318,10 @@ webhooks: - updated_at - author_association - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -108012,18 +108402,18 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *613 - pusher_type: &620 + organization: *617 + pusher_type: &624 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &621 + ref: &625 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -108033,7 +108423,7 @@ webhooks: enum: - tag - branch - repository: *614 + repository: *618 sender: *4 required: - ref @@ -108115,10 +108505,10 @@ webhooks: type: string enum: - created - definition: *211 - enterprise: *611 - installation: *612 - organization: *613 + definition: *212 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108203,9 +108593,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108282,10 +108672,10 @@ webhooks: type: string enum: - updated - definition: *211 - enterprise: *611 - installation: *612 - organization: *613 + definition: *212 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -108362,19 +108752,19 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - repository: *614 - organization: *613 + enterprise: *615 + installation: *616 + repository: *618 + organization: *617 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *215 + items: *216 old_property_values: type: array description: The old custom property values for the repository. - items: *215 + items: *216 required: - action - repository @@ -108450,18 +108840,18 @@ webhooks: title: delete event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - pusher_type: *620 - ref: *621 + enterprise: *615 + installation: *616 + organization: *617 + pusher_type: *624 + ref: *625 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *614 + repository: *618 sender: *4 required: - ref @@ -108545,11 +108935,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108633,11 +109023,11 @@ webhooks: type: string enum: - auto_reopened - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108721,11 +109111,11 @@ webhooks: type: string enum: - created - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108807,11 +109197,11 @@ webhooks: type: string enum: - dismissed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108893,11 +109283,11 @@ webhooks: type: string enum: - fixed - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -108980,11 +109370,11 @@ webhooks: type: string enum: - reintroduced - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -109066,11 +109456,11 @@ webhooks: type: string enum: - reopened - alert: *401 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *405 + installation: *616 + organization: *617 + enterprise: *615 + repository: *618 sender: *4 required: - action @@ -109147,9 +109537,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - key: &622 + enterprise: *615 + installation: *616 + key: &626 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -109187,8 +109577,8 @@ webhooks: - verified - created_at - read_only - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -109265,11 +109655,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - key: *622 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + key: *626 + organization: *617 + repository: *618 sender: *4 required: - action @@ -109841,12 +110231,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: &626 + workflow: &630 title: Workflow type: - object @@ -110584,13 +110974,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *407 + deployment: *411 pull_requests: type: array - items: *489 - repository: *614 - organization: *613 - installation: *612 + items: *493 + repository: *618 + organization: *617 + installation: *616 sender: *4 responses: '200': @@ -110661,7 +111051,7 @@ webhooks: type: string enum: - approved - approver: &623 + approver: &627 type: object properties: avatar_url: @@ -110704,11 +111094,11 @@ webhooks: type: string comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: &624 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + reviewers: &628 type: array items: type: object @@ -110789,7 +111179,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &625 + workflow_job_run: &629 type: object properties: conclusion: @@ -111535,18 +111925,18 @@ webhooks: type: string enum: - rejected - approver: *623 + approver: *627 comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: *624 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + reviewers: *628 sender: *4 since: type: string - workflow_job_run: *625 + workflow_job_run: *629 workflow_job_runs: type: array items: @@ -112263,13 +112653,13 @@ webhooks: type: string enum: - requested - enterprise: *611 + enterprise: *615 environment: type: string - installation: *612 - organization: *613 - repository: *614 - requestor: &631 + installation: *616 + organization: *617 + repository: *618 + requestor: &635 title: User type: - object @@ -114212,12 +114602,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Deployment Workflow Run type: @@ -114908,7 +115298,7 @@ webhooks: type: string enum: - answered - answer: &629 + answer: &633 type: object properties: author_association: @@ -115068,7 +115458,7 @@ webhooks: - created_at - updated_at - body - discussion: &627 + discussion: &631 title: Discussion description: A Discussion in a repository. type: object @@ -115364,7 +115754,7 @@ webhooks: - id labels: type: array - items: *452 + items: *456 required: - repository_url - category @@ -115386,10 +115776,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115516,11 +115906,11 @@ webhooks: - from required: - category - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115603,11 +115993,11 @@ webhooks: type: string enum: - closed - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115689,7 +116079,7 @@ webhooks: type: string enum: - created - comment: &628 + comment: &632 type: object properties: author_association: @@ -115849,11 +116239,11 @@ webhooks: - updated_at - body - reactions - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -115936,12 +116326,12 @@ webhooks: type: string enum: - deleted - comment: *628 - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *632 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116036,12 +116426,12 @@ webhooks: - from required: - body - comment: *628 - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *632 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116125,11 +116515,11 @@ webhooks: type: string enum: - created - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116211,11 +116601,11 @@ webhooks: type: string enum: - deleted - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116315,11 +116705,11 @@ webhooks: type: string required: - from - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116401,10 +116791,10 @@ webhooks: type: string enum: - labeled - discussion: *627 - enterprise: *611 - installation: *612 - label: &630 + discussion: *631 + enterprise: *615 + installation: *616 + label: &634 title: Label type: object properties: @@ -116437,8 +116827,8 @@ webhooks: - color - default - description - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116521,11 +116911,11 @@ webhooks: type: string enum: - locked - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116607,11 +116997,11 @@ webhooks: type: string enum: - pinned - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116693,11 +117083,11 @@ webhooks: type: string enum: - reopened - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116782,16 +117172,16 @@ webhooks: changes: type: object properties: - new_discussion: *627 - new_repository: *614 + new_discussion: *631 + new_repository: *618 required: - new_discussion - new_repository - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116874,10 +117264,10 @@ webhooks: type: string enum: - unanswered - discussion: *627 - old_answer: *629 - organization: *613 - repository: *614 + discussion: *631 + old_answer: *633 + organization: *617 + repository: *618 sender: *4 required: - action @@ -116959,12 +117349,12 @@ webhooks: type: string enum: - unlabeled - discussion: *627 - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117047,11 +117437,11 @@ webhooks: type: string enum: - unlocked - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117133,11 +117523,11 @@ webhooks: type: string enum: - unpinned - discussion: *627 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *631 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -117210,7 +117600,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *611 + enterprise: *615 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -117888,9 +118278,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - forkee @@ -118036,9 +118426,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pages: description: The pages that were updated. type: array @@ -118076,7 +118466,7 @@ webhooks: - action - sha - html_url - repository: *614 + repository: *618 sender: *4 required: - pages @@ -118152,10 +118542,10 @@ webhooks: type: string enum: - created - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: &632 + organization: *617 + repositories: &636 description: An array of repository objects that the installation can access. type: array @@ -118181,8 +118571,8 @@ webhooks: - name - full_name - private - repository: *614 - requester: *631 + repository: *618 + requester: *635 sender: *4 required: - action @@ -118257,11 +118647,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118338,11 +118728,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118419,10 +118809,10 @@ webhooks: type: string enum: - added - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories_added: &633 + organization: *617 + repositories_added: &637 description: An array of repository objects, which were added to the installation. type: array @@ -118468,15 +118858,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *614 - repository_selection: &634 + repository: *618 + repository_selection: &638 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *631 + requester: *635 sender: *4 required: - action @@ -118555,10 +118945,10 @@ webhooks: type: string enum: - removed - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories_added: *633 + organization: *617 + repositories_added: *637 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -118585,9 +118975,9 @@ webhooks: - name - full_name - private - repository: *614 - repository_selection: *634 - requester: *631 + repository: *618 + repository_selection: *638 + requester: *635 sender: *4 required: - action @@ -118666,11 +119056,11 @@ webhooks: type: string enum: - suspend - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -118852,10 +119242,10 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 target_type: type: string @@ -118934,11 +119324,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *611 + enterprise: *615 installation: *20 - organization: *613 - repositories: *632 - repository: *614 + organization: *617 + repositories: *636 + repository: *618 requester: type: - 'null' @@ -119186,8 +119576,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120377,8 +120767,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -120458,7 +120848,7 @@ webhooks: type: string enum: - deleted - comment: &635 + comment: &639 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -120625,8 +121015,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121814,8 +122204,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -121895,7 +122285,7 @@ webhooks: type: string enum: - edited - changes: &660 + changes: &664 description: The changes to the comment. type: object properties: @@ -121907,9 +122297,9 @@ webhooks: type: string required: - from - comment: *635 - enterprise: *611 - installation: *612 + comment: *639 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123098,8 +123488,8 @@ webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -123181,10 +123571,10 @@ webhooks: type: string enum: - assigned - assignee: *631 - enterprise: *611 - installation: *612 - issue: &638 + assignee: *635 + enterprise: *615 + installation: *616 + issue: &642 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -124128,8 +124518,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -124209,8 +124599,8 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125302,8 +125692,8 @@ webhooks: required: - state - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -125382,8 +125772,8 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126320,8 +126710,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -126400,8 +126790,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127342,7 +127732,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &636 + milestone: &640 title: Milestone description: A collection of related issues and pull requests. type: object @@ -127485,8 +127875,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -127585,8 +127975,8 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128530,9 +128920,9 @@ webhooks: - active_lock_reason - body - reactions - label: *630 - organization: *613 - repository: *614 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -128612,8 +129002,8 @@ webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129556,9 +129946,9 @@ webhooks: - active_lock_reason - body - reactions - label: *630 - organization: *613 - repository: *614 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -129638,8 +130028,8 @@ webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130584,8 +130974,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -130664,8 +131054,8 @@ webhooks: type: string enum: - milestoned - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131604,9 +131994,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *636 - organization: *613 - repository: *614 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -133106,8 +133496,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134050,8 +134440,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -134131,9 +134521,9 @@ webhooks: type: string enum: - pinned - enterprise: *611 - installation: *612 - issue: &637 + enterprise: *615 + installation: *616 + issue: &641 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135070,8 +135460,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -135150,8 +135540,8 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136095,8 +136485,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137596,11 +137986,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *611 - installation: *612 - issue: *637 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *641 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137681,7 +138071,7 @@ webhooks: type: string enum: - unassigned - assignee: &663 + assignee: &667 title: User type: - object @@ -137753,11 +138143,11 @@ webhooks: required: - login - id - enterprise: *611 - installation: *612 - issue: *638 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *642 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137836,12 +138226,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - issue: *638 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *642 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -137921,8 +138311,8 @@ webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138865,8 +139255,8 @@ webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -138946,11 +139336,11 @@ webhooks: type: string enum: - unpinned - enterprise: *611 - installation: *612 - issue: *637 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + issue: *641 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139029,11 +139419,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139111,11 +139501,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139225,11 +139615,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - label: *630 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + label: *634 + organization: *617 + repository: *618 sender: *4 required: - action @@ -139311,9 +139701,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: &639 + enterprise: *615 + installation: *616 + marketplace_purchase: &643 title: Marketplace Purchase type: object required: @@ -139401,8 +139791,8 @@ webhooks: type: integer unit_count: type: integer - organization: *613 - previous_marketplace_purchase: &640 + organization: *617 + previous_marketplace_purchase: &644 title: Marketplace Purchase type: object properties: @@ -139486,7 +139876,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139566,10 +139956,10 @@ webhooks: - changed effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139657,7 +140047,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139739,10 +140129,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139828,7 +140218,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *614 + repository: *618 sender: *4 required: - action @@ -139909,8 +140299,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 marketplace_purchase: title: Marketplace Purchase type: object @@ -139996,9 +140386,9 @@ webhooks: type: integer unit_count: type: integer - organization: *613 - previous_marketplace_purchase: *640 - repository: *614 + organization: *617 + previous_marketplace_purchase: *644 + repository: *618 sender: *4 required: - action @@ -140078,12 +140468,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *611 - installation: *612 - marketplace_purchase: *639 - organization: *613 - previous_marketplace_purchase: *640 - repository: *614 + enterprise: *615 + installation: *616 + marketplace_purchase: *643 + organization: *617 + previous_marketplace_purchase: *644 + repository: *618 sender: *4 required: - action @@ -140185,11 +140575,11 @@ webhooks: type: string required: - to - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140291,11 +140681,11 @@ webhooks: type: - string - 'null' - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140374,11 +140764,11 @@ webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 sender: *4 required: - action @@ -140456,11 +140846,11 @@ webhooks: type: string enum: - added - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140538,7 +140928,7 @@ webhooks: required: - login - id - team: &641 + team: &645 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -140731,11 +141121,11 @@ webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *631 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + member: *635 + organization: *617 + repository: *618 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140814,7 +141204,7 @@ webhooks: required: - login - id - team: *641 + team: *645 required: - action - scope @@ -140896,8 +141286,8 @@ webhooks: type: string enum: - checks_requested - installation: *612 - merge_group: &642 + installation: *616 + merge_group: &646 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -140916,15 +141306,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *338 + head_commit: *342 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141010,10 +141400,10 @@ webhooks: - merged - invalidated - dequeued - installation: *612 - merge_group: *642 - organization: *613 - repository: *614 + installation: *616 + merge_group: *646 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141086,7 +141476,7 @@ webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *615 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -141194,12 +141584,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *612 - organization: *613 + installation: *616 + organization: *617 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -141279,11 +141669,11 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141362,9 +141752,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - milestone: &643 + enterprise: *615 + installation: *616 + milestone: &647 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141506,8 +141896,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141586,11 +141976,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141700,11 +142090,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - milestone: *636 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *640 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141784,11 +142174,11 @@ webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - milestone: *643 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + milestone: *647 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141867,11 +142257,11 @@ webhooks: type: string enum: - blocked - blocked_user: *631 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + blocked_user: *635 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -141950,11 +142340,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *631 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + blocked_user: *635 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142033,9 +142423,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - membership: &644 + enterprise: *615 + installation: *616 + membership: &648 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -142129,8 +142519,8 @@ webhooks: - role - organization_url - user - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142208,11 +142598,11 @@ webhooks: type: string enum: - member_added - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142291,8 +142681,8 @@ webhooks: type: string enum: - member_invited - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -142414,10 +142804,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 - user: *631 + user: *635 required: - action - invitation @@ -142495,11 +142885,11 @@ webhooks: type: string enum: - member_removed - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142586,11 +142976,11 @@ webhooks: properties: from: type: string - enterprise: *611 - installation: *612 - membership: *644 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + membership: *648 + organization: *617 + repository: *618 sender: *4 required: - action @@ -142666,9 +143056,9 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 package: description: Information about the package. type: object @@ -143191,7 +143581,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &645 + items: &649 title: Ruby Gems metadata type: object properties: @@ -143288,7 +143678,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -143364,9 +143754,9 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 package: description: Information about the package. type: object @@ -143728,7 +144118,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *645 + items: *649 source_url: type: string format: uri @@ -143799,7 +144189,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -143980,12 +144370,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *611 + enterprise: *615 id: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - id @@ -144065,7 +144455,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &646 + personal_access_token_request: &650 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -144215,10 +144605,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *611 - organization: *613 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144297,11 +144687,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *646 - enterprise: *611 - organization: *613 + personal_access_token_request: *650 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144379,11 +144769,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *646 - enterprise: *611 - organization: *613 + personal_access_token_request: *650 + enterprise: *615 + organization: *617 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144460,11 +144850,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *646 - organization: *613 - enterprise: *611 + personal_access_token_request: *650 + organization: *617 + enterprise: *615 sender: *4 - installation: *612 + installation: *616 required: - action - personal_access_token_request @@ -144568,7 +144958,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *647 + last_response: *651 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -144600,8 +144990,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 zen: description: Random string of GitHub zen. @@ -144846,10 +145236,10 @@ webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: &648 + enterprise: *615 + installation: *616 + organization: *617 + project_card: &652 title: Project Card type: object properties: @@ -144972,7 +145362,7 @@ webhooks: - creator - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -145053,11 +145443,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_card: *648 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_card: *652 + repository: *618 sender: *4 required: - action @@ -145137,9 +145527,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 project_card: title: Project Card type: object @@ -145269,7 +145659,7 @@ webhooks: repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -145363,11 +145753,11 @@ webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: *648 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_card: *652 + repository: *618 sender: *4 required: - action @@ -145461,9 +145851,9 @@ webhooks: - from required: - column_id - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 project_card: allOf: - title: Project Card @@ -145660,7 +146050,7 @@ webhooks: type: string required: - after_id - repository: *614 + repository: *618 sender: *4 required: - action @@ -145740,10 +146130,10 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - organization: *613 - project: &650 + enterprise: *615 + installation: *616 + organization: *617 + project: &654 title: Project type: object properties: @@ -145870,7 +146260,7 @@ webhooks: - creator - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -145950,10 +146340,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_column: &649 + enterprise: *615 + installation: *616 + organization: *617 + project_column: &653 title: Project Column type: object properties: @@ -145993,7 +146383,7 @@ webhooks: - name - created_at - updated_at - repository: *614 + repository: *618 sender: *4 required: - action @@ -146072,14 +146462,14 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -146168,11 +146558,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 + repository: *618 sender: *4 required: - action @@ -146252,11 +146642,11 @@ webhooks: type: string enum: - moved - enterprise: *611 - installation: *612 - organization: *613 - project_column: *649 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project_column: *653 + repository: *618 sender: *4 required: - action @@ -146336,11 +146726,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146420,14 +146810,14 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project: *650 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 repository: anyOf: - type: 'null' - - *614 + - *618 sender: *4 required: - action @@ -146528,11 +146918,11 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146611,11 +147001,11 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - organization: *613 - project: *650 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + project: *654 + repository: *618 sender: *4 required: - action @@ -146696,9 +147086,9 @@ webhooks: type: string enum: - closed - installation: *612 - organization: *613 - projects_v2: &651 + installation: *616 + organization: *617 + projects_v2: &655 title: Projects v2 Project description: A projects v2 project type: object @@ -146846,9 +147236,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -146929,9 +147319,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147052,9 +147442,9 @@ webhooks: type: string to: type: string - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147137,7 +147527,7 @@ webhooks: type: string enum: - archived - changes: &655 + changes: &659 type: object properties: archived_at: @@ -147153,9 +147543,9 @@ webhooks: - string - 'null' format: date-time - installation: *612 - organization: *613 - projects_v2_item: &652 + installation: *616 + organization: *617 + projects_v2_item: &656 title: Projects v2 Item description: An item belonging to a project type: object @@ -147294,9 +147684,9 @@ webhooks: - 'null' to: type: string - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147378,9 +147768,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147461,9 +147851,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147568,7 +147958,7 @@ webhooks: oneOf: - type: string - type: integer - - &653 + - &657 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -147588,7 +147978,7 @@ webhooks: required: - id - name - - &654 + - &658 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -147617,8 +148007,8 @@ webhooks: oneOf: - type: string - type: integer - - *653 - - *654 + - *657 + - *658 type: - 'null' - string @@ -147641,9 +148031,9 @@ webhooks: - 'null' required: - body - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147740,9 +148130,9 @@ webhooks: type: - string - 'null' - installation: *612 - organization: *613 - projects_v2_item: *652 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147825,10 +148215,10 @@ webhooks: type: string enum: - restored - changes: *655 - installation: *612 - organization: *613 - projects_v2_item: *652 + changes: *659 + installation: *616 + organization: *617 + projects_v2_item: *656 sender: *4 required: - action @@ -147910,9 +148300,9 @@ webhooks: type: string enum: - reopened - installation: *612 - organization: *613 - projects_v2: *651 + installation: *616 + organization: *617 + projects_v2: *655 sender: *4 required: - action @@ -147993,9 +148383,9 @@ webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_status_update: &656 + installation: *616 + organization: *617 + projects_v2_status_update: &660 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -148130,9 +148520,9 @@ webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_status_update: *656 + installation: *616 + organization: *617 + projects_v2_status_update: *660 sender: *4 required: - action @@ -148278,9 +148668,9 @@ webhooks: - string - 'null' format: date - installation: *612 - organization: *613 - projects_v2_status_update: *656 + installation: *616 + organization: *617 + projects_v2_status_update: *660 sender: *4 required: - action @@ -148351,10 +148741,10 @@ webhooks: title: public event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - repository @@ -148431,13 +148821,13 @@ webhooks: type: string enum: - assigned - assignee: *631 - enterprise: *611 - installation: *612 - number: &657 + assignee: *635 + enterprise: *615 + installation: *616 + number: &661 description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -150786,7 +151176,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -150868,11 +151258,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -153214,7 +153604,7 @@ webhooks: - draft reason: type: string - repository: *614 + repository: *618 sender: *4 required: - action @@ -153296,11 +153686,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -155642,7 +156032,7 @@ webhooks: - draft reason: type: string - repository: *614 + repository: *618 sender: *4 required: - action @@ -155724,13 +156114,13 @@ webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: &658 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: &662 allOf: - - *489 + - *493 - type: object properties: allow_auto_merge: @@ -155792,7 +156182,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *614 + repository: *618 sender: *4 required: - action @@ -155873,12 +156263,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -155958,11 +156348,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *611 - milestone: *387 - number: *657 - organization: *613 - pull_request: &659 + enterprise: *615 + milestone: *391 + number: *661 + organization: *617 + pull_request: &663 title: Pull Request type: object properties: @@ -158289,7 +158679,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -158368,11 +158758,11 @@ webhooks: type: string enum: - dequeued - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -160718,7 +161108,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *614 + repository: *618 sender: *4 required: - action @@ -160842,12 +161232,12 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -160927,11 +161317,11 @@ webhooks: type: string enum: - enqueued - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -163262,7 +163652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -163342,11 +163732,11 @@ webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 - label: *630 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + label: *634 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -165694,7 +166084,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -165775,10 +166165,10 @@ webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -168124,7 +168514,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -168204,12 +168594,12 @@ webhooks: type: string enum: - milestoned - enterprise: *611 - milestone: *387 - number: *657 - organization: *613 - pull_request: *659 - repository: *614 + enterprise: *615 + milestone: *391 + number: *661 + organization: *617 + pull_request: *663 + repository: *618 sender: *4 required: - action @@ -168288,12 +168678,12 @@ webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168374,12 +168764,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168459,12 +168849,12 @@ webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 + pull_request: *662 + repository: *618 sender: *4 required: - action @@ -168839,9 +169229,9 @@ webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -171071,7 +171461,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -171151,7 +171541,7 @@ webhooks: type: string enum: - deleted - comment: &661 + comment: &665 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -171444,9 +171834,9 @@ webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -173664,7 +174054,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -173744,11 +174134,11 @@ webhooks: type: string enum: - edited - changes: *660 - comment: *661 - enterprise: *611 - installation: *612 - organization: *613 + changes: *664 + comment: *665 + enterprise: *615 + installation: *616 + organization: *617 pull_request: type: object properties: @@ -175969,7 +176359,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *618 sender: *4 required: - action @@ -176050,9 +176440,9 @@ webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -178285,7 +178675,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 review: description: The review that was affected. type: object @@ -178531,9 +178921,9 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -180647,8 +181037,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: &662 + repository: *618 + review: &666 description: The review that was affected. type: object properties: @@ -180881,12 +181271,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -183233,7 +183623,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_reviewer: title: User type: @@ -183319,12 +183709,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -185678,7 +186068,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_team: title: Team description: Groups of organization members that gives permissions @@ -185873,12 +186263,12 @@ webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -188227,7 +188617,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_reviewer: title: User type: @@ -188314,12 +188704,12 @@ webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *615 + installation: *616 number: description: The pull request number. type: integer - organization: *613 + organization: *617 pull_request: title: Pull Request type: object @@ -190659,7 +191049,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 requested_team: title: Team description: Groups of organization members that gives permissions @@ -190843,9 +191233,9 @@ webhooks: type: string enum: - submitted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -193081,8 +193471,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: *662 + repository: *618 + review: *666 sender: *4 required: - action @@ -193162,9 +193552,9 @@ webhooks: type: string enum: - resolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -195295,7 +195685,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 sender: *4 thread: type: object @@ -195687,9 +196077,9 @@ webhooks: type: string enum: - unresolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 pull_request: title: Simple Pull Request type: object @@ -197803,7 +198193,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *618 sender: *4 thread: type: object @@ -198197,10 +198587,10 @@ webhooks: type: string before: type: string - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -200535,7 +200925,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -200617,11 +201007,11 @@ webhooks: type: string enum: - unassigned - assignee: *663 - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + assignee: *667 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -202971,7 +203361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -203050,11 +203440,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - label: *630 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + label: *634 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -205393,7 +205783,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -205474,10 +205864,10 @@ webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *615 + installation: *616 + number: *661 + organization: *617 pull_request: title: Pull Request type: object @@ -207806,7 +208196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *618 sender: *4 required: - action @@ -208009,7 +208399,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *611 + enterprise: *615 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -208104,8 +208494,8 @@ webhooks: - url - author - committer - installation: *612 - organization: *613 + installation: *616 + organization: *617 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -208693,9 +209083,9 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 registry_package: type: object properties: @@ -209172,7 +209562,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *645 + items: *649 summary: type: string tag_name: @@ -209228,7 +209618,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -209306,9 +209696,9 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 registry_package: type: object properties: @@ -209620,7 +210010,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *645 + items: *649 summary: type: string tag_name: @@ -209670,7 +210060,7 @@ webhooks: - owner - package_version - registry - repository: *614 + repository: *618 sender: *4 required: - action @@ -209747,10 +210137,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - release: &664 + enterprise: *615 + installation: *616 + organization: *617 + release: &668 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -210066,7 +210456,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *614 + repository: *618 sender: *4 required: - action @@ -210143,11 +210533,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -210255,11 +210645,11 @@ webhooks: type: boolean required: - to - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -210337,9 +210727,9 @@ webhooks: type: string enum: - prereleased - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -210660,7 +211050,7 @@ webhooks: - string - 'null' format: uri - repository: *614 + repository: *618 sender: *4 required: - action @@ -210736,10 +211126,10 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - release: &665 + enterprise: *615 + installation: *616 + organization: *617 + release: &669 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211057,7 +211447,7 @@ webhooks: - string - 'null' format: uri - repository: *614 + repository: *618 sender: *4 required: - action @@ -211133,11 +211523,11 @@ webhooks: type: string enum: - released - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *668 + repository: *618 sender: *4 required: - action @@ -211213,11 +211603,11 @@ webhooks: type: string enum: - unpublished - enterprise: *611 - installation: *612 - organization: *613 - release: *665 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + release: *669 + repository: *618 sender: *4 required: - action @@ -211293,11 +211683,11 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_advisory: *543 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_advisory: *547 sender: *4 required: - action @@ -211373,11 +211763,11 @@ webhooks: type: string enum: - reported - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_advisory: *543 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_advisory: *547 sender: *4 required: - action @@ -211453,10 +211843,10 @@ webhooks: type: string enum: - archived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211533,10 +211923,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211614,10 +212004,10 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211702,10 +212092,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211820,10 +212210,10 @@ webhooks: - 'null' items: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -211895,10 +212285,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 status: type: string @@ -211979,10 +212369,10 @@ webhooks: type: string enum: - privatized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212059,10 +212449,10 @@ webhooks: type: string enum: - publicized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212156,10 +212546,10 @@ webhooks: - name required: - repository - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212239,11 +212629,11 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 sender: *4 required: - action @@ -212321,11 +212711,11 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 sender: *4 required: - action @@ -212403,11 +212793,11 @@ webhooks: type: string enum: - edited - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *223 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + repository_ruleset: *224 changes: type: object properties: @@ -212426,16 +212816,16 @@ webhooks: properties: added: type: array - items: *217 + items: *218 deleted: type: array - items: *217 + items: *218 updated: type: array items: type: object properties: - condition: *217 + condition: *218 changes: type: object properties: @@ -212468,16 +212858,16 @@ webhooks: properties: added: type: array - items: *222 + items: *223 deleted: type: array - items: *222 + items: *223 updated: type: array items: type: object properties: - rule: *222 + rule: *223 changes: type: object properties: @@ -212714,10 +213104,10 @@ webhooks: - from required: - owner - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212795,10 +213185,10 @@ webhooks: type: string enum: - unarchived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -212876,7 +213266,7 @@ webhooks: type: string enum: - create - alert: &666 + alert: &670 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -213000,10 +213390,10 @@ webhooks: type: string enum: - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213213,10 +213603,10 @@ webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213294,11 +213684,11 @@ webhooks: type: string enum: - reopen - alert: *666 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *670 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213500,10 +213890,10 @@ webhooks: enum: - fixed - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213581,7 +213971,7 @@ webhooks: type: string enum: - created - alert: &667 + alert: &671 type: object properties: number: *51 @@ -213691,10 +214081,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -213775,11 +214165,11 @@ webhooks: type: string enum: - created - alert: *667 - installation: *612 - location: *668 - organization: *613 - repository: *614 + alert: *671 + installation: *616 + location: *672 + organization: *617 + repository: *618 sender: *4 required: - location @@ -214017,11 +214407,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214099,11 +214489,11 @@ webhooks: type: string enum: - reopened - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214181,11 +214571,11 @@ webhooks: type: string enum: - resolved - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214263,11 +214653,11 @@ webhooks: type: string enum: - validated - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *671 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -214397,10 +214787,10 @@ webhooks: - organization - enterprise - - repository: *614 - enterprise: *611 - installation: *612 - organization: *613 + repository: *618 + enterprise: *615 + installation: *616 + organization: *617 sender: *4 required: - action @@ -214478,11 +214868,11 @@ webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: &669 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + security_advisory: &673 description: The details of the security advisory, including summary, description, and severity. type: object @@ -214668,11 +215058,11 @@ webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: *669 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 + security_advisory: *673 sender: *4 required: - action @@ -214745,10 +215135,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -214934,11 +215324,11 @@ webhooks: from: type: object properties: - security_and_analysis: *216 - enterprise: *611 - installation: *612 - organization: *613 - repository: *266 + security_and_analysis: *217 + enterprise: *615 + installation: *616 + organization: *617 + repository: *270 sender: *4 required: - changes @@ -215016,12 +215406,12 @@ webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: &670 + sponsorship: &674 type: object properties: created_at: @@ -215326,12 +215716,12 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - sponsorship @@ -215419,12 +215809,12 @@ webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215501,17 +215891,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &671 + effective_date: &675 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: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - sponsorship @@ -215585,7 +215975,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &672 + changes: &676 type: object properties: tier: @@ -215629,13 +216019,13 @@ webhooks: - from required: - tier - effective_date: *671 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + effective_date: *675 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215712,13 +216102,13 @@ webhooks: type: string enum: - tier_changed - changes: *672 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + changes: *676 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - sponsorship: *670 + sponsorship: *674 required: - action - changes @@ -215792,10 +216182,10 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -215879,10 +216269,10 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216315,15 +216705,15 @@ webhooks: type: - string - 'null' - enterprise: *611 + enterprise: *615 id: description: The unique identifier of the status. type: integer - installation: *612 + installation: *616 name: type: string - organization: *613 - repository: *614 + organization: *617 + repository: *618 sender: *4 sha: description: The Commit SHA. @@ -216439,9 +216829,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216531,9 +216921,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216623,9 +217013,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216715,9 +217105,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *73 - installation: *612 - organization: *613 - repository: *614 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -216794,12 +217184,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - team: &673 + team: &677 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -216992,9 +217382,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -217464,7 +217854,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -217540,9 +217930,9 @@ webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -218012,7 +218402,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -218089,9 +218479,9 @@ webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -218561,7 +218951,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -218705,9 +219095,9 @@ webhooks: - from required: - permissions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -219177,7 +219567,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - changes @@ -219255,9 +219645,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *615 + installation: *616 + organization: *617 repository: title: Repository description: A git repository @@ -219727,7 +220117,7 @@ webhooks: - topics - visibility sender: *4 - team: *673 + team: *677 required: - action - team @@ -219803,10 +220193,10 @@ webhooks: type: string enum: - started - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 required: - action @@ -219879,17 +220269,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *611 + enterprise: *615 inputs: type: - object - 'null' additionalProperties: true - installation: *612 - organization: *613 + installation: *616 + organization: *617 ref: type: string - repository: *614 + repository: *618 sender: *4 workflow: type: string @@ -219971,10 +220361,10 @@ webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: allOf: @@ -220230,7 +220620,7 @@ webhooks: type: string required: - conclusion - deployment: *407 + deployment: *411 required: - action - repository @@ -220309,10 +220699,10 @@ webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: allOf: @@ -220594,7 +220984,7 @@ webhooks: required: - status - steps - deployment: *407 + deployment: *411 required: - action - repository @@ -220673,10 +221063,10 @@ webhooks: type: string enum: - queued - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: type: object @@ -220822,7 +221212,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *407 + deployment: *411 required: - action - repository @@ -220901,10 +221291,10 @@ webhooks: type: string enum: - waiting - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 workflow_job: type: object @@ -221051,7 +221441,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *407 + deployment: *411 required: - action - repository @@ -221131,12 +221521,12 @@ webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object @@ -222155,12 +222545,12 @@ webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object @@ -223164,12 +223554,12 @@ webhooks: type: string enum: - requested - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *615 + installation: *616 + organization: *617 + repository: *618 sender: *4 - workflow: *626 + workflow: *630 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 53926cbce..7c861d0c4 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -191,6 +191,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -36475,6 +36479,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -38453,6 +38465,781 @@ } } }, + "/enterprises/{enterprise}/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an enterprise", + "description": "Lists all hosted compute network configurations configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an enterprise", + "description": "Creates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an enterprise", + "description": "Gets a hosted compute network configuration configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an enterprise", + "description": "Updates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an enterprise", + "description": "Deletes a hosted compute network configuration from an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an enterprise", + "description": "Gets a hosted compute network settings resource configured for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, + "examples": { + "default": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, "/enterprises/{enterprise}/properties/schema": { "get": { "summary": "Get custom properties for an enterprise", @@ -118029,6 +118816,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -186452,158 +187247,622 @@ ], "responses": { "200": { - "description": "Success", + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_advanced_security_committers": { + "type": "integer", + "examples": [ + 25 + ] + }, + "total_count": { + "type": "integer", + "examples": [ + 2 + ] + }, + "maximum_advanced_security_committers": { + "type": "integer", + "description": "The total number of GitHub Advanced Security licences required if all repositories were to enable GitHub Advanced Security", + "examples": [ + 4 + ] + }, + "purchased_advanced_security_committers": { + "type": "integer", + "description": "The total number of GitHub Advanced Security licences purchased", + "examples": [ + 4 + ] + }, + "repositories": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string", + "examples": [ + "octocat/Hello-World" + ] + }, + "advanced_security_committers": { + "type": "integer", + "examples": [ + 25 + ] + }, + "advanced_security_committers_breakdown": { + "type": "array", + "items": { + "type": "object", + "properties": { + "user_login": { + "type": "string" + }, + "last_pushed_date": { + "type": "string", + "examples": [ + "2021-11-03" + ] + }, + "last_pushed_email": { + "type": "string", + "examples": [ + "monalisa@github.com" + ] + } + }, + "required": [ + "user_login", + "last_pushed_date", + "last_pushed_email" + ] + } + } + }, + "required": [ + "name", + "advanced_security_committers", + "advanced_security_committers_breakdown" + ] + } + } + }, + "required": [ + "repositories" + ] + }, + "examples": { + "default": { + "value": { + "total_advanced_security_committers": 2, + "total_count": 2, + "maximum_advanced_security_committers": 4, + "purchased_advanced_security_committers": 4, + "repositories": [ + { + "name": "octocat-org/Hello-World", + "advanced_security_committers": 2, + "advanced_security_committers_breakdown": [ + { + "user_login": "octocat", + "last_pushed_date": "2021-11-03", + "last_pushed_email": "octocat@github.com" + }, + { + "user_login": "octokitten", + "last_pushed_date": "2021-10-25", + "last_pushed_email": "octokitten@github.com" + } + ] + }, + { + "name": "octocat-org/server", + "advanced_security_committers": 1, + "advanced_security_committers_breakdown": [ + { + "user_login": "octokitten", + "last_pushed_date": "2021-10-26", + "last_pushed_email": "octokitten@github.com" + } + ] + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/billing/packages": { + "get": { + "summary": "Get GitHub Packages billing for an organization", + "description": "Gets the free and paid storage used for GitHub Packages in gigabytes.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", + "operationId": "billing/get-github-packages-billing-org", + "tags": [ + "billing" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_gigabytes_bandwidth_used": { + "type": "integer", + "description": "Sum of the free and paid storage space (GB) for GitHuub Packages." + }, + "total_paid_gigabytes_bandwidth_used": { + "type": "integer", + "description": "Total paid storage space (GB) for GitHuub Packages." + }, + "included_gigabytes_bandwidth": { + "type": "integer", + "description": "Free storage space (GB) for GitHub Packages." + } + }, + "required": [ + "total_gigabytes_bandwidth_used", + "total_paid_gigabytes_bandwidth_used", + "included_gigabytes_bandwidth" + ] + }, + "examples": { + "default": { + "value": { + "total_gigabytes_bandwidth_used": 50, + "total_paid_gigabytes_bandwidth_used": 40, + "included_gigabytes_bandwidth": 10 + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/billing/shared-storage": { + "get": { + "summary": "Get shared storage billing for an organization", + "description": "Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", + "operationId": "billing/get-shared-storage-billing-org", + "tags": [ + "billing" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "days_left_in_billing_cycle": { + "type": "integer", + "description": "Numbers of days left in billing cycle." + }, + "estimated_paid_storage_for_month": { + "type": "integer", + "description": "Estimated storage space (GB) used in billing cycle." + }, + "estimated_storage_for_month": { + "type": "integer", + "description": "Estimated sum of free and paid storage space (GB) used in billing cycle." + } + }, + "required": [ + "days_left_in_billing_cycle", + "estimated_paid_storage_for_month", + "estimated_storage_for_month" + ] + }, + "examples": { + "default": { + "value": { + "days_left_in_billing_cycle": 20, + "estimated_paid_storage_for_month": 15, + "estimated_storage_for_month": 40 + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", "content": { "application/json": { "schema": { "type": "object", + "required": [ + "total_count", + "network_configurations" + ], "properties": { - "total_advanced_security_committers": { - "type": "integer", - "examples": [ - 25 - ] - }, "total_count": { - "type": "integer", - "examples": [ - 2 - ] - }, - "maximum_advanced_security_committers": { - "type": "integer", - "description": "The total number of GitHub Advanced Security licences required if all repositories were to enable GitHub Advanced Security", - "examples": [ - 4 - ] - }, - "purchased_advanced_security_committers": { - "type": "integer", - "description": "The total number of GitHub Advanced Security licences purchased", - "examples": [ - 4 - ] + "type": "integer" }, - "repositories": { + "network_configurations": { "type": "array", "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", "type": "object", "properties": { - "name": { + "id": { + "description": "The unique identifier of the network configuration.", "type": "string", "examples": [ - "octocat/Hello-World" + "123ABC456DEF789" ] }, - "advanced_security_committers": { - "type": "integer", + "name": { + "description": "The name of the network configuration.", + "type": "string", "examples": [ - 25 + "my-network-configuration" ] }, - "advanced_security_committers_breakdown": { + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", "type": "array", "items": { - "type": "object", - "properties": { - "user_login": { - "type": "string" - }, - "last_pushed_date": { - "type": "string", - "examples": [ - "2021-11-03" - ] - }, - "last_pushed_email": { - "type": "string", - "examples": [ - "monalisa@github.com" - ] - } - }, - "required": [ - "user_login", - "last_pushed_date", - "last_pushed_email" - ] - } + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] } }, "required": [ + "id", "name", - "advanced_security_committers", - "advanced_security_committers_breakdown" + "created_on" ] } } - }, - "required": [ - "repositories" - ] + } }, "examples": { "default": { "value": { - "total_advanced_security_committers": 2, "total_count": 2, - "maximum_advanced_security_committers": 4, - "purchased_advanced_security_committers": 4, - "repositories": [ + "network_configurations": [ { - "name": "octocat-org/Hello-World", - "advanced_security_committers": 2, - "advanced_security_committers_breakdown": [ - { - "user_login": "octocat", - "last_pushed_date": "2021-11-03", - "last_pushed_email": "octocat@github.com" - }, - { - "user_login": "octokitten", - "last_pushed_date": "2021-10-25", - "last_pushed_email": "octokitten@github.com" - } - ] + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" }, { - "name": "octocat-org/server", - "advanced_security_committers": 1, - "advanced_security_committers_breakdown": [ - { - "user_login": "octokitten", - "last_pushed_date": "2021-10-26", - "last_pushed_email": "octokitten@github.com" - } - ] + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" } ] } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { - "githubCloudOnly": true, + "githubCloudOnly": false, "enabledForGitHubApps": true, - "category": "billing", - "subcategory": "billing" + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "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": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, - "/orgs/{org}/settings/billing/packages": { + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { "get": { - "summary": "Get GitHub Packages billing for an organization", - "description": "Gets the free and paid storage used for GitHub Packages in gigabytes.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", - "operationId": "billing/get-github-packages-billing-org", + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", "tags": [ - "billing" + "hosted-compute" ], + "operationId": "hosted-compute/get-network-configuration-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" }, "parameters": [ { @@ -186614,6 +187873,15 @@ "schema": { "type": "string" } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } } ], "responses": { @@ -186622,59 +187890,310 @@ "content": { "application/json": { "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", "type": "object", "properties": { - "total_gigabytes_bandwidth_used": { - "type": "integer", - "description": "Sum of the free and paid storage space (GB) for GitHuub Packages." + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] }, - "total_paid_gigabytes_bandwidth_used": { - "type": "integer", - "description": "Total paid storage space (GB) for GitHuub Packages." + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] }, - "included_gigabytes_bandwidth": { - "type": "integer", - "description": "Free storage space (GB) for GitHub Packages." + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] } }, "required": [ - "total_gigabytes_bandwidth_used", - "total_paid_gigabytes_bandwidth_used", - "included_gigabytes_bandwidth" + "id", + "name", + "created_on" ] }, "examples": { "default": { "value": { - "total_gigabytes_bandwidth_used": 50, - "total_paid_gigabytes_bandwidth_used": 40, - "included_gigabytes_bandwidth": 10 + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { "githubCloudOnly": false, - "enabledForGitHubApps": false, - "category": "billing", - "subcategory": "billing" + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, - "/orgs/{org}/settings/billing/shared-storage": { + "/orgs/{org}/settings/network-settings/{network_settings_id}": { "get": { - "summary": "Get shared storage billing for an organization", - "description": "Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", - "operationId": "billing/get-shared-storage-billing-org", + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", "tags": [ - "billing" + "hosted-compute" ], + "operationId": "hosted-compute/get-network-settings-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" }, "parameters": [ { @@ -186685,6 +188204,15 @@ "schema": { "type": "string" } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } } ], "responses": { @@ -186693,45 +188221,81 @@ "content": { "application/json": { "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", "type": "object", "properties": { - "days_left_in_billing_cycle": { - "type": "integer", - "description": "Numbers of days left in billing cycle." + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] }, - "estimated_paid_storage_for_month": { - "type": "integer", - "description": "Estimated storage space (GB) used in billing cycle." + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] }, - "estimated_storage_for_month": { - "type": "integer", - "description": "Estimated sum of free and paid storage space (GB) used in billing cycle." + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] } }, "required": [ - "days_left_in_billing_cycle", - "estimated_paid_storage_for_month", - "estimated_storage_for_month" + "id", + "name", + "subnet_id", + "region" ] }, "examples": { "default": { "value": { - "days_left_in_billing_cycle": 20, - "estimated_paid_storage_for_month": 15, - "estimated_storage_for_month": 40 + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { "githubCloudOnly": false, - "enabledForGitHubApps": false, - "category": "billing", - "subcategory": "billing" + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, @@ -328491,6 +330055,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -416291,7 +417863,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -422379,7 +423951,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 8706f5595..63f0e00ad 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -101,6 +101,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -896,7 +898,7 @@ paths: - subscriptions_url - type - url - type: &310 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1029,7 +1031,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &167 + schema: &170 title: Validation Error Simple description: Validation Error Simple type: object @@ -1062,7 +1064,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: - - &620 + - &628 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1658,7 +1660,7 @@ paths: schema: type: integer default: 30 - - &239 + - &243 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1674,7 +1676,7 @@ paths: application/json: schema: type: array - items: &240 + items: &244 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1767,7 +1769,7 @@ paths: - installation_id - repository_id examples: - default: &241 + default: &245 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1799,7 +1801,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &630 + schema: &638 title: Scim Error description: Scim Error type: object @@ -1830,7 +1832,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &166 + schema: &169 title: Validation Error description: Validation Error type: object @@ -1902,7 +1904,7 @@ paths: description: Response content: application/json: - schema: &242 + schema: &246 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2037,7 +2039,7 @@ paths: - request - response examples: - default: &243 + default: &247 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2241,7 +2243,7 @@ paths: parameters: - *17 - *19 - - &131 + - &134 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -3003,7 +3005,7 @@ paths: license: anyOf: - type: 'null' - - &142 + - &145 title: License Simple description: License Simple type: object @@ -7598,7 +7600,7 @@ paths: description: Response content: application/json: - schema: &168 + schema: &171 type: object properties: total_active_caches_count: @@ -7613,7 +7615,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &169 + default: &172 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7825,7 +7827,7 @@ paths: - public_ip_enabled - platform examples: - default: &170 + default: &173 value: total_count: 2 runners: @@ -8122,7 +8124,7 @@ paths: description: Response content: application/json: - schema: &171 + schema: &174 type: object properties: public_ips: @@ -8149,7 +8151,7 @@ paths: required: - public_ips examples: - default: &172 + default: &175 value: public_ips: current_usage: 17 @@ -8189,7 +8191,7 @@ paths: type: array items: *42 examples: - default: &173 + default: &176 value: id: 4-core cpu_cores: 4 @@ -8454,7 +8456,7 @@ paths: - all - local_only - selected - selected_actions_url: &176 + selected_actions_url: &179 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` @@ -8835,7 +8837,7 @@ paths: description: Success response content: application/json: - schema: &179 + schema: &182 type: object properties: default_workflow_permissions: &50 @@ -8883,7 +8885,7 @@ paths: required: true content: application/json: - schema: &180 + schema: &183 type: object properties: default_workflow_permissions: *50 @@ -9724,7 +9726,7 @@ paths: application/json: schema: type: array - items: &184 + items: &187 title: Runner Application description: Runner Application type: object @@ -9749,7 +9751,7 @@ paths: - download_url - filename examples: - default: &185 + default: &188 value: - os: osx architecture: x64 @@ -9833,7 +9835,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &186 + '201': &189 description: Response content: application/json: @@ -9947,7 +9949,7 @@ paths: - token - expires_at examples: - default: &187 + default: &190 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -9987,7 +9989,7 @@ paths: application/json: schema: *62 examples: - default: &188 + default: &191 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10019,7 +10021,7 @@ paths: application/json: schema: *59 examples: - default: &189 + default: &192 value: id: 23 name: MBP @@ -10233,7 +10235,7 @@ paths: - *38 - *58 responses: - '200': &190 + '200': &193 description: Response content: application/json: @@ -10289,7 +10291,7 @@ paths: parameters: - *38 - *58 - - &191 + - &194 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10386,7 +10388,7 @@ paths: required: true content: application/json: - schema: &198 + schema: &201 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -10457,7 +10459,7 @@ paths: required: false schema: type: string - - &199 + - &202 name: include description: |- The event types to include: @@ -10475,7 +10477,7 @@ paths: - web - git - all - - &200 + - &203 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. @@ -10483,7 +10485,7 @@ paths: required: false schema: type: string - - &201 + - &204 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. @@ -10491,7 +10493,7 @@ paths: required: false schema: type: string - - &202 + - &205 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -10513,7 +10515,7 @@ paths: application/json: schema: type: array - items: &203 + items: &206 type: object properties: "@timestamp": @@ -10635,7 +10637,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &204 + default: &207 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11199,7 +11201,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *38 - - &206 + - &209 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`, @@ -11209,7 +11211,7 @@ paths: schema: &83 type: string description: The name of the tool used to generate the code scanning analysis. - - &207 + - &210 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 @@ -11233,7 +11235,7 @@ paths: be returned. in: query required: false - schema: &208 + schema: &211 type: string description: State of a code scanning alert. enum: @@ -11258,7 +11260,7 @@ paths: application/json: schema: type: array - items: &209 + items: &212 type: object properties: number: &94 @@ -11287,7 +11289,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &423 + instances_url: &431 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11323,7 +11325,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &424 + dismissed_reason: &432 type: - string - 'null' @@ -11334,14 +11336,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &425 + dismissed_comment: &433 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &426 + rule: &434 type: object properties: id: @@ -11402,7 +11404,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &435 type: object properties: name: *83 @@ -11413,15 +11415,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *84 - most_recent_instance: &428 + most_recent_instance: &436 type: object properties: - ref: &421 + ref: &429 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &446 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11432,7 +11434,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &439 + category: &447 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -11816,7 +11818,7 @@ paths: - most_recent_instance - repository examples: - default: &210 + default: &213 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -12047,7 +12049,7 @@ paths: headers: Link: *37 '404': *6 - '503': &121 + '503': &124 description: Service unavailable content: application/json: @@ -12577,7 +12579,7 @@ paths: description: Response content: application/json: - schema: &212 + schema: &215 type: array description: A list of default code security configurations items: @@ -12593,7 +12595,7 @@ paths: default configuration: *86 examples: - default: &213 + default: &216 value: - default_for_new_repos: public configuration: @@ -12875,7 +12877,7 @@ paths: - *38 - *88 responses: - '204': &108 + '204': &111 description: A header with no content is returned. '400': *14 '403': *27 @@ -13003,7 +13005,7 @@ paths: default: value: default_for_new_repos: all - configuration: &211 + configuration: &214 value: id: 1325 target_type: organization @@ -13083,7 +13085,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 type: object description: Repositories associated with a code security configuration and attachment status @@ -13107,7 +13109,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &215 + repository: &218 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -13590,7 +13592,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &217 + items: &220 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -13605,7 +13607,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &261 + - &265 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -13664,7 +13666,7 @@ paths: parent: anyOf: - type: 'null' - - &274 + - &278 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -13868,7 +13870,7 @@ paths: - created_at additionalProperties: false examples: - default: &218 + default: &221 value: total_seats: 2 seats: @@ -14003,7 +14005,7 @@ paths: application/json: schema: type: array - items: &123 + items: &126 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -14319,7 +14321,7 @@ paths: - date additionalProperties: true examples: - default: &124 + default: &127 value: - date: '2024-06-24' total_active_users: 24 @@ -14421,7 +14423,7 @@ paths: '500': *93 '403': *27 '404': *6 - '422': &125 + '422': &128 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -14491,7 +14493,7 @@ paths: application/json: schema: type: array - items: &126 + items: &129 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -14671,7 +14673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &225 + - &228 name: state in: query description: |- @@ -14680,7 +14682,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &226 + - &229 name: severity in: query description: |- @@ -14689,7 +14691,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &227 + - &230 name: ecosystem in: query description: |- @@ -14698,14 +14700,26 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &228 + - &231 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 - - &229 + - &232 + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string + - &233 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -14715,7 +14729,7 @@ paths: enum: - development - runtime - - &230 + - &234 name: sort in: query description: |- @@ -14733,7 +14747,7 @@ paths: - *82 - *80 - *81 - - &231 + - &235 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -14746,7 +14760,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &232 + - &236 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -14766,7 +14780,7 @@ paths: application/json: schema: type: array - items: &233 + items: &237 type: object description: A Dependabot alert. properties: @@ -14818,7 +14832,7 @@ paths: - development - runtime - - security_advisory: &475 + security_advisory: &483 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15053,7 +15067,7 @@ paths: dismissal. maxLength: 280 fixed_at: *103 - auto_dismissed_at: &476 + auto_dismissed_at: &484 type: - string - 'null' @@ -15080,7 +15094,7 @@ paths: - repository additionalProperties: false examples: - default: &234 + default: &238 value: - number: 2 state: dismissed @@ -15472,6 +15486,370 @@ paths: previews: [] category: enterprise-admin subcategory: license + "/enterprises/{enterprise}/network-configurations": + get: + summary: List hosted compute network configurations for an enterprise + description: Lists all hosted compute network configurations configured in an + enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise + parameters: + - *38 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: &104 + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration + supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings + in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration + was created, in ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + examples: + default: &323 + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an enterprise + description: Creates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *104 + examples: + default: &105 + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an enterprise + description: Gets a hosted compute network configuration configured in an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + - &106 + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an enterprise + description: Updates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + - *106 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an enterprise + description: Deletes a hosted compute network configuration from an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise + parameters: + - *38 + - *106 + responses: + '204': + description: Response + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an enterprise + description: Gets a hosted compute network settings resource configured for + an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-settings-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise + parameters: + - *38 + - &324 + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: &325 + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that + is using this settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured + for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings + resource is configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region + examples: + default: &326 + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations "/enterprises/{enterprise}/properties/schema": get: summary: Get custom properties for an enterprise @@ -15496,7 +15874,7 @@ paths: application/json: schema: type: array - items: &104 + items: &107 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -15572,7 +15950,7 @@ paths: - property_name - value_type examples: - default: &105 + default: &108 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -15628,7 +16006,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *104 + items: *107 minItems: 1 maxItems: 100 required: @@ -15658,9 +16036,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -15685,7 +16063,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *38 - - &106 + - &109 name: custom_property_name description: The custom property name in: path @@ -15697,9 +16075,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: &107 + default: &110 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -15735,12 +16113,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *38 - - *106 + - *109 requestBody: required: true content: application/json: - schema: &292 + schema: &296 title: Custom Property Set Payload description: Custom property set payload type: object @@ -15802,9 +16180,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -15829,9 +16207,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *38 - - *106 + - *109 responses: - '204': *108 + '204': *111 '403': *27 '404': *6 x-github: @@ -15871,7 +16249,7 @@ paths: - push - repository default: branch - enforcement: &115 + enforcement: &118 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -15884,7 +16262,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &116 + items: &119 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -15922,7 +16300,7 @@ paths: - always - pull_request default: always - conditions: &120 + conditions: &123 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -15936,7 +16314,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &109 + - &112 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -15962,7 +16340,7 @@ paths: type: string required: - organization_name - - &112 + - &115 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -15991,7 +16369,7 @@ paths: is prevented. required: - repository_name - - &111 + - &114 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -16019,8 +16397,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *109 - - &114 + - *112 + - &117 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -16033,7 +16411,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &110 + items: &113 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -16064,16 +16442,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *110 + items: *113 required: - repository_property - - *111 + - *114 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &113 + - &116 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -16090,25 +16468,25 @@ paths: type: integer required: - organization_id - - *112 - - *111 + - *115 + - *114 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *113 + - *116 + - *117 - *114 - - *111 rules: type: array description: An array of rules within the ruleset. - items: &117 + items: &120 title: Repository Rule type: object description: A repository rule. oneOf: - - &582 + - &590 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16120,7 +16498,7 @@ paths: type: string enum: - creation - - &583 + - &591 title: update description: Only allow users with bypass permission to update matching refs. @@ -16141,7 +16519,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &585 + - &593 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -16153,7 +16531,7 @@ paths: type: string enum: - deletion - - &586 + - &594 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -16165,7 +16543,7 @@ paths: type: string enum: - required_linear_history - - &587 + - &595 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -16241,7 +16619,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &588 + - &596 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -16265,7 +16643,7 @@ paths: type: string required: - required_deployment_environments - - &589 + - &597 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -16277,7 +16655,7 @@ paths: type: string enum: - required_signatures - - &590 + - &598 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -16328,7 +16706,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &591 + - &599 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -16375,7 +16753,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &592 + - &600 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -16387,7 +16765,7 @@ paths: type: string enum: - non_fast_forward - - &593 + - &601 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -16423,7 +16801,7 @@ paths: required: - operator - pattern - - &594 + - &602 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -16459,7 +16837,7 @@ paths: required: - operator - pattern - - &595 + - &603 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -16495,7 +16873,7 @@ paths: required: - operator - pattern - - &596 + - &604 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -16531,7 +16909,7 @@ paths: required: - operator - pattern - - &597 + - &605 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -16657,7 +17035,7 @@ paths: maximum: 100 required: - max_file_size - - &598 + - &606 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -16706,7 +17084,7 @@ paths: - repository_id required: - workflows - - &599 + - &607 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -16792,7 +17170,7 @@ paths: description: Response content: application/json: - schema: &118 + schema: &121 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -16827,11 +17205,11 @@ paths: source: type: string description: The name of the source - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 + items: *119 current_user_can_bypass: type: string description: |- @@ -16862,8 +17240,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *111 - - &297 + - *114 + - &301 title: Organization ruleset conditions type: object description: |- @@ -16877,14 +17255,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *111 - - *112 + - *114 + - *115 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *111 + - *114 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -16906,14 +17284,14 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *111 - *114 + - *117 type: - 'null' - object rules: type: array - items: *117 + items: *120 created_at: type: string format: date-time @@ -16921,7 +17299,7 @@ paths: type: string format: date-time examples: - default: &119 + default: &122 value: id: 21 name: super cool ruleset @@ -16980,9 +17358,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *119 + default: *122 '404': *6 '500': *93 x-github: @@ -17026,16 +17404,16 @@ paths: - tag - push - repository - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *120 + items: *119 + conditions: *123 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -17059,9 +17437,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *119 + default: *122 '404': *6 '500': *93 x-github: @@ -17110,7 +17488,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &301 + - &305 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -17121,7 +17499,7 @@ paths: enum: - open - resolved - - &302 + - &306 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -17131,7 +17509,7 @@ paths: required: false schema: type: string - - &303 + - &307 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -17140,7 +17518,7 @@ paths: required: false schema: type: string - - &304 + - &308 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. @@ -17156,7 +17534,7 @@ paths: - *17 - *80 - *81 - - &305 + - &309 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -17165,7 +17543,7 @@ paths: required: false schema: type: string - - &306 + - &310 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -17174,7 +17552,7 @@ paths: schema: type: boolean default: false - - &307 + - &311 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -17190,7 +17568,7 @@ paths: application/json: schema: type: array - items: &308 + items: &312 type: object properties: number: *94 @@ -17206,14 +17584,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &612 + state: &620 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: &613 + resolution: &621 type: - string - 'null' @@ -17312,7 +17690,7 @@ paths: description: Whether the detected secret was found in multiple repositories in the same organization or enterprise. examples: - default: &309 + default: &313 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -17547,7 +17925,7 @@ paths: headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -17575,7 +17953,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &315 type: object properties: total_minutes_used: @@ -17645,7 +18023,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &312 + default: &316 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -17683,7 +18061,7 @@ paths: description: Success content: application/json: - schema: &313 + schema: &317 type: object properties: total_advanced_security_committers: @@ -17746,7 +18124,7 @@ paths: required: - repositories examples: - default: &314 + default: &318 value: total_advanced_security_committers: 2 total_count: 2 @@ -17834,7 +18212,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17855,7 +18233,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-users-to-a-cost-center parameters: - *38 - - &122 + - &125 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -17899,7 +18277,7 @@ paths: '403': *27 '409': *90 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17919,7 +18297,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-users-from-a-cost-center parameters: - *38 - - *122 + - *125 requestBody: required: true content: @@ -17957,7 +18335,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17985,7 +18363,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &319 type: object properties: total_gigabytes_bandwidth_used: @@ -18003,7 +18381,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &316 + default: &320 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -18035,7 +18413,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &321 type: object properties: days_left_in_billing_cycle: @@ -18053,7 +18431,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &318 + default: &322 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -18078,7 +18456,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *38 - - &157 + - &160 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18087,7 +18465,7 @@ paths: required: false schema: type: integer - - &158 + - &161 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. @@ -18095,7 +18473,7 @@ paths: required: false schema: type: integer - - &159 + - &162 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. @@ -18103,7 +18481,7 @@ paths: required: false schema: type: integer - - &160 + - &163 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. @@ -18123,7 +18501,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &161 + schema: &164 type: object properties: usageItems: @@ -18176,7 +18554,7 @@ paths: - netAmount - organizationName examples: - default: &162 + default: &165 value: usageItems: - date: '2023-08-01' @@ -18193,7 +18571,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -18264,13 +18642,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18305,7 +18683,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-an-enterprise-team parameters: - *38 - - &273 + - &277 name: team_slug description: The slug of the team name. in: path @@ -18343,9 +18721,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: &219 + default: &222 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -18501,7 +18879,7 @@ paths: application/json: schema: type: array - items: &152 + items: &155 title: Event description: Event type: object @@ -18512,7 +18890,7 @@ paths: type: - string - 'null' - actor: &127 + actor: &130 title: Actor description: Actor type: object @@ -18553,13 +18931,13 @@ paths: - id - name - url - org: *127 + org: *130 payload: type: object properties: action: type: string - issue: &141 + issue: &144 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -18679,7 +19057,7 @@ paths: milestone: anyOf: - type: 'null' - - &463 + - &471 title: Milestone description: A collection of related issues and pull requests. @@ -18856,7 +19234,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &128 + author_association: &131 title: author_association type: string description: How the author is associated with the repository. @@ -18871,7 +19249,7 @@ paths: - OWNER examples: - OWNER - reactions: &129 + reactions: &132 title: Reaction Rollup type: object properties: @@ -18943,7 +19321,7 @@ paths: - author_association - created_at - updated_at - comment: &522 + comment: &530 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -18993,12 +19371,12 @@ paths: issue_url: type: string format: uri - author_association: *128 + author_association: *131 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - id - node_id @@ -19095,7 +19473,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19185,7 +19563,7 @@ paths: _links: type: object properties: - timeline: &130 + timeline: &133 title: Link With Type description: Hypermedia Link with Type type: object @@ -19197,17 +19575,17 @@ paths: required: - href - type - user: *130 - security_advisories: *130 - current_user: *130 - current_user_public: *130 - current_user_actor: *130 - current_user_organization: *130 + user: *133 + security_advisories: *133 + current_user: *133 + current_user_public: *133 + current_user_actor: *133 + current_user_organization: *133 current_user_organizations: type: array - items: *130 - repository_discussions: *130 - repository_discussions_category: *130 + items: *133 + repository_discussions: *133 + repository_discussions_category: *133 required: - timeline - user @@ -19269,7 +19647,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *131 + - *134 - *17 - *19 responses: @@ -19279,7 +19657,7 @@ paths: application/json: schema: type: array - items: &132 + items: &135 title: Base Gist description: Base Gist type: object @@ -19376,7 +19754,7 @@ paths: - created_at - updated_at examples: - default: &133 + default: &136 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -19500,7 +19878,7 @@ paths: description: Response content: application/json: - schema: &134 + schema: &137 title: Gist Simple description: Gist Simple type: object @@ -19518,7 +19896,7 @@ paths: url: type: string format: uri - user: &669 + user: &677 title: Public User description: Public User type: object @@ -19892,7 +20270,7 @@ paths: truncated: type: boolean examples: - default: &135 + default: &138 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -19996,7 +20374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *131 + - *134 - *17 - *19 responses: @@ -20006,9 +20384,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '422': *15 @@ -20030,7 +20408,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *131 + - *134 - *17 - *19 responses: @@ -20040,9 +20418,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '401': *23 @@ -20070,7 +20448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &136 + - &139 name: gist_id description: The unique identifier of the gist. in: path @@ -20082,10 +20460,10 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - default: *135 - '403': &139 + default: *138 + '403': &142 description: Forbidden Gist content: application/json: @@ -20134,7 +20512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *136 + - *139 requestBody: required: true content: @@ -20198,9 +20576,9 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - updateGist: *135 + updateGist: *138 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -20358,7 +20736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -20387,7 +20765,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20397,7 +20775,7 @@ paths: application/json: schema: type: array - items: &137 + items: &140 title: Gist Comment description: A comment made to a gist. type: object @@ -20435,7 +20813,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *128 + author_association: *131 required: - url - id @@ -20500,7 +20878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *136 + - *139 requestBody: required: true content: @@ -20526,9 +20904,9 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: &138 + default: &141 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -20586,8 +20964,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *136 - - &140 + - *139 + - &143 name: comment_id description: The unique identifier of the comment. in: path @@ -20600,12 +20978,12 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: *138 + default: *141 '304': *35 '404': *6 - '403': *139 + '403': *142 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20627,8 +21005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *136 - - *140 + - *139 + - *143 requestBody: required: true content: @@ -20654,9 +21032,9 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: *138 + default: *141 '404': *6 x-github: githubCloudOnly: false @@ -20673,8 +21051,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *136 - - *140 + - *139 + - *143 responses: '204': description: Response @@ -20697,7 +21075,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20798,7 +21176,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20808,7 +21186,7 @@ paths: application/json: schema: type: array - items: *134 + items: *137 examples: default: value: @@ -20873,13 +21251,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *136 + - *139 responses: '201': description: Response content: application/json: - schema: *132 + schema: *135 examples: default: value: @@ -20950,7 +21328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *136 + - *139 responses: '204': description: Response if gist is starred @@ -20980,7 +21358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -21002,7 +21380,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -21031,7 +21409,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *136 + - *139 - name: sha in: path required: true @@ -21042,9 +21420,9 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - default: *135 + default: *138 '422': *15 '404': *6 '403': *27 @@ -21413,7 +21791,7 @@ paths: - closed - all default: open - - &262 + - &266 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -21432,7 +21810,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - name: collab in: query required: false @@ -21462,9 +21840,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: &263 + default: &267 value: - id: 1 node_id: MDU6SXNzdWUx @@ -21744,7 +22122,7 @@ paths: application/json: schema: type: array - items: *142 + items: *145 examples: default: value: @@ -22041,7 +22419,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &143 + X-CommonMarker-Version: &146 example: 0.17.4 schema: type: string @@ -22096,7 +22474,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *143 + X-CommonMarker-Version: *146 content: text/html: schema: @@ -22125,7 +22503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &146 + - &149 name: account_id description: account_id parameter in: path @@ -22137,7 +22515,7 @@ paths: description: Response content: application/json: - schema: &145 + schema: &148 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -22171,7 +22549,7 @@ paths: - 'null' id: type: integer - plan: &144 + plan: &147 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -22274,7 +22652,7 @@ paths: - 'null' updated_at: type: string - plan: *144 + plan: *147 required: - url - id @@ -22282,7 +22660,7 @@ paths: - login - marketplace_purchase examples: - default: &147 + default: &150 value: url: https://api.github.com/orgs/github type: Organization @@ -22367,9 +22745,9 @@ paths: application/json: schema: type: array - items: *144 + items: *147 examples: - default: &148 + default: &151 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -22409,14 +22787,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &149 + - &152 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &150 + - &153 name: sort description: The property to sort the results by. in: query @@ -22446,9 +22824,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: &151 + default: &154 value: - url: https://api.github.com/orgs/github type: Organization @@ -22522,15 +22900,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *146 + - *149 responses: '200': description: Response content: application/json: - schema: *145 + schema: *148 examples: - default: *147 + default: *150 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -22562,9 +22940,9 @@ paths: application/json: schema: type: array - items: *144 + items: *147 examples: - default: *148 + default: *151 headers: Link: *37 '401': *23 @@ -22587,8 +22965,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *149 - - *150 + - *152 + - *153 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -22608,9 +22986,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *151 + default: *154 headers: Link: *37 '401': *23 @@ -22875,14 +23253,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: - - &338 + - &346 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &339 + - &347 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -22899,7 +23277,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -22953,7 +23331,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &352 + '301': &360 description: Moved permanently content: application/json: @@ -22975,7 +23353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &559 name: all description: If `true`, show notifications marked as read. in: query @@ -22983,7 +23361,7 @@ paths: schema: type: boolean default: false - - &552 + - &560 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -22992,8 +23370,8 @@ paths: schema: type: boolean default: false - - *131 - - &553 + - *134 + - &561 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: @@ -23018,14 +23396,14 @@ paths: application/json: schema: type: array - items: &153 + items: &156 title: Thread description: Thread type: object properties: id: type: string - repository: &183 + repository: &186 title: Minimal Repository description: Minimal Repository type: object @@ -23364,7 +23742,7 @@ paths: type: boolean examples: - false - security_and_analysis: &294 + security_and_analysis: &298 type: - object - 'null' @@ -23519,7 +23897,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &562 value: - id: '1' repository: @@ -23685,7 +24063,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &154 + - &157 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -23699,7 +24077,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -23802,7 +24180,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *154 + - *157 responses: '205': description: Reset Content @@ -23825,7 +24203,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *154 + - *157 responses: '204': description: No content @@ -23848,13 +24226,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *154 + - *157 responses: '200': description: Response content: application/json: - schema: &155 + schema: &158 title: Thread Subscription description: Thread Subscription type: object @@ -23898,7 +24276,7 @@ paths: - url - subscribed examples: - default: &156 + default: &159 value: subscribed: true ignored: false @@ -23929,7 +24307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *154 + - *157 requestBody: required: false content: @@ -23950,9 +24328,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *156 + default: *159 '304': *35 '403': *27 '401': *23 @@ -23975,7 +24353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *154 + - *157 responses: '204': description: Response @@ -24072,7 +24450,7 @@ paths: type: array items: *56 examples: - default: &686 + default: &694 value: - login: github id: 1 @@ -24137,7 +24515,7 @@ paths: - 3 custom_roles: type: array - items: &220 + items: &223 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -24186,7 +24564,7 @@ paths: - created_at - updated_at examples: - default: &221 + default: &224 value: id: 8030 name: Security Engineer @@ -24232,29 +24610,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - - &163 + - &166 name: org description: The organization name. The name is not case sensitive. in: path required: true schema: type: string - - *157 - - *158 - - *159 - *160 + - *161 + - *162 + - *163 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24280,13 +24658,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &164 + schema: &167 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -24656,7 +25034,7 @@ paths: - updated_at - archived_at examples: - default-response: &165 + default-response: &168 value: login: github id: 1 @@ -24749,7 +25127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *163 + - *166 requestBody: required: false content: @@ -24973,17 +25351,17 @@ paths: description: Response content: application/json: - schema: *164 + schema: *167 examples: - default: *165 + default: *168 '422': description: Validation failed content: application/json: schema: oneOf: - - *166 - - *167 + - *169 + - *170 '409': *90 x-github: githubCloudOnly: false @@ -25007,7 +25385,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *163 + - *166 responses: '202': *91 '404': *6 @@ -25032,15 +25410,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *168 + schema: *171 examples: - default: *169 + default: *172 headers: Link: *37 x-github: @@ -25063,7 +25441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25081,7 +25459,7 @@ paths: type: integer repository_cache_usages: type: array - items: &357 + items: &365 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25139,7 +25517,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25159,7 +25537,7 @@ paths: type: array items: *39 examples: - default: *170 + default: *173 headers: Link: *37 x-github: @@ -25179,7 +25557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -25273,7 +25651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25309,7 +25687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25344,15 +25722,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *171 + schema: *174 examples: - default: *172 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25370,7 +25748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25388,7 +25766,7 @@ paths: type: array items: *42 examples: - default: *173 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25406,7 +25784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25450,7 +25828,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 responses: '200': @@ -25479,7 +25857,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 requestBody: required: true @@ -25543,7 +25921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 responses: '202': @@ -25572,13 +25950,13 @@ 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-an-organization parameters: - - *163 + - *166 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &174 + schema: &177 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -25592,7 +25970,7 @@ paths: required: - include_claim_keys examples: - default: &175 + default: &178 value: include_claim_keys: - repo @@ -25614,20 +25992,20 @@ 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-an-organization parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: *174 + schema: *177 examples: - default: *175 + default: *178 responses: '201': description: Empty response content: application/json: - schema: &194 + schema: &197 title: Empty Object description: An object without any properties. type: object @@ -25657,7 +26035,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25666,7 +26044,7 @@ paths: schema: type: object properties: - enabled_repositories: &177 + enabled_repositories: &180 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -25680,7 +26058,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *46 - selected_actions_url: *176 + selected_actions_url: *179 required: - enabled_repositories examples: @@ -25709,7 +26087,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -25720,7 +26098,7 @@ paths: schema: type: object properties: - enabled_repositories: *177 + enabled_repositories: *180 allowed_actions: *46 required: - enabled_repositories @@ -25748,7 +26126,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25768,7 +26146,7 @@ paths: type: array items: *61 examples: - default: &680 + default: &688 value: total_count: 1 repositories: @@ -25908,7 +26286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -25952,8 +26330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *163 - - &178 + - *166 + - &181 name: repository_id description: The unique identifier of the repository. in: path @@ -25981,8 +26359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *163 - - *178 + - *166 + - *181 responses: '204': description: Response @@ -26005,7 +26383,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -26036,7 +26414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -26068,13 +26446,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: default: *52 x-github: @@ -26097,7 +26475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Success response @@ -26108,7 +26486,7 @@ paths: required: false content: application/json: - schema: *180 + schema: *183 examples: default: *52 x-github: @@ -26130,7 +26508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *163 + - *166 - *17 - *19 - name: visible_to_repository @@ -26155,7 +26533,7 @@ paths: type: number runner_groups: type: array - items: &181 + items: &184 type: object properties: id: @@ -26272,7 +26650,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -26345,9 +26723,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *184 examples: - default: &182 + default: &185 value: id: 2 name: octo-runner-group @@ -26382,14 +26760,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 - *55 responses: '200': description: Response content: application/json: - schema: *181 + schema: *184 examples: default: value: @@ -26425,7 +26803,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -26482,9 +26860,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *184 examples: - default: *182 + default: *185 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26503,7 +26881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *163 + - *166 - *55 responses: '204': @@ -26527,7 +26905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *17 - *19 @@ -26548,7 +26926,7 @@ paths: type: array items: *39 examples: - default: *170 + default: *173 headers: Link: *37 x-github: @@ -26570,7 +26948,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - *19 - *17 @@ -26589,9 +26967,9 @@ paths: type: number repositories: type: array - items: *183 + items: *186 examples: - default: &672 + default: &680 value: total_count: 1 repositories: @@ -26843,7 +27221,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -26888,9 +27266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - - *178 + - *181 responses: '204': description: Response @@ -26912,9 +27290,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - - *178 + - *181 responses: '204': description: Response @@ -26937,7 +27315,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *17 - *19 @@ -26979,7 +27357,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -27024,7 +27402,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *58 responses: @@ -27048,7 +27426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *58 responses: @@ -27080,7 +27458,7 @@ paths: in: query schema: type: string - - *163 + - *166 - *17 - *19 responses: @@ -27124,7 +27502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -27132,9 +27510,9 @@ paths: application/json: schema: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27156,7 +27534,7 @@ 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-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -27199,7 +27577,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *186 + '201': *189 '404': *6 '422': *7 x-github: @@ -27229,7 +27607,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *163 + - *166 responses: '201': description: Response @@ -27237,7 +27615,7 @@ paths: application/json: schema: *62 examples: - default: *187 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27265,7 +27643,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *163 + - *166 responses: '201': description: Response @@ -27273,7 +27651,7 @@ paths: application/json: schema: *62 examples: - default: *188 + default: *191 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27295,7 +27673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *58 responses: '200': @@ -27304,7 +27682,7 @@ paths: application/json: schema: *59 examples: - default: *189 + default: *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27325,7 +27703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *163 + - *166 - *58 responses: '204': @@ -27351,7 +27729,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 responses: '200': *64 @@ -27376,7 +27754,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 requestBody: required: true @@ -27425,7 +27803,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 requestBody: required: true @@ -27475,10 +27853,10 @@ 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-an-organization parameters: - - *163 + - *166 - *58 responses: - '200': *190 + '200': *193 '404': *6 x-github: githubCloudOnly: false @@ -27505,9 +27883,9 @@ 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-an-organization parameters: - - *163 + - *166 - *58 - - *191 + - *194 responses: '200': *64 '404': *6 @@ -27534,7 +27912,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -27552,7 +27930,7 @@ paths: type: integer secrets: type: array - items: &192 + items: &195 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -27627,13 +28005,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &377 + schema: &385 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27668,7 +28046,7 @@ paths: - key_id - key examples: - default: &378 + default: &386 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27693,8 +28071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *163 - - &193 + - *166 + - &196 name: secret_name description: The name of the secret. in: path @@ -27706,7 +28084,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: default: value: @@ -27736,8 +28114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -27792,7 +28170,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -27818,8 +28196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -27845,8 +28223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -27864,9 +28242,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: &197 + default: &200 value: total_count: 1 repositories: @@ -27958,8 +28336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -28011,8 +28389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -28045,8 +28423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -28078,8 +28456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *163 - - &362 + - *166 + - &370 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)." @@ -28103,7 +28481,7 @@ paths: type: integer variables: type: array - items: &195 + items: &198 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -28193,7 +28571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *163 + - *166 requestBody: required: true content: @@ -28241,7 +28619,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -28266,8 +28644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *163 - - &196 + - *166 + - &199 name: name description: The name of the variable. in: path @@ -28279,7 +28657,7 @@ paths: description: Response content: application/json: - schema: *195 + schema: *198 examples: default: value: @@ -28309,8 +28687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 requestBody: required: true content: @@ -28372,8 +28750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 responses: '204': description: Response @@ -28399,8 +28777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - *19 - *17 responses: @@ -28418,9 +28796,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28446,8 +28824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 requestBody: required: true content: @@ -28496,8 +28874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - name: repository_id in: path required: true @@ -28531,8 +28909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - name: repository_id in: path required: true @@ -28563,7 +28941,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -28590,11 +28968,11 @@ paths: required: true content: application/json: - schema: *198 + schema: *201 examples: default: *67 parameters: - - *163 + - *166 responses: '200': description: Response @@ -28618,7 +28996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -28646,7 +29024,7 @@ paths: - *17 - *80 - *81 - - *163 + - *166 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -28689,7 +29067,7 @@ paths: bundle_url: type: string examples: - default: &391 + default: &399 value: attestations: - bundle: @@ -28807,7 +29185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *163 + - *166 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -28815,10 +29193,10 @@ paths: required: false schema: type: string - - *199 - - *200 - - *201 - *202 + - *203 + - *204 + - *205 - *17 responses: '200': @@ -28827,9 +29205,9 @@ paths: application/json: schema: type: array - items: *203 + items: *206 examples: - default: *204 + default: *207 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -28846,7 +29224,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -28858,7 +29236,7 @@ paths: type: array items: *4 examples: - default: &264 + default: &268 value: - login: octocat id: 1 @@ -28896,8 +29274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *163 - - &205 + - *166 + - &208 name: username description: The handle for the GitHub user account. in: path @@ -28928,8 +29306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -28949,8 +29327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -28976,14 +29354,14 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *163 - - &298 + - *166 + - &302 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - &408 + - &416 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -28991,7 +29369,7 @@ paths: required: false schema: type: string - - &409 + - &417 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -28999,7 +29377,7 @@ paths: required: false schema: type: string - - &299 + - &303 name: time_period description: |- The time period to filter by. @@ -29015,7 +29393,7 @@ paths: - week - month default: day - - &410 + - &418 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -29040,7 +29418,7 @@ paths: application/json: schema: type: array - items: &411 + items: &419 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -29201,7 +29579,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &412 + default: &420 value: - id: 21 number: 42 @@ -29287,9 +29665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *163 - - *206 - - *207 + - *166 + - *209 + - *210 - *80 - *81 - *19 @@ -29300,7 +29678,7 @@ paths: be returned. in: query required: false - schema: *208 + schema: *211 - name: sort description: The property by which to sort the results. in: query @@ -29316,7 +29694,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &430 type: string description: Severity of a code scanning alert. enum: @@ -29334,13 +29712,13 @@ paths: application/json: schema: type: array - items: *209 + items: *212 examples: - default: *210 + default: *213 headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29362,7 +29740,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *163 + - *166 - name: target_type in: query description: The target type of the code security configuration @@ -29469,7 +29847,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *163 + - *166 requestBody: required: true content: @@ -29644,7 +30022,7 @@ paths: application/json: schema: *86 examples: - default: *211 + default: *214 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29666,15 +30044,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *213 + default: *216 '304': *35 '403': *27 '404': *6 @@ -29700,7 +30078,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *163 + - *166 requestBody: required: true content: @@ -29723,7 +30101,7 @@ paths: - 32 - 91 responses: - '204': *108 + '204': *111 '400': *14 '403': *27 '404': *6 @@ -29749,7 +30127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *163 + - *166 - *88 responses: '200': @@ -29758,7 +30136,7 @@ paths: application/json: schema: *86 examples: - default: *211 + default: *214 '304': *35 '403': *27 '404': *6 @@ -29782,7 +30160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -29990,10 +30368,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *163 + - *166 - *88 responses: - '204': *108 + '204': *111 '400': *14 '403': *27 '404': *6 @@ -30021,7 +30399,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -30085,7 +30463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -30131,7 +30509,7 @@ paths: default: value: default_for_new_repos: all - configuration: *211 + configuration: *214 '403': *27 '404': *6 x-github: @@ -30155,7 +30533,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *163 + - *166 - *88 - name: per_page description: The number of results per page (max 100). For more information, @@ -30184,13 +30562,13 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *215 + repository: *218 '403': *27 '404': *6 x-github: @@ -30214,7 +30592,7 @@ paths: parameters: - *17 - *19 - - *163 + - *166 responses: '200': description: Response @@ -30230,7 +30608,7 @@ paths: type: integer codespaces: type: array - items: &265 + items: &269 type: object title: Codespace description: A codespace. @@ -30261,11 +30639,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *183 + repository: *186 machine: anyOf: - type: 'null' - - &451 + - &459 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -30552,7 +30930,7 @@ paths: - pulls_url - recent_folders examples: - default: &266 + default: &270 value: total_count: 3 codespaces: @@ -30984,7 +31362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *163 + - *166 deprecated: true requestBody: required: true @@ -31051,7 +31429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *163 + - *166 deprecated: true requestBody: required: true @@ -31106,7 +31484,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *163 + - *166 requestBody: required: true content: @@ -31158,7 +31536,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -31176,7 +31554,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &219 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -31217,7 +31595,7 @@ paths: - updated_at - visibility examples: - default: &452 + default: &460 value: total_count: 2 secrets: @@ -31249,13 +31627,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &453 + schema: &461 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -31290,7 +31668,7 @@ paths: - key_id - key examples: - default: &454 + default: &462 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31313,16 +31691,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: Response content: application/json: - schema: *216 + schema: *219 examples: - default: &456 + default: &464 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -31349,8 +31727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -31405,7 +31783,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -31431,8 +31809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -31457,8 +31835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -31476,9 +31854,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 '404': *6 x-github: githubCloudOnly: false @@ -31500,8 +31878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -31551,8 +31929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -31585,8 +31963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -31625,7 +32003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *163 + - *166 responses: '200': description: OK @@ -31768,7 +32146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *163 + - *166 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -31791,9 +32169,9 @@ paths: currently being billed. seats: type: array - items: *217 + items: *220 examples: - default: *218 + default: *221 headers: Link: *37 '500': *93 @@ -31829,7 +32207,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -31907,7 +32285,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -31987,7 +32365,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -32064,7 +32442,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -32145,7 +32523,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *163 + - *166 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -32177,13 +32555,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32214,7 +32592,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-organization-members parameters: - - *163 + - *166 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -32246,9 +32624,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: *219 + default: *222 '500': *93 '401': *23 '403': *27 @@ -32274,7 +32652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -32433,7 +32811,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *163 + - *166 - name: credential_id in: path required: true @@ -32464,7 +32842,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response - list of custom role names @@ -32480,7 +32858,7 @@ paths: - 3 custom_roles: type: array - items: *220 + items: *223 examples: default: value: @@ -32567,12 +32945,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: &223 + schema: &226 type: object properties: name: @@ -32614,9 +32992,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32640,8 +33018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *163 - - &222 + - *166 + - &225 name: role_id description: The unique identifier of the role. in: path @@ -32653,9 +33031,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 x-github: githubCloudOnly: true @@ -32677,13 +33055,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: application/json: - schema: &224 + schema: &227 type: object properties: name: @@ -32722,9 +33100,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32748,8 +33126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -32777,12 +33155,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -32796,9 +33174,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32828,16 +33206,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 x-github: githubCloudOnly: true @@ -32865,13 +33243,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -32886,9 +33264,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32918,8 +33296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -32947,18 +33325,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *163 - - *225 - - *226 - - *227 + - *166 - *228 - *229 - *230 + - *231 + - *232 + - *233 + - *234 - *82 - *80 - *81 - - *231 - - *232 + - *235 + - *236 - *17 responses: '200': @@ -32967,9 +33346,9 @@ paths: application/json: schema: type: array - items: *233 + items: *237 examples: - default: *234 + default: *238 '304': *35 '400': *14 '403': *27 @@ -32995,7 +33374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33013,7 +33392,7 @@ paths: type: integer secrets: type: array - items: &235 + items: &239 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -33086,13 +33465,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &479 + schema: &487 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -33111,7 +33490,7 @@ paths: - key_id - key examples: - default: &480 + default: &488 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33134,14 +33513,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: Response content: application/json: - schema: *235 + schema: *239 examples: default: value: @@ -33169,8 +33548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -33225,7 +33604,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -33249,8 +33628,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -33274,8 +33653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -33293,9 +33672,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33316,8 +33695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -33367,8 +33746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -33399,8 +33778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -33430,7 +33809,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -33438,7 +33817,7 @@ paths: application/json: schema: type: array - items: &276 + items: &280 title: Package description: A software package type: object @@ -33491,7 +33870,7 @@ paths: repository: anyOf: - type: 'null' - - *183 + - *186 created_at: type: string format: date-time @@ -33509,7 +33888,7 @@ paths: - created_at - updated_at examples: - default: &277 + default: &281 value: - id: 197 name: hello_docker @@ -33587,7 +33966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33597,7 +33976,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: 200-response: value: @@ -33667,7 +34046,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *163 + - *166 - name: group_id description: The unique identifier of the group. in: path @@ -33693,7 +34072,7 @@ paths: description: Response content: application/json: - schema: &333 + schema: &341 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -33783,7 +34162,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &334 + default: &342 value: group_id: '123' group_name: Octocat admins @@ -33821,7 +34200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-in-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -33838,7 +34217,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &339 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -33878,7 +34257,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &332 + default: &340 value: groups: - group_id: '123' @@ -33912,7 +34291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33922,7 +34301,7 @@ paths: application/json: schema: type: array - items: &258 + items: &262 title: Organization Invitation description: Organization Invitation type: object @@ -33976,7 +34355,7 @@ paths: - invitation_teams_url - node_id examples: - default: &259 + default: &263 value: - id: 1 login: monalisa @@ -34035,7 +34414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -34043,7 +34422,7 @@ paths: application/json: schema: type: array - items: &295 + items: &299 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -34057,7 +34436,7 @@ paths: - name - description examples: - default: &296 + default: &300 value: - name: add_assignee description: Assign or remove a user @@ -34088,7 +34467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *163 + - *166 - *17 - *19 responses: @@ -34098,7 +34477,7 @@ paths: application/json: schema: type: array - items: &236 + items: &240 title: Org Hook description: Org Hook type: object @@ -34219,7 +34598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *163 + - *166 requestBody: required: true content: @@ -34281,9 +34660,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: - default: &237 + default: &241 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -34327,8 +34706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *163 - - &238 + - *166 + - &242 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. @@ -34341,9 +34720,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: - default: *237 + default: *241 '404': *6 x-github: githubCloudOnly: false @@ -34364,8 +34743,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 requestBody: required: false content: @@ -34411,7 +34790,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: default: value: @@ -34450,8 +34829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 responses: '204': description: Response @@ -34476,8 +34855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *163 - - *238 + - *166 + - *242 responses: '200': description: Response @@ -34505,8 +34884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *163 - - *238 + - *166 + - *242 requestBody: required: false content: @@ -34554,10 +34933,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *17 - - *239 + - *243 responses: '200': description: Response @@ -34565,9 +34944,9 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: - default: *241 + default: *245 '400': *14 '422': *15 x-github: @@ -34590,17 +34969,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *16 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 '400': *14 '422': *15 x-github: @@ -34623,8 +35002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *16 responses: '202': *91 @@ -34650,8 +35029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 responses: '204': description: Response @@ -34673,8 +35052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *163 - - &248 + - *166 + - &252 name: actor_type in: path description: The type of the actor @@ -34687,14 +35066,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &249 + - &253 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &244 + - &248 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`.' @@ -34702,7 +35081,7 @@ paths: required: true schema: type: string - - &245 + - &249 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) @@ -34796,13 +35175,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *163 - - *244 - - *245 + - *166 + - *248 + - *249 - *19 - *17 - *82 - - &254 + - &258 name: sort description: The property to sort the results by. in: query @@ -34881,15 +35260,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *163 - - *244 - - *245 + - *166 + - *248 + - *249 responses: '200': description: Response content: application/json: - schema: &246 + schema: &250 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -34905,7 +35284,7 @@ paths: type: integer format: int64 examples: - default: &247 + default: &251 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -34925,24 +35304,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *163 - - &250 + - *166 + - &254 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *244 - - *245 + - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *250 examples: - default: *247 + default: *251 x-github: enabledForGitHubApps: true category: orgs @@ -34960,19 +35339,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *163 - - *244 - - *245 + - *166 - *248 - *249 + - *252 + - *253 responses: '200': description: Response content: application/json: - schema: *246 + schema: *250 examples: - default: *247 + default: *251 x-github: enabledForGitHubApps: true category: orgs @@ -34989,10 +35368,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *163 - - *244 - - *245 - - &251 + - *166 + - *248 + - *249 + - &255 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -35005,7 +35384,7 @@ paths: description: Response content: application/json: - schema: &252 + schema: &256 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -35021,7 +35400,7 @@ paths: type: integer format: int64 examples: - default: &253 + default: &257 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -35057,19 +35436,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *163 - - *250 - - *244 - - *245 - - *251 + - *166 + - *254 + - *248 + - *249 + - *255 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - default: *253 + default: *257 x-github: enabledForGitHubApps: true category: orgs @@ -35086,20 +35465,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *163 + - *166 + - *252 + - *253 - *248 - *249 - - *244 - - *245 - - *251 + - *255 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - default: *253 + default: *257 x-github: enabledForGitHubApps: true category: orgs @@ -35116,14 +35495,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *163 - - *250 - - *244 - - *245 + - *166 + - *254 + - *248 + - *249 - *19 - *17 - *82 - - *254 + - *258 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -35199,7 +35578,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *163 + - *166 responses: '200': description: Response @@ -35207,7 +35586,7 @@ paths: application/json: schema: *20 examples: - default: &518 + default: &526 value: id: 1 account: @@ -35276,7 +35655,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -35365,7 +35744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -35373,12 +35752,12 @@ paths: application/json: schema: anyOf: - - &256 + - &260 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &255 + limit: &259 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -35406,7 +35785,7 @@ paths: properties: {} additionalProperties: false examples: - default: &257 + default: &261 value: limit: collaborators_only origin: organization @@ -35430,18 +35809,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: &519 + schema: &527 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *255 + limit: *259 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -35466,9 +35845,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: - default: *257 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -35486,7 +35865,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -35512,7 +35891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *163 + - *166 - *17 - *19 - name: role @@ -35546,9 +35925,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 '404': *6 @@ -35572,7 +35951,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *163 + - *166 requestBody: required: false content: @@ -35626,7 +36005,7 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: default: value: @@ -35682,8 +36061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *163 - - &260 + - *166 + - &264 name: invitation_id description: The unique identifier of the invitation. in: path @@ -35716,8 +36095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *163 - - *260 + - *166 + - *264 - *17 - *19 responses: @@ -35727,9 +36106,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: &275 + default: &279 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -35774,7 +36153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *163 + - *166 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -35804,7 +36183,7 @@ paths: - closed - all default: open - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -35817,7 +36196,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -35827,9 +36206,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *263 + default: *267 headers: Link: *37 '404': *6 @@ -35851,7 +36230,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *163 + - *166 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -35887,7 +36266,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '422': *15 @@ -35907,8 +36286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response if requester is an organization member and user is @@ -35939,8 +36318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -35966,8 +36345,8 @@ paths: parameters: - *17 - *19 - - *163 - - *205 + - *166 + - *208 responses: '200': description: Response @@ -35983,9 +36362,9 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: - default: *266 + default: *270 '304': *35 '500': *93 '401': *23 @@ -36010,9 +36389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *163 - - *205 - - &267 + - *166 + - *208 + - &271 name: codespace_name in: path required: true @@ -36045,17 +36424,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *163 - - *205 - - *267 + - *166 + - *208 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: &450 + default: &458 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -36228,14 +36607,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *217 + schema: *220 examples: default: value: @@ -36303,14 +36682,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '200': description: Response content: application/json: - schema: &268 + schema: &272 title: Org Membership description: Org Membership type: object @@ -36363,7 +36742,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &269 + response-if-user-has-an-active-admin-membership-with-organization: &273 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36431,8 +36810,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 requestBody: required: false content: @@ -36460,9 +36839,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *272 examples: - response-if-user-already-had-membership-with-organization: *269 + response-if-user-already-had-membership-with-organization: *273 '422': *15 '403': *27 x-github: @@ -36483,8 +36862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -36509,7 +36888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *163 + - *166 - *17 - *19 - name: exclude @@ -36531,7 +36910,7 @@ paths: application/json: schema: type: array - items: &270 + items: &274 title: Migration description: A migration. type: object @@ -36788,7 +37167,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *163 + - *166 requestBody: required: true content: @@ -36869,7 +37248,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -37047,8 +37426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *163 - - &271 + - *166 + - &275 name: migration_id description: The unique identifier of the migration. in: path @@ -37076,7 +37455,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -37245,8 +37624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *163 - - *271 + - *166 + - *275 responses: '302': description: Response @@ -37267,8 +37646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *163 - - *271 + - *166 + - *275 responses: '204': description: Response @@ -37291,9 +37670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *163 - - *271 - - &685 + - *166 + - *275 + - &693 name: repo_name description: repo_name parameter in: path @@ -37320,8 +37699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *163 - - *271 + - *166 + - *275 - *17 - *19 responses: @@ -37331,9 +37710,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: &282 + default: &286 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37472,7 +37851,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -37526,7 +37905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response - list of organization roles @@ -37542,7 +37921,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &272 + items: &276 title: Organization Role description: Organization roles type: object @@ -37704,7 +38083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *163 + - *166 requestBody: required: true content: @@ -37751,7 +38130,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -37802,8 +38181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -37828,9 +38207,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *163 - - *273 - - *222 + - *166 + - *277 + - *225 responses: '204': description: Response @@ -37859,9 +38238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *163 - - *273 - - *222 + - *166 + - *277 + - *225 responses: '204': description: Response @@ -37886,8 +38265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -37912,9 +38291,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *163 - - *205 - - *222 + - *166 + - *208 + - *225 responses: '204': description: Response @@ -37944,9 +38323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *163 - - *205 - - *222 + - *166 + - *208 + - *225 responses: '204': description: Response @@ -37974,14 +38353,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '200': description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -38038,8 +38417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: @@ -38078,7 +38457,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -38131,8 +38510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -38157,8 +38536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 - *17 - *19 responses: @@ -38237,7 +38616,7 @@ paths: parent: anyOf: - type: 'null' - - *274 + - *278 required: - id - node_id @@ -38251,7 +38630,7 @@ paths: - slug - parent examples: - default: *275 + default: *279 headers: Link: *37 '404': @@ -38280,8 +38659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 - *17 - *19 responses: @@ -38310,7 +38689,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *274 + items: *278 name: type: - string @@ -38427,7 +38806,7 @@ paths: - type - url examples: - default: *264 + default: *268 headers: Link: *37 '404': @@ -38451,7 +38830,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *163 + - *166 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -38475,7 +38854,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -38500,8 +38879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *163 - - *205 + - *166 + - *208 requestBody: required: false content: @@ -38558,8 +38937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -38616,8 +38995,8 @@ paths: - docker - nuget - container - - *163 - - &687 + - *166 + - &695 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38653,12 +39032,12 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *277 + default: *281 '403': *27 '401': *23 - '400': &689 + '400': &697 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38680,7 +39059,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &278 + - &282 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 @@ -38698,20 +39077,20 @@ paths: - docker - nuget - container - - &279 + - &283 name: package_name description: The name of the package. in: path required: true schema: type: string - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: default: value: @@ -38763,9 +39142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 responses: '204': description: Response @@ -38797,9 +39176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 - name: token description: package token schema: @@ -38831,9 +39210,9 @@ 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: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 - *19 - *17 - name: state @@ -38853,7 +39232,7 @@ paths: application/json: schema: type: array - items: &280 + items: &284 title: Package Version description: A version of a software package type: object @@ -38988,10 +39367,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: - - *278 - - *279 - - *163 - - &281 + - *282 + - *283 + - *166 + - &285 name: package_version_id description: Unique identifier of the package version. in: path @@ -39003,7 +39382,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -39039,10 +39418,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *278 - - *279 - - *163 - - *281 + - *282 + - *283 + - *166 + - *285 responses: '204': description: Response @@ -39074,10 +39453,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *278 - - *279 - - *163 - - *281 + - *282 + - *283 + - *166 + - *285 responses: '204': description: Response @@ -39104,10 +39483,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *163 + - *166 - *17 - *19 - - &283 + - &287 name: sort description: The property by which to sort the results. in: query @@ -39118,7 +39497,7 @@ paths: - created_at default: created_at - *82 - - &284 + - &288 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39130,7 +39509,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &285 + - &289 name: repository description: The name of the repository to use to filter the results. in: query @@ -39139,7 +39518,7 @@ paths: type: string examples: - Hello-World - - &286 + - &290 name: permission description: The permission to use to filter the results. in: query @@ -39148,7 +39527,7 @@ paths: type: string examples: - issues_read - - &287 + - &291 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) @@ -39158,7 +39537,7 @@ paths: schema: type: string format: date-time - - &288 + - &292 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) @@ -39324,7 +39703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *163 + - *166 requestBody: required: true content: @@ -39391,7 +39770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *163 + - *166 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -39432,7 +39811,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39453,7 +39832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *163 + - *166 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -39473,9 +39852,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -39498,16 +39877,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *163 + - *166 - *17 - *19 - - *283 - - *82 - - *284 - - *285 - - *286 - *287 + - *82 - *288 + - *289 + - *290 + - *291 + - *292 responses: '500': *93 '422': *15 @@ -39658,7 +40037,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *163 + - *166 requestBody: required: true content: @@ -39718,7 +40097,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *163 + - *166 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -39748,7 +40127,7 @@ paths: responses: '500': *93 '404': *6 - '204': *108 + '204': *111 '403': *27 '422': *15 x-github: @@ -39770,7 +40149,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *163 + - *166 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -39789,9 +40168,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -39817,7 +40196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -39835,7 +40214,7 @@ paths: type: integer configurations: type: array - items: &289 + items: &293 title: Organization private registry description: Private registry configuration for an organization type: object @@ -39914,7 +40293,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -40047,7 +40426,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &290 + org-private-registry-with-selected-visibility: &294 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40090,7 +40469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -40142,16 +40521,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *289 + schema: *293 examples: - default: *290 + default: *294 '404': *6 x-github: githubCloudOnly: false @@ -40174,8 +40553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -40255,8 +40634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -40281,7 +40660,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-organization-projects parameters: - - *163 + - *166 - name: state description: Indicates the state of the projects to return. in: query @@ -40302,7 +40681,7 @@ paths: application/json: schema: type: array - items: &291 + items: &295 title: Project description: Projects are a way to organize columns and cards of work. @@ -40455,7 +40834,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-an-organization-project parameters: - - *163 + - *166 requestBody: required: true content: @@ -40481,7 +40860,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: default: value: @@ -40519,7 +40898,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &349 + '410': &357 description: Gone content: application/json: @@ -40543,7 +40922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -40551,9 +40930,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -40576,7 +40955,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -40587,7 +40966,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *104 + items: *107 minItems: 1 maxItems: 100 required: @@ -40617,9 +40996,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -40640,16 +41019,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 responses: '200': description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -40672,13 +41051,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 requestBody: required: true content: application/json: - schema: *292 + schema: *296 examples: default: value: @@ -40694,9 +41073,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -40719,10 +41098,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 responses: - '204': *108 + '204': *111 '403': *27 '404': *6 x-github: @@ -40743,7 +41122,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *163 + - *166 - *17 - *19 - name: repository_query @@ -40784,7 +41163,7 @@ paths: - octocat/Hello-World properties: type: array - items: &293 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -40854,7 +41233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *163 + - *166 requestBody: required: true content: @@ -40874,7 +41253,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *293 + items: *297 required: - repository_names - properties @@ -40915,7 +41294,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *163 + - *166 - *17 - *19 responses: @@ -40927,7 +41306,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -40946,8 +41325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response if user is a public member @@ -40971,8 +41350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -40993,8 +41372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -41018,7 +41397,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *163 + - *166 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -41065,9 +41444,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -41088,7 +41467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *163 + - *166 requestBody: required: true content: @@ -41271,7 +41650,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &359 title: Full Repository description: Full Repository type: object @@ -41717,7 +42096,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 organization: anyOf: - type: 'null' @@ -41736,7 +42115,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &469 + code_of_conduct: &477 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -41766,7 +42145,7 @@ paths: - key - name - html_url - security_and_analysis: *294 + security_and_analysis: *298 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -41850,7 +42229,7 @@ paths: - network_count - subscribers_count examples: - default: &353 + default: &361 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42368,7 +42747,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -42376,9 +42755,9 @@ paths: application/json: schema: type: array - items: *295 + items: *299 examples: - default: *296 + default: *300 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42400,10 +42779,10 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - *17 - *19 - - &600 + - &608 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42422,7 +42801,7 @@ paths: application/json: schema: type: array - items: *118 + items: *121 examples: default: value: @@ -42469,7 +42848,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 requestBody: description: Request body required: true @@ -42490,16 +42869,16 @@ paths: - push - repository default: branch - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *297 + items: *119 + conditions: *301 rules: type: array description: An array of rules within the ruleset. - items: *117 + items: *120 required: - name - enforcement @@ -42537,9 +42916,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: &300 + default: &304 value: id: 21 name: super cool ruleset @@ -42593,8 +42972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *163 - - &601 + - *166 + - &609 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 @@ -42604,16 +42983,16 @@ paths: schema: type: string x-multi-segment: true - - *298 - - *299 - - &602 + - *302 + - *303 + - &610 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 - - &603 + - &611 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -42633,7 +43012,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &612 title: Rule Suites description: Response type: array @@ -42689,7 +43068,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &605 + default: &613 value: - id: 21 actor_id: 12 @@ -42732,8 +43111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *163 - - &606 + - *166 + - &614 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42749,7 +43128,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &615 title: Rule Suite description: Response type: object @@ -42856,7 +43235,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &608 + default: &616 value: id: 21 actor_id: 12 @@ -42917,7 +43296,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -42929,9 +43308,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *300 + default: *304 '404': *6 '500': *93 put: @@ -42949,7 +43328,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -42975,16 +43354,16 @@ paths: - tag - push - repository - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *297 + items: *119 + conditions: *301 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -43019,9 +43398,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *300 + default: *304 '404': *6 '500': *93 delete: @@ -43039,7 +43418,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -43067,15 +43446,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *163 - - *301 - - *302 - - *303 - - *304 + - *166 + - *305 + - *306 + - *307 + - *308 - *82 - *19 - *17 - - &610 + - &618 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 @@ -43085,7 +43464,7 @@ paths: required: false schema: type: string - - &611 + - &619 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 @@ -43095,9 +43474,9 @@ paths: required: false schema: type: string - - *305 - - *306 - - *307 + - *309 + - *310 + - *311 responses: '200': description: Response @@ -43105,13 +43484,13 @@ paths: application/json: schema: type: array - items: *308 + items: *312 examples: - default: *309 + default: *313 headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43133,7 +43512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *163 + - *166 - *82 - name: sort description: The property to sort the results by. @@ -43177,7 +43556,7 @@ paths: application/json: schema: type: array - items: &618 + items: &626 description: A repository security advisory. type: object properties: @@ -43421,7 +43800,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 credits_detailed: type: - array @@ -43432,7 +43811,7 @@ paths: type: object properties: user: *4 - type: *310 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -43458,7 +43837,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *261 + items: *265 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -43496,7 +43875,7 @@ paths: - private_fork additionalProperties: false examples: - default: &619 + default: &627 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43875,7 +44254,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *163 + - *166 responses: '200': description: Response @@ -43883,9 +44262,9 @@ paths: application/json: schema: type: array - items: *274 + items: *278 examples: - default: *275 + default: *279 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43908,8 +44287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -43934,8 +44313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -43964,15 +44343,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *311 + schema: *315 examples: - default: *312 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -43996,7 +44375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -44004,9 +44383,9 @@ paths: description: Success content: application/json: - schema: *313 + schema: *317 examples: - default: *314 + default: *318 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44028,15 +44407,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *315 + schema: *319 examples: - default: *316 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44058,20 +44437,271 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *317 + schema: *321 examples: - default: *318 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - *166 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: *104 + examples: + default: *323 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + - *106 + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + - *106 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - *166 + - *106 + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - *166 + - *324 + responses: + '200': + description: Response + content: + application/json: + schema: *325 + examples: + default: *326 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team-sync/groups": get: summary: List IdP groups for an organization @@ -44083,7 +44713,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -44102,7 +44732,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &348 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -44154,7 +44784,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &341 + default: &349 value: groups: - group_id: '123' @@ -44199,8 +44829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -44232,13 +44862,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44272,8 +44902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -44305,9 +44935,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: *219 + default: *222 '500': *93 '401': *23 '403': *27 @@ -44329,7 +44959,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *163 + - *166 - *17 - *19 responses: @@ -44339,9 +44969,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 headers: Link: *37 '403': *27 @@ -44363,7 +44993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *163 + - *166 requestBody: required: true content: @@ -44435,7 +45065,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &327 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44509,7 +45139,7 @@ paths: parent: anyOf: - type: 'null' - - *274 + - *278 members_count: type: integer examples: @@ -44815,7 +45445,7 @@ paths: - repos_count - organization examples: - default: &320 + default: &328 value: id: 1 node_id: MDQ6VGVhbTE= @@ -44885,16 +45515,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 x-github: githubCloudOnly: false @@ -44915,8 +45545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: false content: @@ -44979,16 +45609,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '201': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 '422': *15 '403': *27 @@ -45013,8 +45643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -45040,8 +45670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - - *163 - - *273 + - *166 + - *277 - *82 - *17 - *19 @@ -45058,7 +45688,7 @@ paths: application/json: schema: type: array - items: &321 + items: &329 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -45149,7 +45779,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *129 + reactions: *132 required: - author - body @@ -45169,7 +45799,7 @@ paths: - updated_at - url examples: - default: &659 + default: &667 value: - author: login: octocat @@ -45243,8 +45873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -45278,9 +45908,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: &322 + default: &330 value: author: login: octocat @@ -45352,9 +45982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - - *163 - - *273 - - &323 + - *166 + - *277 + - &331 name: discussion_number description: The number that identifies the discussion. in: path @@ -45366,9 +45996,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45390,9 +46020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: false content: @@ -45415,9 +46045,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: &660 + default: &668 value: author: login: octocat @@ -45487,9 +46117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 responses: '204': description: Response @@ -45515,9 +46145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 - *82 - *17 - *19 @@ -45528,7 +46158,7 @@ paths: application/json: schema: type: array - items: &324 + items: &332 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45593,7 +46223,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *129 + reactions: *132 required: - author - body @@ -45608,7 +46238,7 @@ paths: - updated_at - url examples: - default: &661 + default: &669 value: - author: login: octocat @@ -45676,9 +46306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: true content: @@ -45700,9 +46330,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: &325 + default: &333 value: author: login: octocat @@ -45768,10 +46398,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - &326 + - *166 + - *277 + - *331 + - &334 name: comment_number description: The number that identifies the comment. in: path @@ -45783,9 +46413,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45807,10 +46437,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 requestBody: required: true content: @@ -45832,9 +46462,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: &662 + default: &670 value: author: login: octocat @@ -45898,10 +46528,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 responses: '204': description: Response @@ -45927,10 +46557,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 - 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. @@ -45956,7 +46586,7 @@ paths: application/json: schema: type: array - items: &327 + items: &335 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46000,7 +46630,7 @@ paths: - content - created_at examples: - default: &329 + default: &337 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46050,10 +46680,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 requestBody: required: true content: @@ -46086,9 +46716,9 @@ paths: team discussion comment content: application/json: - schema: *327 + schema: *335 examples: - default: &328 + default: &336 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46117,9 +46747,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46142,11 +46772,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - - *163 - - *273 - - *323 - - *326 - - &330 + - *166 + - *277 + - *331 + - *334 + - &338 name: reaction_id description: The unique identifier of the reaction. in: path @@ -46178,9 +46808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 - 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. @@ -46206,9 +46836,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -46234,9 +46864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: true content: @@ -46268,16 +46898,16 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -46300,10 +46930,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - - *163 - - *273 - - *323 - - *330 + - *166 + - *277 + - *331 + - *338 responses: '204': description: Response @@ -46326,16 +46956,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *331 + schema: *339 examples: - default: *332 + default: *340 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46354,8 +46984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -46379,9 +47009,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *341 examples: - default: *334 + default: *342 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -46400,8 +47030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -46425,8 +47055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46436,9 +47066,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 x-github: @@ -46460,8 +47090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *163 - - *273 + - *166 + - *277 - name: role description: Filters members returned by their role in the team. in: query @@ -46484,7 +47114,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -46514,15 +47144,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 responses: '200': description: Response content: application/json: - schema: &335 + schema: &343 title: Team Membership description: Team Membership type: object @@ -46550,7 +47180,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &671 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46586,9 +47216,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 requestBody: required: false content: @@ -46613,9 +47243,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &672 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46650,9 +47280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 responses: '204': description: Response @@ -46678,8 +47308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46689,7 +47319,7 @@ paths: application/json: schema: type: array - items: &336 + items: &344 title: Team Project description: A team's access to a project. type: object @@ -46758,7 +47388,7 @@ paths: - updated_at - permissions examples: - default: &665 + default: &673 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46819,9 +47449,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - - *163 - - *273 - - &337 + - *166 + - *277 + - &345 name: project_id description: The unique identifier of the project. in: path @@ -46833,9 +47463,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *344 examples: - default: &666 + default: &674 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46895,9 +47525,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - - *163 - - *273 - - *337 + - *166 + - *277 + - *345 requestBody: required: false content: @@ -46962,9 +47592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - - *163 - - *273 - - *337 + - *166 + - *277 + - *345 responses: '204': description: Response @@ -46988,8 +47618,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46999,9 +47629,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -47030,16 +47660,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &667 + schema: &675 title: Team Repository description: A team's access to a repository. type: object @@ -47065,7 +47695,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 forks: type: integer permissions: @@ -47680,10 +48310,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 requestBody: required: false content: @@ -47728,10 +48358,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 responses: '204': description: Response @@ -47757,16 +48387,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *340 + schema: *348 examples: - default: *341 + default: *349 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47788,8 +48418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -47832,7 +48462,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *348 examples: default: value: @@ -47864,8 +48494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -47875,9 +48505,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - response-if-child-teams-exist: &668 + response-if-child-teams-exist: &676 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47930,7 +48560,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *163 + - *166 - name: security_product in: path description: The security feature to enable or disable. @@ -48001,7 +48631,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &342 + - &350 name: card_id description: The unique identifier of the card. in: path @@ -48013,7 +48643,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &351 title: Project Card description: Project cards represent a scope of work. type: object @@ -48088,7 +48718,7 @@ paths: - created_at - updated_at examples: - default: &344 + default: &352 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -48138,7 +48768,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *342 + - *350 requestBody: required: false content: @@ -48168,9 +48798,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *351 examples: - default: *344 + default: *352 '304': *35 '403': *27 '401': *23 @@ -48191,7 +48821,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *342 + - *350 responses: '204': description: Response @@ -48229,7 +48859,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *342 + - *350 requestBody: required: true content: @@ -48336,7 +48966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &345 + - &353 name: column_id description: The unique identifier of the column. in: path @@ -48348,7 +48978,7 @@ paths: description: Response content: application/json: - schema: &346 + schema: &354 title: Project Column description: Project columns contain cards of work. type: object @@ -48402,7 +49032,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &355 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48431,7 +49061,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *345 + - *353 requestBody: required: true content: @@ -48456,9 +49086,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *354 examples: - default: *347 + default: *355 '304': *35 '403': *27 '401': *23 @@ -48477,7 +49107,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *345 + - *353 responses: '204': description: Response @@ -48500,7 +49130,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *345 + - *353 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -48521,7 +49151,7 @@ paths: application/json: schema: type: array - items: *343 + items: *351 examples: default: value: @@ -48574,7 +49204,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *345 + - *353 requestBody: required: true content: @@ -48618,9 +49248,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *351 examples: - default: *344 + default: *352 '304': *35 '403': *27 '401': *23 @@ -48630,8 +49260,8 @@ paths: application/json: schema: oneOf: - - *166 - - *167 + - *169 + - *170 '503': description: Response content: @@ -48670,7 +49300,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *345 + - *353 requestBody: required: true content: @@ -48727,15 +49357,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *337 + - *345 responses: '200': description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: &348 + default: &356 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48788,7 +49418,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *337 + - *345 requestBody: required: false content: @@ -48837,9 +49467,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: *348 + default: *356 '404': description: Not Found if the authenticated user does not have access to the project @@ -48860,7 +49490,7 @@ paths: items: type: string '401': *23 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -48878,7 +49508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *337 + - *345 responses: '204': description: Delete Success @@ -48899,7 +49529,7 @@ paths: items: type: string '401': *23 - '410': *349 + '410': *357 '404': *6 x-github: githubCloudOnly: false @@ -48922,7 +49552,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *337 + - *345 - 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 @@ -48949,7 +49579,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -48974,8 +49604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *337 - - *205 + - *345 + - *208 requestBody: required: false content: @@ -49024,8 +49654,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *337 - - *205 + - *345 + - *208 responses: '204': description: Response @@ -49053,8 +49683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *337 - - *205 + - *345 + - *208 responses: '200': description: Response @@ -49118,7 +49748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *337 + - *345 - *17 - *19 responses: @@ -49128,7 +49758,7 @@ paths: application/json: schema: type: array - items: *346 + items: *354 examples: default: value: @@ -49160,7 +49790,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *337 + - *345 requestBody: required: true content: @@ -49184,7 +49814,7 @@ paths: description: Response content: application/json: - schema: *346 + schema: *354 examples: default: value: @@ -49245,7 +49875,7 @@ paths: resources: type: object properties: - core: &350 + core: &358 title: Rate Limit type: object properties: @@ -49262,20 +49892,20 @@ paths: - remaining - reset - used - graphql: *350 - search: *350 - code_search: *350 - source_import: *350 - integration_manifest: *350 - code_scanning_upload: *350 - actions_runner_registration: *350 - scim: *350 - dependency_snapshots: *350 - code_scanning_autofix: *350 + graphql: *358 + search: *358 + code_search: *358 + source_import: *358 + integration_manifest: *358 + code_scanning_upload: *358 + actions_runner_registration: *358 + scim: *358 + dependency_snapshots: *358 + code_scanning_autofix: *358 required: - core - search - rate: *350 + rate: *358 required: - rate - resources @@ -49379,14 +50009,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *351 + schema: *359 examples: default-response: summary: Default response @@ -49891,7 +50521,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *352 + '301': *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49909,8 +50539,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -50157,10 +50787,10 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 - '307': &354 + default: *361 + '307': &362 description: Temporary Redirect content: application/json: @@ -50189,8 +50819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -50212,7 +50842,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': *354 + '307': *362 '404': *6 x-github: githubCloudOnly: false @@ -50235,11 +50865,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - - &369 + - &377 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50262,7 +50892,7 @@ paths: type: integer artifacts: type: array - items: &355 + items: &363 title: Artifact description: An artifact type: object @@ -50348,7 +50978,7 @@ paths: - expires_at - updated_at examples: - default: &370 + default: &378 value: total_count: 2 artifacts: @@ -50407,9 +51037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *338 - - *339 - - &356 + - *346 + - *347 + - &364 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50421,7 +51051,7 @@ paths: description: Response content: application/json: - schema: *355 + schema: *363 examples: default: value: @@ -50458,9 +51088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *338 - - *339 - - *356 + - *346 + - *347 + - *364 responses: '204': description: Response @@ -50484,9 +51114,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *338 - - *339 - - *356 + - *346 + - *347 + - *364 - name: archive_format in: path required: true @@ -50500,7 +51130,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': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50523,14 +51153,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *357 + schema: *365 examples: default: value: @@ -50556,11 +51186,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: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - - &358 + - &366 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 @@ -50594,7 +51224,7 @@ paths: description: Response content: application/json: - schema: &359 + schema: &367 title: Repository actions caches description: Repository actions caches type: object @@ -50644,7 +51274,7 @@ paths: - total_count - actions_caches examples: - default: &360 + default: &368 value: total_count: 1 actions_caches: @@ -50676,23 +51306,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: - - *338 - - *339 + - *346 + - *347 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *358 + - *366 responses: '200': description: Response content: application/json: - schema: *359 + schema: *367 examples: - default: *360 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50712,8 +51342,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: - - *338 - - *339 + - *346 + - *347 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50744,9 +51374,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: - - *338 - - *339 - - &361 + - *346 + - *347 + - &369 name: job_id description: The unique identifier of the job. in: path @@ -50758,7 +51388,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &381 title: Job description: Information of a job execution in a workflow run type: object @@ -51105,9 +51735,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: - - *338 - - *339 - - *361 + - *346 + - *347 + - *369 responses: '302': description: Response @@ -51135,9 +51765,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: - - *338 - - *339 - - *361 + - *346 + - *347 + - *369 requestBody: required: false content: @@ -51159,7 +51789,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -51183,8 +51813,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Status response @@ -51234,8 +51864,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -51269,7 +51899,7 @@ paths: description: Empty response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -51298,8 +51928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -51317,7 +51947,7 @@ paths: type: integer secrets: type: array - items: &375 + items: &383 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51338,7 +51968,7 @@ paths: - created_at - updated_at examples: - default: &376 + default: &384 value: total_count: 2 secrets: @@ -51371,9 +52001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *338 - - *339 - - *362 + - *346 + - *347 + - *370 - *19 responses: '200': @@ -51390,7 +52020,7 @@ paths: type: integer variables: type: array - items: &379 + items: &387 title: Actions Variable type: object properties: @@ -51424,7 +52054,7 @@ paths: - created_at - updated_at examples: - default: &380 + default: &388 value: total_count: 2 variables: @@ -51457,8 +52087,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51467,11 +52097,11 @@ paths: schema: type: object properties: - enabled: &363 + enabled: &371 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 - selected_actions_url: *176 + selected_actions_url: *179 required: - enabled examples: @@ -51500,8 +52130,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -51512,7 +52142,7 @@ paths: schema: type: object properties: - enabled: *363 + enabled: *371 allowed_actions: *46 required: - enabled @@ -51543,14 +52173,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &364 + schema: &372 type: object properties: access_level: @@ -51568,7 +52198,7 @@ paths: required: - access_level examples: - default: &365 + default: &373 value: access_level: organization x-github: @@ -51593,15 +52223,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *364 + schema: *372 examples: - default: *365 + default: *373 responses: '204': description: Response @@ -51625,8 +52255,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51657,8 +52287,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -51690,14 +52320,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: default: *52 x-github: @@ -51720,8 +52350,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Success response @@ -51732,7 +52362,7 @@ paths: required: true content: application/json: - schema: *180 + schema: *183 examples: default: *52 x-github: @@ -51761,8 +52391,8 @@ paths: in: query schema: type: string - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -51806,8 +52436,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51815,9 +52445,9 @@ paths: application/json: schema: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51839,8 +52469,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -51883,7 +52513,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *186 + '201': *189 '404': *6 '422': *7 x-github: @@ -51913,8 +52543,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: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -51922,7 +52552,7 @@ paths: application/json: schema: *62 examples: - default: *187 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51950,8 +52580,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: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -51959,7 +52589,7 @@ paths: application/json: schema: *62 examples: - default: *188 + default: *191 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51981,8 +52611,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '200': @@ -51991,7 +52621,7 @@ paths: application/json: schema: *59 examples: - default: *189 + default: *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52012,8 +52642,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '204': @@ -52039,8 +52669,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '200': *64 @@ -52065,8 +52695,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: - - *338 - - *339 + - *346 + - *347 - *58 requestBody: required: true @@ -52115,8 +52745,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: - - *338 - - *339 + - *346 + - *347 - *58 requestBody: required: true @@ -52166,11 +52796,11 @@ 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: - - *338 - - *339 + - *346 + - *347 - *58 responses: - '200': *190 + '200': *193 '404': *6 x-github: githubCloudOnly: false @@ -52197,10 +52827,10 @@ 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: - - *338 - - *339 + - *346 + - *347 - *58 - - *191 + - *194 responses: '200': *64 '404': *6 @@ -52228,9 +52858,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: - - *338 - - *339 - - &383 + - *346 + - *347 + - &391 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. @@ -52238,7 +52868,7 @@ paths: required: false schema: type: string - - &384 + - &392 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52246,7 +52876,7 @@ paths: required: false schema: type: string - - &385 + - &393 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52255,7 +52885,7 @@ paths: required: false schema: type: string - - &386 + - &394 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 @@ -52282,7 +52912,7 @@ paths: - pending - *17 - *19 - - &387 + - &395 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)." @@ -52291,7 +52921,7 @@ paths: schema: type: string format: date-time - - &366 + - &374 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52300,13 +52930,13 @@ paths: schema: type: boolean default: false - - &388 + - &396 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &389 + - &397 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52329,7 +52959,7 @@ paths: type: integer workflow_runs: type: array - items: &367 + items: &375 title: Workflow Run description: An invocation of a workflow type: object @@ -52446,7 +53076,7 @@ paths: type: - array - 'null' - items: &413 + items: &421 title: Pull Request Minimal type: object properties: @@ -52573,7 +53203,7 @@ paths: head_commit: anyOf: - type: 'null' - - &417 + - &425 title: Simple Commit description: A commit. type: object @@ -52647,8 +53277,8 @@ paths: - timestamp - author - committer - repository: *183 - head_repository: *183 + repository: *186 + head_repository: *186 head_repository_id: type: integer examples: @@ -52688,7 +53318,7 @@ paths: - workflow_url - pull_requests examples: - default: &390 + default: &398 value: total_count: 1 workflow_runs: @@ -52924,24 +53554,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *338 - - *339 - - &368 + - *346 + - *347 + - &376 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *366 + - *374 responses: '200': description: Response content: application/json: - schema: *367 + schema: *375 examples: - default: &371 + default: &379 value: id: 30433642 name: Build @@ -53182,9 +53812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '204': description: Response @@ -53207,9 +53837,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -53337,15 +53967,15 @@ 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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53372,12 +54002,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 - *17 - *19 - - *369 + - *377 responses: '200': description: Response @@ -53393,9 +54023,9 @@ paths: type: integer artifacts: type: array - items: *355 + items: *363 examples: - default: *370 + default: *378 headers: Link: *37 x-github: @@ -53419,25 +54049,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *338 - - *339 - - *368 - - &372 + - *346 + - *347 + - *376 + - &380 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *366 + - *374 responses: '200': description: Response content: application/json: - schema: *367 + schema: *375 examples: - default: *371 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53460,10 +54090,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: - - *338 - - *339 - - *368 - - *372 + - *346 + - *347 + - *376 + - *380 - *17 - *19 responses: @@ -53481,9 +54111,9 @@ paths: type: integer jobs: type: array - items: *373 + items: *381 examples: - default: &374 + default: &382 value: total_count: 1 jobs: @@ -53596,10 +54226,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *338 - - *339 - - *368 - - *372 + - *346 + - *347 + - *376 + - *380 responses: '302': description: Response @@ -53627,15 +54257,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '202': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53662,9 +54292,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: true content: @@ -53731,15 +54361,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '202': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53766,9 +54396,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 - 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 @@ -53798,9 +54428,9 @@ paths: type: integer jobs: type: array - items: *373 + items: *381 examples: - default: *374 + default: *382 headers: Link: *37 x-github: @@ -53825,9 +54455,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '302': description: Response @@ -53854,9 +54484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '204': description: Response @@ -53883,9 +54513,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -53954,7 +54584,7 @@ paths: items: type: object properties: - type: &488 + type: &496 type: string description: The type of reviewer. enum: @@ -53965,7 +54595,7 @@ paths: reviewer: anyOf: - *4 - - *261 + - *265 required: - environment - wait_timer @@ -54040,9 +54670,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: true content: @@ -54092,7 +54722,7 @@ paths: application/json: schema: type: array - items: &483 + items: &491 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54204,7 +54834,7 @@ paths: - created_at - updated_at examples: - default: &484 + default: &492 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54260,9 +54890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: false content: @@ -54284,7 +54914,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54307,9 +54937,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: false content: @@ -54331,7 +54961,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54356,9 +54986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -54495,8 +55125,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -54514,9 +55144,9 @@ paths: type: integer secrets: type: array - items: *375 + items: *383 examples: - default: *376 + default: *384 headers: Link: *37 x-github: @@ -54541,16 +55171,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *377 + schema: *385 examples: - default: *378 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54572,17 +55202,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *375 + schema: *383 examples: - default: &501 + default: &509 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54608,9 +55238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -54638,7 +55268,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54664,9 +55294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -54691,9 +55321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *338 - - *339 - - *362 + - *346 + - *347 + - *370 - *19 responses: '200': @@ -54710,9 +55340,9 @@ paths: type: integer variables: type: array - items: *379 + items: *387 examples: - default: *380 + default: *388 headers: Link: *37 x-github: @@ -54735,8 +55365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -54763,7 +55393,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54788,17 +55418,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 responses: '200': description: Response content: application/json: - schema: *379 + schema: *387 examples: - default: &502 + default: &510 value: name: USERNAME value: octocat @@ -54824,9 +55454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 requestBody: required: true content: @@ -54868,9 +55498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 responses: '204': description: Response @@ -54895,8 +55525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -54914,7 +55544,7 @@ paths: type: integer workflows: type: array - items: &381 + items: &389 title: Workflow description: A GitHub Actions workflow type: object @@ -55032,9 +55662,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *338 - - *339 - - &382 + - *346 + - *347 + - &390 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55049,7 +55679,7 @@ paths: description: Response content: application/json: - schema: *381 + schema: *389 examples: default: value: @@ -55082,9 +55712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55109,9 +55739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55162,9 +55792,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55191,19 +55821,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: - - *338 - - *339 - - *382 - - *383 - - *384 - - *385 - - *386 + - *346 + - *347 + - *390 + - *391 + - *392 + - *393 + - *394 - *17 - *19 - - *387 - - *366 - - *388 - - *389 + - *395 + - *374 + - *396 + - *397 responses: '200': description: Response @@ -55219,9 +55849,9 @@ paths: type: integer workflow_runs: type: array - items: *367 + items: *375 examples: - default: *390 + default: *398 headers: Link: *37 x-github: @@ -55247,9 +55877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '200': description: Response @@ -55310,8 +55940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *338 - - *339 + - *346 + - *347 - *82 - *17 - *80 @@ -55479,8 +56109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -55492,7 +56122,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -55517,8 +56147,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: - - *338 - - *339 + - *346 + - *347 - name: assignee in: path required: true @@ -55554,8 +56184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -55667,8 +56297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *80 - *81 @@ -55714,7 +56344,7 @@ paths: bundle_url: type: string examples: - default: *391 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55734,8 +56364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -55743,7 +56373,7 @@ paths: application/json: schema: type: array - items: &392 + items: &400 title: Autolink reference description: An autolink reference. type: object @@ -55797,8 +56427,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -55837,9 +56467,9 @@ paths: description: response content: application/json: - schema: *392 + schema: *400 examples: - default: &393 + default: &401 value: id: 1 key_prefix: TICKET- @@ -55870,9 +56500,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: - - *338 - - *339 - - &394 + - *346 + - *347 + - &402 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55884,9 +56514,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *400 examples: - default: *393 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -55906,9 +56536,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: - - *338 - - *339 - - *394 + - *346 + - *347 + - *402 responses: '204': description: Response @@ -55932,8 +56562,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response if Dependabot is enabled @@ -55983,8 +56613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -56005,8 +56635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -56026,8 +56656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *338 - - *339 + - *346 + - *347 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56065,7 +56695,7 @@ paths: - url protected: type: boolean - protection: &396 + protection: &404 title: Branch Protection description: Branch Protection type: object @@ -56108,7 +56738,7 @@ paths: required: - contexts - checks - enforce_admins: &399 + enforce_admins: &407 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56125,7 +56755,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &401 + required_pull_request_reviews: &409 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56147,7 +56777,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *261 + items: *265 apps: description: The list of apps with review dismissal access. @@ -56179,7 +56809,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *261 + items: *265 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56209,7 +56839,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &398 + restrictions: &406 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56534,9 +57164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *338 - - *339 - - &397 + - *346 + - *347 + - &405 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). @@ -56550,14 +57180,14 @@ paths: description: Response content: application/json: - schema: &407 + schema: &415 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &459 + commit: &467 title: Commit description: Commit type: object @@ -56596,7 +57226,7 @@ paths: author: anyOf: - type: 'null' - - &395 + - &403 title: Git User description: Metaproperties for Git author/committer information. @@ -56617,7 +57247,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 message: type: string examples: @@ -56641,7 +57271,7 @@ paths: required: - sha - url - verification: &508 + verification: &516 title: Verification type: object properties: @@ -56676,14 +57306,14 @@ paths: author: oneOf: - *4 - - *194 + - *197 type: - 'null' - object committer: oneOf: - *4 - - *194 + - *197 type: - 'null' - object @@ -56720,7 +57350,7 @@ paths: type: integer files: type: array - items: &471 + items: &479 title: Diff Entry description: Diff Entry type: object @@ -56814,7 +57444,7 @@ paths: - self protected: type: boolean - protection: *396 + protection: *404 protection_url: type: string format: uri @@ -56923,7 +57553,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *352 + '301': *360 '404': *6 x-github: githubCloudOnly: false @@ -56945,15 +57575,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *396 + schema: *404 examples: default: value: @@ -57147,9 +57777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -57409,7 +58039,7 @@ paths: url: type: string format: uri - required_status_checks: &404 + required_status_checks: &412 title: Status Check Policy description: Status Check Policy type: object @@ -57490,7 +58120,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 apps: type: array items: *5 @@ -57508,7 +58138,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 apps: type: array items: *5 @@ -57568,7 +58198,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *398 + restrictions: *406 required_conversation_resolution: type: object properties: @@ -57680,9 +58310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -57707,17 +58337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: &400 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57739,17 +58369,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: *400 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57768,9 +58398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -57795,17 +58425,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *409 examples: - default: &402 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57901,9 +58531,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58001,9 +58631,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *409 examples: - default: *402 + default: *410 '422': *15 x-github: githubCloudOnly: false @@ -58024,9 +58654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58053,17 +58683,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: &403 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58086,17 +58716,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: *403 + default: *411 '404': *6 x-github: githubCloudOnly: false @@ -58116,9 +58746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58143,17 +58773,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *404 + schema: *412 examples: - default: &405 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58179,9 +58809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58233,9 +58863,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *412 examples: - default: *405 + default: *413 '404': *6 '422': *15 x-github: @@ -58257,9 +58887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58283,9 +58913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58319,9 +58949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58388,9 +59018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58454,9 +59084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: content: application/json: @@ -58522,15 +59152,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *398 + schema: *406 examples: default: value: @@ -58621,9 +59251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58646,9 +59276,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58658,7 +59288,7 @@ paths: type: array items: *5 examples: - default: &406 + default: &414 value: - id: 1 slug: octoapp @@ -58715,9 +59345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58751,7 +59381,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58772,9 +59402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58808,7 +59438,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58829,9 +59459,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58865,7 +59495,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58887,9 +59517,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58897,9 +59527,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '404': *6 x-github: githubCloudOnly: false @@ -58919,9 +59549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58957,9 +59587,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -58980,9 +59610,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -59018,9 +59648,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -59041,9 +59671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: content: application/json: @@ -59078,9 +59708,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -59102,9 +59732,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -59114,7 +59744,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -59138,9 +59768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59173,7 +59803,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59198,9 +59828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59233,7 +59863,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59258,9 +59888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59293,7 +59923,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59320,9 +59950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59344,7 +59974,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *415 examples: default: value: @@ -59458,12 +60088,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *338 - - *339 - - *408 - - *409 - - *299 - - *410 + - *346 + - *347 + - *416 + - *417 + - *303 + - *418 - *17 - *19 responses: @@ -59473,9 +60103,9 @@ paths: application/json: schema: type: array - items: *411 + items: *419 examples: - default: *412 + default: *420 '404': *6 '500': *93 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -59495,8 +60125,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *338 - - *339 + - *346 + - *347 - name: bypass_request_number in: path required: true @@ -59510,7 +60140,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *419 examples: default: value: @@ -59568,8 +60198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -59848,7 +60478,7 @@ paths: description: Response content: application/json: - schema: &414 + schema: &422 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59983,8 +60613,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *413 - deployment: &718 + items: *421 + deployment: &726 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60271,9 +60901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *338 - - *339 - - &415 + - *346 + - *347 + - &423 name: check_run_id description: The unique identifier of the check run. in: path @@ -60285,9 +60915,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *422 examples: - default: &416 + default: &424 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60387,9 +61017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 requestBody: required: true content: @@ -60629,9 +61259,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *422 examples: - default: *416 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60651,9 +61281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 - *17 - *19 responses: @@ -60765,15 +61395,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -60811,8 +61441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -60834,7 +61464,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &418 + schema: &426 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60916,12 +61546,12 @@ paths: type: - array - 'null' - items: *413 + items: *421 app: anyOf: - type: 'null' - *5 - repository: *183 + repository: *186 created_at: type: - string @@ -60932,7 +61562,7 @@ paths: - string - 'null' format: date-time - head_commit: *417 + head_commit: *425 latest_check_runs_count: type: integer check_runs_url: @@ -60960,7 +61590,7 @@ paths: - check_runs_url - pull_requests examples: - default: &419 + default: &427 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61251,9 +61881,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *418 + schema: *426 examples: - default: *419 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61272,8 +61902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -61334,7 +61964,7 @@ paths: required: - app_id - setting - repository: *183 + repository: *186 examples: default: value: @@ -61582,9 +62212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *338 - - *339 - - &420 + - *346 + - *347 + - &428 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61596,9 +62226,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *426 examples: - default: *419 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61621,17 +62251,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: - - *338 - - *339 - - *420 - - &466 + - *346 + - *347 + - *428 + - &474 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &467 + - &475 name: status description: Returns check runs with the specified `status`. in: query @@ -61670,9 +62300,9 @@ paths: type: integer check_runs: type: array - items: *414 + items: *422 examples: - default: &468 + default: &476 value: total_count: 1 check_runs: @@ -61774,15 +62404,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *338 - - *339 - - *420 + - *346 + - *347 + - *428 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -61809,21 +62439,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: - - *338 - - *339 - - *206 - - *207 + - *346 + - *347 + - *209 + - *210 - *19 - *17 - - &436 + - &444 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: *421 - - &437 + schema: *429 + - &445 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61848,13 +62478,13 @@ paths: be returned. in: query required: false - schema: *208 + schema: *211 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *430 responses: '200': description: Response @@ -61870,7 +62500,7 @@ paths: updated_at: *101 url: *98 html_url: *99 - instances_url: *423 + instances_url: *431 state: *85 fixed_at: *103 dismissed_by: @@ -61878,11 +62508,11 @@ paths: - type: 'null' - *4 dismissed_at: *102 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_reason: *432 + dismissed_comment: *433 + rule: *434 + tool: *435 + most_recent_instance: *436 required: - number - created_at @@ -61998,14 +62628,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &429 + '403': &437 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62025,9 +62655,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: - - *338 - - *339 - - &430 + - *346 + - *347 + - &438 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62041,7 +62671,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &439 type: object properties: number: *94 @@ -62049,7 +62679,7 @@ paths: updated_at: *101 url: *98 html_url: *99 - instances_url: *423 + instances_url: *431 state: *85 fixed_at: *103 dismissed_by: @@ -62057,8 +62687,8 @@ paths: - type: 'null' - *4 dismissed_at: *102 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *432 + dismissed_comment: *433 rule: type: object properties: @@ -62120,8 +62750,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *435 + most_recent_instance: *436 required: - number - created_at @@ -62210,9 +62840,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62230,9 +62860,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: true content: @@ -62247,8 +62877,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *432 + dismissed_comment: *433 required: - state examples: @@ -62263,7 +62893,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *439 examples: default: value: @@ -62338,14 +62968,14 @@ paths: classifications: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances - '403': &435 + '403': &443 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62365,15 +62995,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: Response content: application/json: - schema: &432 + schema: &440 type: object properties: status: @@ -62400,13 +63030,13 @@ paths: - description - started_at examples: - default: &433 + default: &441 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &442 description: Bad Request content: application/json: @@ -62417,9 +63047,9 @@ 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': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62442,29 +63072,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: OK content: application/json: - schema: *432 + schema: *440 examples: - default: *433 + default: *441 '202': description: Accepted content: application/json: - schema: *432 + schema: *440 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *442 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62474,7 +63104,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62496,9 +63126,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: false content: @@ -62544,12 +63174,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *442 + '403': *443 '404': *6 '422': description: Unprocessable Entity - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62569,13 +63199,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 - *19 - *17 - - *436 - - *437 + - *444 + - *445 responses: '200': description: Response @@ -62583,7 +63213,7 @@ paths: application/json: schema: type: array - items: *428 + items: *436 examples: default: value: @@ -62622,9 +63252,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62656,25 +63286,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: - - *338 - - *339 - - *206 - - *207 + - *346 + - *347 + - *209 + - *210 - *19 - *17 - - *437 + - *445 - 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: *421 + schema: *429 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &440 + schema: &448 type: string description: An identifier for the upload. examples: @@ -62696,23 +63326,23 @@ paths: application/json: schema: type: array - items: &441 + items: &449 type: object properties: - ref: *421 - commit_sha: &449 + ref: *429 + commit_sha: &457 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: *438 + analysis_key: *446 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *439 + category: *447 error: type: string examples: @@ -62737,8 +63367,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *440 - tool: *427 + sarif_id: *448 + tool: *435 deletable: type: boolean warning: @@ -62800,9 +63430,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62836,8 +63466,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: - - *338 - - *339 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62850,7 +63480,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *449 examples: response: summary: application/json response @@ -62904,9 +63534,9 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62986,8 +63616,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: - - *338 - - *339 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63043,9 +63673,9 @@ 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': *435 + '403': *443 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63065,8 +63695,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -63074,7 +63704,7 @@ paths: application/json: schema: type: array - items: &442 + items: &450 title: CodeQL Database description: A CodeQL database. type: object @@ -63186,9 +63816,9 @@ 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': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63215,8 +63845,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: - - *338 - - *339 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -63228,7 +63858,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *450 examples: default: value: @@ -63260,11 +63890,11 @@ 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': &473 + '302': &481 description: Found - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63284,8 +63914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *338 - - *339 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -63295,9 +63925,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *443 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63323,8 +63953,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -63333,7 +63963,7 @@ paths: type: object additionalProperties: false properties: - language: &443 + language: &451 type: string description: The language targeted by the CodeQL query enum: @@ -63411,7 +64041,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &447 + schema: &455 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63421,7 +64051,7 @@ paths: description: The ID of the variant analysis. controller_repo: *92 actor: *4 - query_language: *443 + query_language: *451 query_pack_url: type: string description: The download url for the query pack. @@ -63469,7 +64099,7 @@ paths: items: type: object properties: - repository: &444 + repository: &452 title: Repository Identifier description: Repository Identifier type: object @@ -63511,7 +64141,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &448 + analysis_status: &456 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63543,7 +64173,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &445 + access_mismatch_repos: &453 type: object properties: repository_count: @@ -63558,7 +64188,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: *444 + items: *452 required: - repository_count - repositories @@ -63581,8 +64211,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *445 - over_limit_repos: *445 + no_codeql_db_repos: *453 + over_limit_repos: *453 required: - access_mismatch_repos - not_found_repos @@ -63598,7 +64228,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &446 + value: &454 summary: Default response value: id: 1 @@ -63750,17 +64380,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *446 + value: *454 repository_lists: summary: Response for a successful variant analysis submission - value: *446 + value: *454 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63781,8 +64411,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: - - *338 - - *339 + - *346 + - *347 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63794,11 +64424,11 @@ paths: description: Response content: application/json: - schema: *447 + schema: *455 examples: - default: *446 + default: *454 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63819,7 +64449,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: - - *338 + - *346 - name: repo in: path description: The name of the controller repository. @@ -63854,7 +64484,7 @@ paths: type: object properties: repository: *92 - analysis_status: *448 + analysis_status: *456 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63958,7 +64588,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63979,8 +64609,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64062,9 +64692,9 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64083,8 +64713,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -64143,7 +64773,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -64168,7 +64798,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *443 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64176,7 +64806,7 @@ paths: content: application/json: schema: *3 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64233,8 +64863,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -64242,7 +64872,7 @@ paths: schema: type: object properties: - commit_sha: *449 + commit_sha: *457 ref: type: string description: |- @@ -64302,7 +64932,7 @@ paths: schema: type: object properties: - id: *440 + id: *448 url: type: string description: The REST API URL for checking the status of the upload. @@ -64316,11 +64946,11 @@ 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': *435 + '403': *443 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64339,8 +64969,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: - - *338 - - *339 + - *346 + - *347 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64388,10 +65018,10 @@ 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': *429 + '403': *437 '404': description: Not Found if the sarif id does not match any upload - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64413,8 +65043,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64467,7 +65097,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': *108 + '204': *111 '304': *35 '403': *27 '404': *6 @@ -64492,8 +65122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *338 - - *339 + - *346 + - *347 - 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 @@ -64621,8 +65251,8 @@ paths: parameters: - *17 - *19 - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64638,7 +65268,7 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: default: value: @@ -64936,8 +65566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -65001,22 +65631,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65040,8 +65670,8 @@ paths: parameters: - *17 - *19 - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -65105,8 +65735,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: - - *338 - - *339 + - *346 + - *347 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65143,9 +65773,9 @@ paths: type: integer machines: type: array - items: *451 + items: *459 examples: - default: &675 + default: &683 value: total_count: 2 machines: @@ -65185,8 +65815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *338 - - *339 + - *346 + - *347 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65273,8 +65903,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: - - *338 - - *339 + - *346 + - *347 - 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 @@ -65322,7 +65952,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65343,8 +65973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -65362,7 +65992,7 @@ paths: type: integer secrets: type: array - items: &455 + items: &463 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65383,7 +66013,7 @@ paths: - created_at - updated_at examples: - default: *452 + default: *460 headers: Link: *37 x-github: @@ -65406,16 +66036,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *453 + schema: *461 examples: - default: *454 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65435,17 +66065,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *455 + schema: *463 examples: - default: *456 + default: *464 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65465,9 +66095,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -65495,7 +66125,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -65519,9 +66149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -65549,8 +66179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *338 - - *339 + - *346 + - *347 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65588,7 +66218,7 @@ paths: application/json: schema: type: array - items: &457 + items: &465 title: Collaborator description: Collaborator type: object @@ -65781,9 +66411,9 @@ 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: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '204': description: Response if user is a collaborator @@ -65825,9 +66455,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 requestBody: required: false content: @@ -65853,7 +66483,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &521 + schema: &529 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65865,7 +66495,7 @@ paths: format: int64 examples: - 42 - repository: *183 + repository: *186 invitee: anyOf: - type: 'null' @@ -66074,9 +66704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '204': description: No Content when collaborator was removed from the repository. @@ -66105,9 +66735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '200': description: if user has admin permissions @@ -66127,7 +66757,7 @@ paths: user: anyOf: - type: 'null' - - *457 + - *465 required: - permission - role_name @@ -66181,8 +66811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -66192,7 +66822,7 @@ paths: application/json: schema: type: array - items: &458 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -66233,8 +66863,8 @@ paths: updated_at: type: string format: date-time - author_association: *128 - reactions: *129 + author_association: *131 + reactions: *132 required: - url - html_url @@ -66250,7 +66880,7 @@ paths: - created_at - updated_at examples: - default: &461 + default: &469 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66309,17 +66939,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *458 + schema: *466 examples: - default: &462 + default: &470 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66376,9 +67006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -66400,7 +67030,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *466 examples: default: value: @@ -66451,9 +67081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -66474,9 +67104,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 commit comment. @@ -66502,9 +67132,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -66525,9 +67155,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -66559,16 +67189,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66590,10 +67220,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -66642,8 +67272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *338 - - *339 + - *346 + - *347 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66699,9 +67329,9 @@ paths: application/json: schema: type: array - items: *459 + items: *467 examples: - default: &569 + default: &577 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66795,9 +67425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *338 - - *339 - - &460 + - *346 + - *347 + - &468 name: commit_sha description: The SHA of the commit. in: path @@ -66869,9 +67499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 - *17 - *19 responses: @@ -66881,9 +67511,9 @@ paths: application/json: schema: type: array - items: *458 + items: *466 examples: - default: *461 + default: *469 headers: Link: *37 x-github: @@ -66911,9 +67541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 requestBody: required: true content: @@ -66948,9 +67578,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *466 examples: - default: *462 + default: *470 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66978,9 +67608,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: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 - *17 - *19 responses: @@ -66990,7 +67620,7 @@ paths: application/json: schema: type: array - items: &560 + items: &568 title: Pull Request Simple description: Pull Request Simple type: object @@ -67110,7 +67740,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 active_lock_reason: type: - string @@ -67165,7 +67795,7 @@ paths: type: - array - 'null' - items: *261 + items: *265 head: type: object properties: @@ -67209,7 +67839,7 @@ paths: _links: type: object properties: - comments: &464 + comments: &472 title: Link description: Hypermedia Link type: object @@ -67218,13 +67848,13 @@ paths: type: string required: - href - commits: *464 - statuses: *464 - html: *464 - issue: *464 - review_comments: *464 - review_comment: *464 - self: *464 + commits: *472 + statuses: *472 + html: *472 + issue: *472 + review_comments: *472 + review_comment: *472 + self: *472 required: - comments - commits @@ -67234,8 +67864,8 @@ paths: - review_comments - review_comment - self - author_association: *128 - auto_merge: &562 + author_association: *131 + auto_merge: &570 title: Auto merge description: The status of auto merging a pull request. type: @@ -67300,7 +67930,7 @@ paths: - author_association - auto_merge examples: - default: &561 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67837,11 +68467,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 - - &465 + - &473 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)" @@ -67856,9 +68486,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *467 examples: - default: &548 + default: &556 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67945,7 +68575,7 @@ paths: '422': *15 '404': *6 '500': *93 - '503': *121 + '503': *124 '409': *90 x-github: githubCloudOnly: false @@ -67971,11 +68601,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: - - *338 - - *339 - - *465 - - *466 - - *467 + - *346 + - *347 + - *473 + - *474 + - *475 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68009,9 +68639,9 @@ paths: type: integer check_runs: type: array - items: *414 + items: *422 examples: - default: *468 + default: *476 headers: Link: *37 x-github: @@ -68036,9 +68666,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: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68046,7 +68676,7 @@ paths: schema: type: integer example: 1 - - *466 + - *474 - *17 - *19 responses: @@ -68064,7 +68694,7 @@ paths: type: integer check_suites: type: array - items: *418 + items: *426 examples: default: value: @@ -68264,9 +68894,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: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - *17 - *19 responses: @@ -68337,7 +68967,7 @@ paths: type: string total_count: type: integer - repository: *183 + repository: *186 commit_url: type: string format: uri @@ -68468,9 +69098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - *17 - *19 responses: @@ -68480,7 +69110,7 @@ paths: application/json: schema: type: array - items: &623 + items: &631 title: Status description: The status of a commit. type: object @@ -68561,7 +69191,7 @@ paths: site_admin: false headers: Link: *37 - '301': *352 + '301': *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68589,8 +69219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -68623,11 +69253,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *469 + - *477 code_of_conduct_file: anyOf: - type: 'null' - - &470 + - &478 title: Community Health File type: object properties: @@ -68643,23 +69273,23 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 contributing: anyOf: - type: 'null' - - *470 + - *478 readme: anyOf: - type: 'null' - - *470 + - *478 issue_template: anyOf: - type: 'null' - - *470 + - *478 pull_request_template: anyOf: - type: 'null' - - *470 + - *478 required: - code_of_conduct - code_of_conduct_file @@ -68788,8 +69418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 - name: basehead @@ -68837,8 +69467,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *459 - merge_base_commit: *459 + base_commit: *467 + merge_base_commit: *467 status: type: string enum: @@ -68862,10 +69492,10 @@ paths: - 6 commits: type: array - items: *459 + items: *467 files: type: array - items: *471 + items: *479 required: - url - html_url @@ -69109,7 +69739,7 @@ paths: module Test" '404': *6 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69151,8 +69781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -69303,7 +69933,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &472 + response-if-content-is-a-file: &480 summary: Response if content is a file value: type: file @@ -69440,7 +70070,7 @@ paths: - size - type - url - - &574 + - &582 title: Content File description: Content File type: object @@ -69658,7 +70288,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *472 + response-if-content-is-a-file: *480 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69727,7 +70357,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *473 + '302': *481 '304': *35 x-github: githubCloudOnly: false @@ -69750,8 +70380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -69846,7 +70476,7 @@ paths: description: Response content: application/json: - schema: &474 + schema: &482 title: File Commit description: File Commit type: object @@ -70002,7 +70632,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *482 examples: example-for-creating-a-file: value: @@ -70056,7 +70686,7 @@ paths: schema: oneOf: - *3 - - &503 + - &511 description: Repository rule violation was detected type: object properties: @@ -70077,7 +70707,7 @@ paths: items: type: object properties: - placeholder_id: &615 + placeholder_id: &623 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70109,8 +70739,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -70171,7 +70801,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *482 examples: default: value: @@ -70206,7 +70836,7 @@ paths: '422': *15 '404': *6 '409': *90 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70226,8 +70856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *338 - - *339 + - *346 + - *347 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70351,20 +70981,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *338 - - *339 - - *225 - - *226 - - *227 + - *346 + - *347 - *228 + - *229 + - *230 + - *231 - 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 - - *229 - - *230 + - *232 + - *233 + - *234 - *82 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -70384,8 +71015,8 @@ paths: default: 30 - *80 - *81 - - *231 - - *232 + - *235 + - *236 responses: '200': description: Response @@ -70393,7 +71024,7 @@ paths: application/json: schema: type: array - items: &477 + items: &485 type: object description: A Dependabot alert. properties: @@ -70428,7 +71059,7 @@ paths: - development - runtime - - security_advisory: *475 + security_advisory: *483 security_vulnerability: *97 url: *98 html_url: *99 @@ -70459,7 +71090,7 @@ paths: dismissal. maxLength: 280 fixed_at: *103 - auto_dismissed_at: *476 + auto_dismissed_at: *484 required: - number - state @@ -70686,9 +71317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *338 - - *339 - - &478 + - *346 + - *347 + - &486 name: alert_number in: path description: |- @@ -70703,7 +71334,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *485 examples: default: value: @@ -70813,9 +71444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *338 - - *339 - - *478 + - *346 + - *347 + - *486 requestBody: required: true content: @@ -70860,7 +71491,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *485 examples: default: value: @@ -70989,8 +71620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -71008,7 +71639,7 @@ paths: type: integer secrets: type: array - items: &481 + items: &489 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71062,16 +71693,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *479 + schema: *487 examples: - default: *480 + default: *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71091,15 +71722,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *481 + schema: *489 examples: default: value: @@ -71125,9 +71756,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -71155,7 +71786,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -71179,9 +71810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -71203,8 +71834,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: - - *338 - - *339 + - *346 + - *347 - 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 @@ -71378,8 +72009,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -71639,8 +72270,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -71723,7 +72354,7 @@ paths: - version - url additionalProperties: false - metadata: &482 + metadata: &490 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71762,7 +72393,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *482 + metadata: *490 resolved: type: object description: A collection of resolved package dependencies. @@ -71776,7 +72407,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *482 + metadata: *490 relationship: type: string description: A notation of whether a dependency is requested @@ -71909,8 +72540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *338 - - *339 + - *346 + - *347 - name: sha description: The SHA recorded at creation time. in: query @@ -71951,9 +72582,9 @@ paths: application/json: schema: type: array - items: *483 + items: *491 examples: - default: *484 + default: *492 headers: Link: *37 x-github: @@ -72019,8 +72650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -72102,7 +72733,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *491 examples: simple-example: summary: Simple example @@ -72175,9 +72806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *338 - - *339 - - &485 + - *346 + - *347 + - &493 name: deployment_id description: deployment_id parameter in: path @@ -72189,7 +72820,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *491 examples: default: value: @@ -72254,9 +72885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 responses: '204': description: Response @@ -72278,9 +72909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 - *17 - *19 responses: @@ -72290,7 +72921,7 @@ paths: application/json: schema: type: array - items: &486 + items: &494 title: Deployment Status description: The status of a deployment. type: object @@ -72454,9 +73085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 requestBody: required: true content: @@ -72531,9 +73162,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *494 examples: - default: &487 + default: &495 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72589,9 +73220,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 - name: status_id in: path required: true @@ -72602,9 +73233,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *494 examples: - default: *487 + default: *495 '404': *6 x-github: githubCloudOnly: false @@ -72629,8 +73260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -72687,8 +73318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -72706,7 +73337,7 @@ paths: - 5 environments: type: array - items: &489 + items: &497 title: Environment description: Details of a deployment environment type: object @@ -72768,7 +73399,7 @@ paths: type: string examples: - wait_timer - wait_timer: &491 + wait_timer: &499 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72810,11 +73441,11 @@ paths: items: type: object properties: - type: *488 + type: *496 reviewer: anyOf: - *4 - - *261 + - *265 required: - id - node_id @@ -72837,7 +73468,7 @@ paths: - id - node_id - type - deployment_branch_policy: &492 + deployment_branch_policy: &500 type: - object - 'null' @@ -72954,9 +73585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *338 - - *339 - - &490 + - *346 + - *347 + - &498 name: environment_name in: path required: true @@ -72969,9 +73600,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *497 examples: - default: &493 + default: &501 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73055,9 +73686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: false content: @@ -73067,7 +73698,7 @@ paths: - object - 'null' properties: - wait_timer: *491 + wait_timer: *499 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -73086,14 +73717,14 @@ paths: items: type: object properties: - type: *488 + type: *496 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *492 + deployment_branch_policy: *500 additionalProperties: false examples: default: @@ -73113,9 +73744,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *497 examples: - default: *493 + default: *501 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73139,9 +73770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 responses: '204': description: Default response @@ -73166,9 +73797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 - *17 - *19 responses: @@ -73187,7 +73818,7 @@ paths: - 2 branch_policies: type: array - items: &494 + items: &502 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73248,9 +73879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: true content: @@ -73298,9 +73929,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - example-wildcard: &495 + example-wildcard: &503 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73342,10 +73973,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - &496 + - *346 + - *347 + - *498 + - &504 name: branch_policy_id in: path required: true @@ -73357,9 +73988,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - default: *495 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73378,10 +74009,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - *496 + - *346 + - *347 + - *498 + - *504 requestBody: required: true content: @@ -73410,9 +74041,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - default: *495 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73431,10 +74062,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - *496 + - *346 + - *347 + - *498 + - *504 responses: '204': description: Response @@ -73459,9 +74090,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 responses: '200': description: List of deployment protection rules @@ -73478,7 +74109,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &497 + items: &505 title: Deployment protection rule description: Deployment protection rule type: object @@ -73500,7 +74131,7 @@ paths: for the environment. examples: - true - app: &498 + app: &506 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73603,9 +74234,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 requestBody: content: application/json: @@ -73626,9 +74257,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *497 + schema: *505 examples: - default: &499 + default: &507 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73663,9 +74294,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 - *19 - *17 responses: @@ -73685,7 +74316,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *498 + items: *506 examples: default: value: @@ -73720,10 +74351,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: - - *338 - - *339 - - *490 - - &500 + - *346 + - *347 + - *498 + - &508 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73735,9 +74366,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *505 examples: - default: *499 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73758,10 +74389,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: - - *490 - - *339 - - *338 - - *500 + - *498 + - *347 + - *346 + - *508 responses: '204': description: Response @@ -73787,9 +74418,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 - *17 - *19 responses: @@ -73807,9 +74438,9 @@ paths: type: integer secrets: type: array - items: *375 + items: *383 examples: - default: *376 + default: *384 headers: Link: *37 x-github: @@ -73834,17 +74465,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 responses: '200': description: Response content: application/json: - schema: *377 + schema: *385 examples: - default: *378 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73866,18 +74497,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 responses: '200': description: Response content: application/json: - schema: *375 + schema: *383 examples: - default: *501 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73899,10 +74530,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 requestBody: required: true content: @@ -73933,7 +74564,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -73959,10 +74590,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 responses: '204': description: Default response @@ -73987,10 +74618,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *338 - - *339 - - *490 - - *362 + - *346 + - *347 + - *498 + - *370 - *19 responses: '200': @@ -74007,9 +74638,9 @@ paths: type: integer variables: type: array - items: *379 + items: *387 examples: - default: *380 + default: *388 headers: Link: *37 x-github: @@ -74032,9 +74663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: true content: @@ -74061,7 +74692,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -74086,18 +74717,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *338 - - *339 - - *490 - - *196 + - *346 + - *347 + - *498 + - *199 responses: '200': description: Response content: application/json: - schema: *379 + schema: *387 examples: - default: *502 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74118,10 +74749,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *338 - - *339 - - *196 - - *490 + - *346 + - *347 + - *199 + - *498 requestBody: required: true content: @@ -74163,10 +74794,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *338 - - *339 - - *196 - - *490 + - *346 + - *347 + - *199 + - *498 responses: '204': description: Response @@ -74188,8 +74819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -74199,7 +74830,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: 200-response: value: @@ -74266,8 +74897,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *338 - - *339 + - *346 + - *347 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74289,7 +74920,7 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: default: value: @@ -74426,8 +75057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -74460,9 +75091,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 '400': *14 '422': *15 '403': *27 @@ -74483,8 +75114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -74543,8 +75174,8 @@ paths: application/json: schema: oneOf: - - *166 - - *503 + - *169 + - *511 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74569,8 +75200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *338 - - *339 + - *346 + - *347 - name: file_sha in: path required: true @@ -74670,8 +75301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -74780,7 +75411,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &512 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75006,15 +75637,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 responses: '200': description: Response content: application/json: - schema: *504 + schema: *512 examples: default: value: @@ -75070,9 +75701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *338 - - *339 - - &505 + - *346 + - *347 + - &513 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. @@ -75089,7 +75720,7 @@ paths: application/json: schema: type: array - items: &506 + items: &514 title: Git Reference description: Git references within a repository type: object @@ -75165,17 +75796,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 responses: '200': description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: &507 + default: &515 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75204,8 +75835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75234,9 +75865,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: *507 + default: *515 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75262,9 +75893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 requestBody: required: true content: @@ -75293,9 +75924,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: *507 + default: *515 '422': *15 '409': *90 x-github: @@ -75313,9 +75944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 responses: '204': description: Response @@ -75368,8 +75999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75436,7 +76067,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &517 title: Git Tag description: Metadata for a Git tag type: object @@ -75492,7 +76123,7 @@ paths: - sha - type - url - verification: *508 + verification: *516 required: - sha - url @@ -75502,7 +76133,7 @@ paths: - tag - message examples: - default: &510 + default: &518 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75575,8 +76206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *338 - - *339 + - *346 + - *347 - name: tag_sha in: path required: true @@ -75587,9 +76218,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *517 examples: - default: *510 + default: *518 '404': *6 '409': *90 x-github: @@ -75613,8 +76244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75688,7 +76319,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &519 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75806,8 +76437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *338 - - *339 + - *346 + - *347 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75830,7 +76461,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *519 examples: default-response: summary: Default response @@ -75889,8 +76520,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -75900,7 +76531,7 @@ paths: application/json: schema: type: array - items: &512 + items: &520 title: Webhook description: Webhooks for repositories. type: object @@ -75963,7 +76594,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &749 + last_response: &757 title: Hook Response type: object properties: @@ -76040,8 +76671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -76094,9 +76725,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: &513 + default: &521 value: type: Repository id: 12345678 @@ -76144,17 +76775,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '200': description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: *513 + default: *521 '404': *6 x-github: githubCloudOnly: false @@ -76174,9 +76805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 requestBody: required: true content: @@ -76221,9 +76852,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: *513 + default: *521 '422': *15 '404': *6 x-github: @@ -76244,9 +76875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76270,9 +76901,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '200': description: Response @@ -76299,9 +76930,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 requestBody: required: false content: @@ -76345,11 +76976,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *17 - - *239 + - *243 responses: '200': description: Response @@ -76357,9 +76988,9 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: - default: *241 + default: *245 '400': *14 '422': *15 x-github: @@ -76378,18 +77009,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *16 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 '400': *14 '422': *15 x-github: @@ -76408,9 +77039,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *16 responses: '202': *91 @@ -76433,9 +77064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76460,9 +77091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76520,14 +77151,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &514 + schema: &522 title: Import description: A repository import from an external source. type: object @@ -76634,7 +77265,7 @@ paths: - html_url - authors_url examples: - default: &517 + default: &525 value: vcs: subversion use_lfs: true @@ -76650,7 +77281,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &515 + '503': &523 description: Unavailable due to service under maintenance. content: application/json: @@ -76679,8 +77310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -76728,7 +77359,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: default: value: @@ -76753,7 +77384,7 @@ paths: type: string '422': *15 '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76781,8 +77412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -76834,7 +77465,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: example-1: summary: Example 1 @@ -76882,7 +77513,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76905,12 +77536,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76936,9 +77567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *338 - - *339 - - &698 + - *346 + - *347 + - &706 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76952,7 +77583,7 @@ paths: application/json: schema: type: array - items: &516 + items: &524 title: Porter Author description: Porter Author type: object @@ -77006,7 +77637,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77031,8 +77662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *338 - - *339 + - *346 + - *347 - name: author_id in: path required: true @@ -77062,7 +77693,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *524 examples: default: value: @@ -77075,7 +77706,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77099,8 +77730,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77141,7 +77772,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77169,8 +77800,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -77197,11 +77828,11 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: - default: *517 + default: *525 '422': *15 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77224,8 +77855,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77233,8 +77864,8 @@ paths: application/json: schema: *20 examples: - default: *518 - '301': *352 + default: *526 + '301': *360 '404': *6 x-github: githubCloudOnly: false @@ -77254,8 +77885,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77263,12 +77894,12 @@ paths: application/json: schema: anyOf: - - *256 + - *260 - type: object properties: {} additionalProperties: false examples: - default: &520 + default: &528 value: limit: collaborators_only origin: repository @@ -77293,13 +77924,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *519 + schema: *527 examples: default: summary: Example request body @@ -77311,9 +77942,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: - default: *520 + default: *528 '409': description: Response x-github: @@ -77335,8 +77966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -77359,8 +77990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -77370,9 +78001,9 @@ paths: application/json: schema: type: array - items: *521 + items: *529 examples: - default: &691 + default: &699 value: - id: 1 repository: @@ -77503,9 +78134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *338 - - *339 - - *260 + - *346 + - *347 + - *264 requestBody: required: false content: @@ -77534,7 +78165,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *529 examples: default: value: @@ -77665,9 +78296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *338 - - *339 - - *260 + - *346 + - *347 + - *264 responses: '204': description: Response @@ -77698,8 +78329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *338 - - *339 + - *346 + - *347 - 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 @@ -77739,7 +78370,7 @@ paths: required: false schema: type: string - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -77752,7 +78383,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -77762,9 +78393,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: &530 + default: &538 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77912,7 +78543,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *352 + '301': *360 '422': *15 '404': *6 x-github: @@ -77941,8 +78572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -78023,9 +78654,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: &525 + default: &533 value: id: 1 node_id: MDU6SXNzdWUx @@ -78179,9 +78810,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *121 + '503': *124 '404': *6 - '410': *349 + '410': *357 x-github: triggersNotification: true githubCloudOnly: false @@ -78209,9 +78840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *338 - - *339 - - *150 + - *346 + - *347 + - *153 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -78221,7 +78852,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -78231,9 +78862,9 @@ paths: application/json: schema: type: array - items: *522 + items: *530 examples: - default: &527 + default: &535 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78291,17 +78922,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: &523 + default: &531 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78355,9 +78986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -78379,9 +79010,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: *523 + default: *531 '422': *15 x-github: githubCloudOnly: false @@ -78399,9 +79030,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -78421,9 +79052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 comment. @@ -78449,9 +79080,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -78472,9 +79103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -78506,16 +79137,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -78537,10 +79168,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -78560,8 +79191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -78571,7 +79202,7 @@ paths: application/json: schema: type: array - items: &524 + items: &532 title: Issue Event description: Issue Event type: object @@ -78618,7 +79249,7 @@ paths: issue: anyOf: - type: 'null' - - *141 + - *144 label: title: Issue Event Label description: Issue Event Label @@ -78651,7 +79282,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *261 + requested_team: *265 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78718,7 +79349,7 @@ paths: required: - from - to - author_association: *128 + author_association: *131 lock_reason: type: - string @@ -78910,8 +79541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *338 - - *339 + - *346 + - *347 - name: event_id in: path required: true @@ -78922,7 +79553,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *532 examples: default: value: @@ -79115,7 +79746,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *349 + '410': *357 '403': *27 x-github: githubCloudOnly: false @@ -79149,9 +79780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *338 - - *339 - - &526 + - *346 + - *347 + - &534 name: issue_number description: The number that identifies the issue. in: path @@ -79163,12 +79794,12 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 - '301': *352 + default: *533 + '301': *360 '404': *6 - '410': *349 + '410': *357 '304': *35 x-github: githubCloudOnly: false @@ -79193,9 +79824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -79303,15 +79934,15 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 '422': *15 - '503': *121 + '503': *124 '403': *27 - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79329,9 +79960,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -79357,9 +79988,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79375,9 +80006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: content: application/json: @@ -79402,9 +80033,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79426,9 +80057,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: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - name: assignee in: path required: true @@ -79468,10 +80099,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *338 - - *339 - - *526 - - *131 + - *346 + - *347 + - *534 + - *134 - *17 - *19 responses: @@ -79481,13 +80112,13 @@ paths: application/json: schema: type: array - items: *522 + items: *530 examples: - default: *527 + default: *535 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79516,9 +80147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -79540,16 +80171,16 @@ paths: description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: *523 + default: *531 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *349 + '410': *357 '422': *15 '404': *6 x-github: @@ -79569,9 +80200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -79585,7 +80216,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &531 + - &539 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79634,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &540 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79762,7 +80393,7 @@ paths: - performed_via_github_app - assignee - assigner - - &533 + - &541 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79808,7 +80439,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &542 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79854,7 +80485,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &543 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79903,7 +80534,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &544 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79932,7 +80563,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *261 + requested_team: *265 requested_reviewer: *4 required: - review_requester @@ -79945,7 +80576,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &545 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79974,7 +80605,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *261 + requested_team: *265 requested_reviewer: *4 required: - review_requester @@ -79987,7 +80618,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &546 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80043,7 +80674,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &547 title: Locked Issue Event description: Locked Issue Event type: object @@ -80088,7 +80719,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &548 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80149,7 +80780,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &549 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80210,7 +80841,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &550 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80271,7 +80902,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &551 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80364,7 +80995,7 @@ paths: color: red headers: Link: *37 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80381,9 +81012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -80393,7 +81024,7 @@ paths: application/json: schema: type: array - items: &528 + items: &536 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80448,7 +81079,7 @@ paths: - color - default examples: - default: &529 + default: &537 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80466,9 +81097,9 @@ paths: default: false headers: Link: *37 - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80485,9 +81116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80546,12 +81177,12 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 - '301': *352 + default: *537 + '301': *360 '404': *6 - '410': *349 + '410': *357 '422': *15 x-github: githubCloudOnly: false @@ -80568,9 +81199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80630,12 +81261,12 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 - '301': *352 + default: *537 + '301': *360 '404': *6 - '410': *349 + '410': *357 '422': *15 x-github: githubCloudOnly: false @@ -80652,15 +81283,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 responses: '204': description: Response - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80679,9 +81310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - name: name in: path required: true @@ -80694,7 +81325,7 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: default: value: @@ -80705,9 +81336,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80727,9 +81358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80758,7 +81389,7 @@ paths: '204': description: Response '403': *27 - '410': *349 + '410': *357 '404': *6 '422': *15 x-github: @@ -80776,9 +81407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 responses: '204': description: Response @@ -80800,9 +81431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - 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. @@ -80828,13 +81459,13 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80852,9 +81483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -80886,16 +81517,16 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -80917,10 +81548,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: + - *346 + - *347 + - *534 - *338 - - *339 - - *526 - - *330 responses: '204': description: Response @@ -80949,9 +81580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -80961,7 +81592,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -80973,9 +81604,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81008,9 +81639,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -81020,13 +81651,13 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *530 + default: *538 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81054,9 +81685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -81066,7 +81697,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -81082,16 +81714,16 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *349 + '410': *357 '422': *15 '404': *6 x-github: @@ -81111,9 +81743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -81144,13 +81776,13 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 '403': *27 '404': *6 '422': *7 - '503': *121 + '503': *124 x-github: triggersNotification: true githubCloudOnly: false @@ -81168,9 +81800,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -81185,19 +81817,19 @@ paths: description: Timeline Event type: object anyOf: - - *531 - - *532 - - *533 - - *534 - - *535 - - *536 - - *537 - - *538 - *539 - *540 - *541 - *542 - *543 + - *544 + - *545 + - *546 + - *547 + - *548 + - *549 + - *550 + - *551 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81245,12 +81877,12 @@ paths: issue_url: type: string format: uri - author_association: *128 + author_association: *131 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - event - actor @@ -81281,7 +81913,7 @@ paths: properties: type: type: string - issue: *141 + issue: *144 required: - event - created_at @@ -81497,7 +82129,7 @@ paths: type: string body_text: type: string - author_association: *128 + author_association: *131 required: - event - id @@ -81520,7 +82152,7 @@ paths: type: string comments: type: array - items: &563 + items: &571 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81625,7 +82257,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *128 + author_association: *131 _links: type: object properties: @@ -81720,7 +82352,7 @@ paths: enum: - line - file - reactions: *129 + reactions: *132 body_html: type: string examples: @@ -81758,7 +82390,7 @@ paths: type: string comments: type: array - items: *458 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82033,7 +82665,7 @@ paths: headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82050,8 +82682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -82061,7 +82693,7 @@ paths: application/json: schema: type: array - items: &544 + items: &552 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82128,8 +82760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82165,9 +82797,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *552 examples: - default: &545 + default: &553 value: id: 1 key: ssh-rsa AAA... @@ -82201,9 +82833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *338 - - *339 - - &546 + - *346 + - *347 + - &554 name: key_id description: The unique identifier of the key. in: path @@ -82215,9 +82847,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *552 examples: - default: *545 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -82235,9 +82867,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *338 - - *339 - - *546 + - *346 + - *347 + - *554 responses: '204': description: Response @@ -82257,8 +82889,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -82268,9 +82900,9 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 + default: *537 headers: Link: *37 '404': *6 @@ -82291,8 +82923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82328,9 +82960,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: - default: &547 + default: &555 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82362,8 +82994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82374,9 +83006,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: - default: *547 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -82393,8 +83025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82433,7 +83065,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: default: value: @@ -82459,8 +83091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82486,8 +83118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -82523,8 +83155,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '202': *91 '403': @@ -82552,8 +83184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -82579,9 +83211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *338 - - *339 - - *436 + - *346 + - *347 + - *444 responses: '200': description: Response @@ -82647,7 +83279,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 required: - _links - git_url @@ -82728,8 +83360,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82794,8 +83426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82829,9 +83461,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *459 + schema: *467 examples: - default: *548 + default: *556 '204': description: Response when already merged '404': @@ -82856,8 +83488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82898,7 +83530,7 @@ paths: application/json: schema: type: array - items: *463 + items: *471 examples: default: value: @@ -82954,8 +83586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82995,9 +83627,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: &549 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83056,9 +83688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *338 - - *339 - - &550 + - *346 + - *347 + - &558 name: milestone_number description: The number that identifies the milestone. in: path @@ -83070,9 +83702,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: *549 + default: *557 '404': *6 x-github: githubCloudOnly: false @@ -83089,9 +83721,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 requestBody: required: false content: @@ -83129,9 +83761,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: *549 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83147,9 +83779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 responses: '204': description: Response @@ -83170,9 +83802,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: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 - *17 - *19 responses: @@ -83182,9 +83814,9 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 + default: *537 headers: Link: *37 x-github: @@ -83203,12 +83835,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: - - *338 - - *339 - - *551 - - *552 - - *131 - - *553 + - *346 + - *347 + - *559 + - *560 + - *134 + - *561 - *17 - *19 responses: @@ -83218,9 +83850,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *554 + default: *562 headers: Link: *37 x-github: @@ -83244,8 +83876,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -83303,14 +83935,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &555 + schema: &563 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83454,7 +84086,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &564 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83495,8 +84127,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -83551,9 +84183,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *563 examples: - default: *556 + default: *564 '422': *15 '409': *90 x-github: @@ -83576,8 +84208,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -83685,8 +84317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -83712,8 +84344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -83723,7 +84355,7 @@ paths: application/json: schema: type: array - items: &557 + items: &565 title: Page Build description: Page Build type: object @@ -83815,8 +84447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -83863,16 +84495,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *557 + schema: *565 examples: - default: &558 + default: &566 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83920,8 +84552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *338 - - *339 + - *346 + - *347 - name: build_id in: path required: true @@ -83932,9 +84564,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *565 examples: - default: *558 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83954,8 +84586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84064,9 +84696,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: - - *338 - - *339 - - &559 + - *346 + - *347 + - &567 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84124,11 +84756,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *338 - - *339 - - *559 + - *346 + - *347 + - *567 responses: - '204': *108 + '204': *111 '404': *6 x-github: githubCloudOnly: false @@ -84153,8 +84785,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -84422,7 +85054,7 @@ paths: description: Empty response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -84449,8 +85081,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Private vulnerability reporting status @@ -84487,10 +85119,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: - '204': *108 + '204': *111 '422': *14 x-github: githubCloudOnly: false @@ -84509,10 +85141,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: - '204': *108 + '204': *111 '422': *14 x-github: githubCloudOnly: false @@ -84533,8 +85165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: Indicates the state of the projects to return. in: query @@ -84555,7 +85187,7 @@ paths: application/json: schema: type: array - items: *291 + items: *295 examples: default: value: @@ -84595,7 +85227,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -84615,8 +85247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84642,13 +85274,13 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: *348 + default: *356 '401': *23 '403': *27 '404': *6 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -84668,8 +85300,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -84677,7 +85309,7 @@ paths: application/json: schema: type: array - items: *293 + items: *297 examples: default: value: @@ -84708,8 +85340,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84721,7 +85353,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *293 + items: *297 required: - properties examples: @@ -84771,8 +85403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84832,9 +85464,9 @@ paths: application/json: schema: type: array - items: *560 + items: *568 examples: - default: *561 + default: *569 headers: Link: *37 '304': *35 @@ -84866,8 +85498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84934,7 +85566,7 @@ paths: description: Response content: application/json: - schema: &565 + schema: &573 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85063,7 +85695,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 active_lock_reason: type: - string @@ -85118,7 +85750,7 @@ paths: type: - array - 'null' - items: *274 + items: *278 head: type: object properties: @@ -85156,14 +85788,14 @@ paths: _links: type: object properties: - comments: *464 - commits: *464 - statuses: *464 - html: *464 - issue: *464 - review_comments: *464 - review_comment: *464 - self: *464 + comments: *472 + commits: *472 + statuses: *472 + html: *472 + issue: *472 + review_comments: *472 + review_comment: *472 + self: *472 required: - comments - commits @@ -85173,8 +85805,8 @@ paths: - review_comments - review_comment - self - author_association: *128 - auto_merge: *562 + author_association: *131 + auto_merge: *570 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85276,7 +85908,7 @@ paths: - merged_by - review_comments examples: - default: &566 + default: &574 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85803,8 +86435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - name: sort in: query required: false @@ -85823,7 +86455,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -85833,9 +86465,9 @@ paths: application/json: schema: type: array - items: *563 + items: *571 examples: - default: &568 + default: &576 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85912,17 +86544,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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *563 + schema: *571 examples: - default: &564 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85997,9 +86629,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -86021,9 +86653,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: - default: *564 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86039,9 +86671,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -86062,9 +86694,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 pull request review comment. @@ -86090,9 +86722,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -86113,9 +86745,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -86147,16 +86779,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -86178,10 +86810,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -86224,9 +86856,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *338 - - *339 - - &567 + - *346 + - *347 + - &575 name: pull_number description: The number that identifies the pull request. in: path @@ -86239,9 +86871,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *565 + schema: *573 examples: - default: *566 + default: *574 '304': *35 '404': *6 '406': @@ -86250,7 +86882,7 @@ paths: application/json: schema: *3 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86276,9 +86908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -86320,9 +86952,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *573 examples: - default: *566 + default: *574 '422': *15 '403': *27 x-github: @@ -86344,9 +86976,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -86407,21 +87039,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86447,10 +87079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *338 - - *339 - - *567 - - *150 + - *346 + - *347 + - *575 + - *153 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -86460,7 +87092,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -86470,9 +87102,9 @@ paths: application/json: schema: type: array - items: *563 + items: *571 examples: - default: *568 + default: *576 headers: Link: *37 x-github: @@ -86505,9 +87137,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -86613,7 +87245,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: example-for-a-multi-line-comment: value: @@ -86701,10 +87333,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *338 - - *339 - - *567 - - *140 + - *346 + - *347 + - *575 + - *143 requestBody: required: true content: @@ -86726,7 +87358,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: default: value: @@ -86812,9 +87444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -86824,9 +87456,9 @@ paths: application/json: schema: type: array - items: *459 + items: *467 examples: - default: *569 + default: *577 headers: Link: *37 x-github: @@ -86856,9 +87488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -86868,7 +87500,7 @@ paths: application/json: schema: type: array - items: *471 + items: *479 examples: default: value: @@ -86887,7 +87519,7 @@ paths: Link: *37 '422': *15 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86906,9 +87538,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 responses: '204': description: Response if pull request has been merged @@ -86931,9 +87563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -87045,9 +87677,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 responses: '200': description: Response @@ -87063,7 +87695,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 required: - users - teams @@ -87122,9 +87754,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -87161,7 +87793,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *568 examples: default: value: @@ -87697,9 +88329,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -87733,7 +88365,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *568 examples: default: value: @@ -88238,9 +88870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -88250,7 +88882,7 @@ paths: application/json: schema: type: array - items: &570 + items: &578 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88324,7 +88956,7 @@ paths: type: string body_text: type: string - author_association: *128 + author_association: *131 required: - id - node_id @@ -88406,9 +89038,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -88498,9 +89130,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: &572 + default: &580 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88563,10 +89195,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: - - *338 - - *339 - - *567 - - &571 + - *346 + - *347 + - *575 + - &579 name: review_id description: The unique identifier of the review. in: path @@ -88578,9 +89210,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: &573 + default: &581 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88639,10 +89271,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -88665,7 +89297,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: default: value: @@ -88727,18 +89359,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 responses: '200': description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: *572 + default: *580 '422': *7 '404': *6 x-github: @@ -88765,10 +89397,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 - *17 - *19 responses: @@ -88862,13 +89494,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *128 + author_association: *131 _links: type: object properties: - self: *464 - html: *464 - pull_request: *464 + self: *472 + html: *472 + pull_request: *472 required: - self - html @@ -88877,7 +89509,7 @@ paths: type: string body_html: type: string - reactions: *129 + reactions: *132 side: description: The side of the first line of the range for a multi-line comment. @@ -89019,10 +89651,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -89051,7 +89683,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: default: value: @@ -89114,10 +89746,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -89152,9 +89784,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: *573 + default: *581 '404': *6 '422': *7 '403': *27 @@ -89176,9 +89808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -89242,8 +89874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *338 - - *339 + - *346 + - *347 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89256,9 +89888,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *582 examples: - default: &575 + default: &583 value: type: file encoding: base64 @@ -89300,8 +89932,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: - - *338 - - *339 + - *346 + - *347 - name: dir description: The alternate path to look for a README file in: path @@ -89321,9 +89953,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *582 examples: - default: *575 + default: *583 '404': *6 '422': *15 x-github: @@ -89345,8 +89977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -89356,7 +89988,7 @@ paths: application/json: schema: type: array - items: &576 + items: &584 title: Release description: A release. type: object @@ -89428,7 +90060,7 @@ paths: author: *4 assets: type: array - items: &577 + items: &585 title: Release Asset description: Data related to a release. type: object @@ -89498,7 +90130,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *129 + reactions: *132 required: - assets_url - upload_url @@ -89608,8 +90240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -89685,9 +90317,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: &580 + default: &588 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89790,9 +90422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *338 - - *339 - - &578 + - *346 + - *347 + - &586 name: asset_id description: The unique identifier of the asset. in: path @@ -89804,9 +90436,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *585 examples: - default: &579 + default: &587 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 @@ -89840,7 +90472,7 @@ paths: type: User site_admin: false '404': *6 - '302': *473 + '302': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89856,9 +90488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *338 - - *339 - - *578 + - *346 + - *347 + - *586 requestBody: required: false content: @@ -89887,9 +90519,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *585 examples: - default: *579 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89905,9 +90537,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *338 - - *339 - - *578 + - *346 + - *347 + - *586 responses: '204': description: Response @@ -89931,8 +90563,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -90018,16 +90650,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90044,8 +90676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *338 - - *339 + - *346 + - *347 - name: tag description: tag parameter in: path @@ -90058,9 +90690,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 '404': *6 x-github: githubCloudOnly: false @@ -90082,9 +90714,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *338 - - *339 - - &581 + - *346 + - *347 + - &589 name: release_id description: The unique identifier of the release. in: path @@ -90098,9 +90730,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: *576 + schema: *584 examples: - default: *580 + default: *588 '401': description: Unauthorized x-github: @@ -90118,9 +90750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 requestBody: required: false content: @@ -90184,9 +90816,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 '404': description: Not Found if the discussion category name is invalid content: @@ -90207,9 +90839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 responses: '204': description: Response @@ -90229,9 +90861,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - *17 - *19 responses: @@ -90241,7 +90873,7 @@ paths: application/json: schema: type: array - items: *577 + items: *585 examples: default: value: @@ -90322,9 +90954,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: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - name: name in: query required: true @@ -90350,7 +90982,7 @@ paths: description: Response for successful upload content: application/json: - schema: *577 + schema: *585 examples: response-for-successful-upload: value: @@ -90404,9 +91036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - 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. @@ -90430,9 +91062,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -90453,9 +91085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 requestBody: required: true content: @@ -90485,16 +91117,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -90516,10 +91148,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: + - *346 + - *347 + - *589 - *338 - - *339 - - *581 - - *330 responses: '204': description: Response @@ -90543,9 +91175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 - *17 - *19 responses: @@ -90561,8 +91193,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *582 - - &584 + - *590 + - &592 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90581,54 +91213,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *583 - - *584 - - allOf: - - *585 - - *584 - - allOf: - - *586 - - *584 - - allOf: - - *587 - - *584 - - allOf: - - *588 - - *584 - - allOf: - - *589 - - *584 - - allOf: - - *590 - - *584 - allOf: - *591 - - *584 - - allOf: - *592 - - *584 - allOf: - *593 - - *584 + - *592 - allOf: - *594 - - *584 + - *592 - allOf: - *595 - - *584 + - *592 - allOf: - *596 - - *584 + - *592 - allOf: - *597 - - *584 + - *592 - allOf: - *598 - - *584 + - *592 - allOf: - *599 - - *584 + - *592 + - allOf: + - *600 + - *592 + - allOf: + - *601 + - *592 + - allOf: + - *602 + - *592 + - allOf: + - *603 + - *592 + - allOf: + - *604 + - *592 + - allOf: + - *605 + - *592 + - allOf: + - *606 + - *592 + - allOf: + - *607 + - *592 examples: default: value: @@ -90667,8 +91299,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - name: includes_parents @@ -90679,7 +91311,7 @@ paths: schema: type: boolean default: true - - *600 + - *608 responses: '200': description: Response @@ -90687,7 +91319,7 @@ paths: application/json: schema: type: array - items: *118 + items: *121 examples: default: value: @@ -90734,8 +91366,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 requestBody: description: Request body required: true @@ -90755,16 +91387,16 @@ paths: - tag - push default: branch - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *111 + items: *119 + conditions: *114 rules: type: array description: An array of rules within the ruleset. - items: *117 + items: *120 required: - name - enforcement @@ -90795,9 +91427,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: &609 + default: &617 value: id: 42 name: super cool ruleset @@ -90844,12 +91476,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *338 - - *339 - - *601 - - *299 - - *602 - - *603 + - *346 + - *347 + - *609 + - *303 + - *610 + - *611 - *17 - *19 responses: @@ -90857,9 +91489,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *612 examples: - default: *605 + default: *613 '404': *6 '500': *93 x-github: @@ -90880,17 +91512,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *338 - - *339 - - *606 + - *346 + - *347 + - *614 responses: '200': description: Response content: application/json: - schema: *607 + schema: *615 examples: - default: *608 + default: *616 '404': *6 '500': *93 x-github: @@ -90918,8 +91550,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90939,9 +91571,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *609 + default: *617 '404': *6 '500': *93 put: @@ -90959,8 +91591,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90985,16 +91617,16 @@ paths: - branch - tag - push - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *111 + items: *119 + conditions: *114 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -91022,9 +91654,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *609 + default: *617 '404': *6 '500': *93 delete: @@ -91042,8 +91674,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91071,20 +91703,20 @@ 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: - - *338 - - *339 - - *301 - - *302 - - *303 - - *304 - - *82 - - *19 - - *17 - - *610 - - *611 + - *346 + - *347 - *305 - *306 - *307 + - *308 + - *82 + - *19 + - *17 + - *618 + - *619 + - *309 + - *310 + - *311 responses: '200': description: Response @@ -91092,7 +91724,7 @@ paths: application/json: schema: type: array - items: &614 + items: &622 type: object properties: number: *94 @@ -91108,8 +91740,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *612 - resolution: *613 + state: *620 + resolution: *621 resolved_at: type: - string @@ -91300,7 +91932,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91322,15 +91954,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: Response content: application/json: - schema: *614 + schema: *622 examples: default: value: @@ -91361,7 +91993,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91382,9 +92014,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: true content: @@ -91392,8 +92024,8 @@ paths: schema: type: object properties: - state: *612 - resolution: *613 + state: *620 + resolution: *621 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -91412,7 +92044,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *622 examples: default: value: @@ -91465,7 +92097,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91487,9 +92119,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 - *19 - *17 responses: @@ -91500,7 +92132,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &770 + items: &778 type: object properties: type: @@ -91857,7 +92489,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91879,8 +92511,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -91888,14 +92520,14 @@ paths: schema: type: object properties: - reason: &616 + reason: &624 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *615 + placeholder_id: *623 required: - reason - placeholder_id @@ -91912,7 +92544,7 @@ paths: schema: type: object properties: - reason: *616 + reason: *624 expire_at: type: - string @@ -91936,7 +92568,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91956,13 +92588,13 @@ 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: - - *338 - - *339 + - *346 + - *347 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *121 + '503': *124 '200': description: Response content: @@ -91972,7 +92604,7 @@ paths: properties: incremental_scans: type: array - items: &617 + items: &625 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92000,15 +92632,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *617 + items: *625 backfill_scans: type: array - items: *617 + items: *625 custom_pattern_backfill_scans: type: array items: allOf: - - *617 + - *625 - type: object properties: pattern_name: @@ -92078,8 +92710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *338 - - *339 + - *346 + - *347 - *82 - name: sort description: The property to sort the results by. @@ -92123,9 +92755,9 @@ paths: application/json: schema: type: array - items: *618 + items: *626 examples: - default: *619 + default: *627 '400': *14 '404': *6 x-github: @@ -92148,8 +92780,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -92229,7 +92861,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 required: - login - type @@ -92319,9 +92951,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: &621 + default: &629 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92554,8 +93186,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -92668,7 +93300,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: default: value: @@ -92815,17 +93447,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '200': description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: *621 + default: *629 '403': *27 '404': *6 x-github: @@ -92849,9 +93481,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 requestBody: required: true content: @@ -92931,7 +93563,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 required: - login - type @@ -93022,17 +93654,17 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: *621 - add_credit: *621 + default: *629 + add_credit: *629 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *166 + schema: *169 examples: invalid_state_transition: value: @@ -93063,9 +93695,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '202': *91 '400': *14 @@ -93092,17 +93724,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '202': description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 '400': *14 '422': *15 '403': *27 @@ -93128,8 +93760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -93225,8 +93857,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93235,7 +93867,7 @@ paths: application/json: schema: type: array - items: &622 + items: &630 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93248,7 +93880,7 @@ paths: - 1124 - -435 '202': *91 - '204': *108 + '204': *111 '422': description: Repository contains more than 10,000 commits x-github: @@ -93268,8 +93900,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -93320,7 +93952,7 @@ paths: total: 89 week: 1336280400 '202': *91 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93347,8 +93979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -93420,7 +94052,7 @@ paths: d: 77 c: 10 '202': *91 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93442,8 +94074,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93597,8 +94229,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93608,7 +94240,7 @@ paths: application/json: schema: type: array - items: *622 + items: *630 examples: default: value: @@ -93621,7 +94253,7 @@ paths: - - 0 - 2 - 21 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93641,8 +94273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *338 - - *339 + - *346 + - *347 - name: sha in: path required: true @@ -93698,7 +94330,7 @@ paths: description: Response content: application/json: - schema: *623 + schema: *631 examples: default: value: @@ -93752,8 +94384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -93765,7 +94397,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -93785,14 +94417,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &624 + schema: &632 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93865,8 +94497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -93892,7 +94524,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *632 examples: default: value: @@ -93919,8 +94551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -93940,8 +94572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -94023,8 +94655,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94032,7 +94664,7 @@ paths: application/json: schema: type: array - items: &625 + items: &633 title: Tag protection description: Tag protection type: object @@ -94089,8 +94721,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94113,7 +94745,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *633 examples: default: value: @@ -94144,8 +94776,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: - - *338 - - *339 + - *346 + - *347 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94182,8 +94814,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *338 - - *339 + - *346 + - *347 - name: ref in: path required: true @@ -94219,8 +94851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -94230,9 +94862,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 headers: Link: *37 '404': *6 @@ -94252,8 +94884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 responses: @@ -94261,7 +94893,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &634 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94273,7 +94905,7 @@ paths: required: - names examples: - default: &627 + default: &635 value: names: - octocat @@ -94296,8 +94928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94328,9 +94960,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *634 examples: - default: *627 + default: *635 '404': *6 '422': *7 x-github: @@ -94351,9 +94983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *338 - - *339 - - &628 + - *346 + - *347 + - &636 name: per description: The time frame to display results for. in: query @@ -94384,7 +95016,7 @@ paths: - 128 clones: type: array - items: &629 + items: &637 title: Traffic type: object properties: @@ -94471,8 +95103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94566,8 +95198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94630,9 +95262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *338 - - *339 - - *628 + - *346 + - *347 + - *636 responses: '200': description: Response @@ -94653,7 +95285,7 @@ paths: - 3782 views: type: array - items: *629 + items: *637 required: - uniques - count @@ -94730,8 +95362,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94767,7 +95399,7 @@ paths: description: Response content: application/json: - schema: *183 + schema: *186 examples: default: value: @@ -95005,8 +95637,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -95029,8 +95661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -95052,8 +95684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -95079,8 +95711,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *338 - - *339 + - *346 + - *347 - name: ref in: path required: true @@ -95172,9 +95804,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95215,7 +95847,7 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: default: value: @@ -95325,7 +95957,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &637 + - &645 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -95335,7 +95967,7 @@ paths: type: string examples: - members - - &642 + - &650 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -95347,7 +95979,7 @@ paths: format: int32 examples: - 1 - - &643 + - &651 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -95391,7 +96023,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &631 + items: &639 allOf: - type: object required: @@ -95473,7 +96105,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: &644 + meta: &652 type: object description: The metadata associated with the creation/updates to the user. @@ -95538,31 +96170,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &632 + '400': &640 description: Bad request content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '401': &633 + schema: *638 + '401': &641 description: Authorization failure - '403': &634 + '403': &642 description: Permission denied - '429': &635 + '429': &643 description: Too many requests content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '500': &636 + schema: *638 + '500': &644 description: Internal server error content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 + schema: *638 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95586,7 +96218,7 @@ paths: required: true content: application/json: - schema: &640 + schema: &648 type: object required: - schemas @@ -95646,9 +96278,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *631 + schema: *639 examples: - group: &638 + group: &646 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -95667,13 +96299,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': *632 - '401': *633 - '403': *634 - '409': &641 + '400': *640 + '401': *641 + '403': *642 + '409': &649 description: Duplicate record detected - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95690,7 +96322,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: - - &639 + - &647 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -95699,22 +96331,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *637 + - *645 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *631 + schema: *639 examples: - default: *638 - '400': *632 - '401': *633 - '403': *634 + default: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95733,13 +96365,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: - - *639 + - *647 - *38 requestBody: required: true content: application/json: - schema: *640 + schema: *648 examples: group: summary: Group @@ -95765,17 +96397,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *631 + schema: *639 examples: - group: *638 - groupWithMembers: *638 - '400': *632 - '401': *633 - '403': *634 + group: *646 + groupWithMembers: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95799,13 +96431,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: - - *639 + - *647 - *38 requestBody: required: true content: application/json: - schema: &651 + schema: &659 type: object required: - Operations @@ -95865,17 +96497,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *631 + schema: *639 examples: - updateGroup: *638 - addMembers: *638 - '400': *632 - '401': *633 - '403': *634 + updateGroup: *646 + addMembers: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95891,17 +96523,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: - - *639 + - *647 - *38 responses: '204': description: Group was deleted, no content - '400': *632 - '401': *633 - '403': *634 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95935,8 +96567,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *642 - - *643 + - *650 + - *651 - *38 responses: '200': @@ -95970,7 +96602,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &646 + items: &654 allOf: - type: object required: @@ -96062,7 +96694,7 @@ paths: address. examples: - true - roles: &645 + roles: &653 type: array description: The roles assigned to the user. items: @@ -96121,7 +96753,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *644 + meta: *652 startIndex: type: integer description: A starting index for the returned page @@ -96160,11 +96792,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *632 - '401': *633 - '403': *634 - '429': *635 - '500': *636 + '400': *640 + '401': *641 + '403': *642 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96188,7 +96820,7 @@ paths: required: true content: application/json: - schema: &649 + schema: &657 type: object required: - schemas @@ -96281,9 +96913,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *645 + roles: *653 examples: - user: &650 + user: &658 summary: User value: schemas: @@ -96330,9 +96962,9 @@ paths: description: User has been created content: application/scim+json: - schema: *646 + schema: *654 examples: - user: &647 + user: &655 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96358,13 +96990,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: *647 - '400': *632 - '401': *633 - '403': *634 - '409': *641 - '429': *635 - '500': *636 + enterpriseOwner: *655 + '400': *640 + '401': *641 + '403': *642 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96381,7 +97013,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: - - &648 + - &656 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -96394,15 +97026,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *646 + schema: *654 examples: - default: *647 - '400': *632 - '401': *633 - '403': *634 + default: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96424,30 +97056,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: - - *648 + - *656 - *38 requestBody: required: true content: application/json: - schema: *649 + schema: *657 examples: - user: *650 + user: *658 responses: '200': description: User was updated content: application/scim+json: - schema: *646 + schema: *654 examples: - user: *647 - '400': *632 - '401': *633 - '403': *634 + user: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96482,13 +97114,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: - - *648 + - *656 - *38 requestBody: required: true content: application/json: - schema: *651 + schema: *659 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -96528,18 +97160,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *646 - examples: - userMultiValuedProperties: *647 - userSingleValuedProperties: *647 - disableUser: *647 - '400': *632 - '401': *633 - '403': *634 + schema: *654 + examples: + userMultiValuedProperties: *655 + userSingleValuedProperties: *655 + disableUser: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96559,17 +97191,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: - - *648 + - *656 - *38 responses: '204': description: User was deleted, no content - '400': *632 - '401': *633 - '403': *634 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96602,7 +97234,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *163 + - *166 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -96660,7 +97292,7 @@ paths: - 1 Resources: type: array - items: &652 + items: &660 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -96907,22 +97539,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &653 + '404': &661 description: Resource not found content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '403': &654 + schema: *638 + '403': &662 description: Forbidden content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '400': *632 - '429': *635 + schema: *638 + '400': *640 + '429': *643 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -96942,15 +97574,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *163 + - *166 responses: '201': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: &655 + default: &663 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96973,17 +97605,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *653 - '403': *654 - '500': *636 + '404': *661 + '403': *662 + '500': *644 '409': description: Conflict content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '400': *632 + schema: *638 + '400': *640 requestBody: required: true content: @@ -97077,18 +97709,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 - '404': *653 - '403': *654 + default: *663 + '404': *661 + '403': *662 '304': *35 x-github: githubCloudOnly: true @@ -97111,19 +97743,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 + default: *663 '304': *35 - '404': *653 - '403': *654 + '404': *661 + '403': *662 requestBody: required: true content: @@ -97233,20 +97865,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 + default: *663 '304': *35 - '404': *653 - '403': *654 - '400': *632 + '404': *661 + '403': *662 + '400': *640 '429': description: Response content: @@ -97341,13 +97973,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *163 - - *648 + - *166 + - *656 responses: '204': description: Response - '404': *653 - '403': *654 + '404': *661 + '403': *662 '304': *35 x-github: githubCloudOnly: true @@ -97462,7 +98094,7 @@ paths: html_url: type: string format: uri - repository: *183 + repository: *186 score: type: number file_size: @@ -97481,7 +98113,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &656 + text_matches: &664 title: Search Result Text Matches type: array items: @@ -97596,7 +98228,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *121 + '503': *124 '422': *15 '403': *27 x-github: @@ -97645,7 +98277,7 @@ paths: enum: - author-date - committer-date - - &657 + - &665 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 @@ -97714,7 +98346,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 comment_count: type: integer message: @@ -97733,7 +98365,7 @@ paths: url: type: string format: uri - verification: *508 + verification: *516 required: - author - committer @@ -97748,7 +98380,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 parents: type: array items: @@ -97760,12 +98392,12 @@ paths: type: string sha: type: string - repository: *183 + repository: *186 score: type: number node_id: type: string - text_matches: *656 + text_matches: *664 required: - sha - node_id @@ -97958,7 +98590,7 @@ paths: - interactions - created - updated - - *657 + - *665 - *17 - *19 responses: @@ -98074,7 +98706,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 comments: type: integer created_at: @@ -98088,7 +98720,7 @@ paths: - string - 'null' format: date-time - text_matches: *656 + text_matches: *664 pull_request: type: object properties: @@ -98126,7 +98758,7 @@ paths: type: string score: type: number - author_association: *128 + author_association: *131 draft: type: boolean repository: *61 @@ -98141,7 +98773,7 @@ paths: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - assignee - closed_at @@ -98257,7 +98889,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *121 + '503': *124 '422': *15 '304': *35 '403': *27 @@ -98310,7 +98942,7 @@ paths: enum: - created - updated - - *657 + - *665 - *17 - *19 responses: @@ -98355,7 +98987,7 @@ paths: - 'null' score: type: number - text_matches: *656 + text_matches: *664 required: - id - node_id @@ -98441,7 +99073,7 @@ paths: - forks - help-wanted-issues - updated - - *657 + - *665 - *17 - *19 responses: @@ -98660,7 +99292,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 permissions: type: object properties: @@ -98678,7 +99310,7 @@ paths: - admin - pull - push - text_matches: *656 + text_matches: *664 temp_clone_token: type: string allow_merge_commit: @@ -98881,7 +99513,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *121 + '503': *124 '422': *15 '304': *35 x-github: @@ -98987,7 +99619,7 @@ paths: - string - 'null' format: uri - text_matches: *656 + text_matches: *664 related: type: - array @@ -99182,7 +99814,7 @@ paths: - followers - repositories - joined - - *657 + - *665 - *17 - *19 responses: @@ -99292,7 +99924,7 @@ paths: type: - boolean - 'null' - text_matches: *656 + text_matches: *664 blog: type: - string @@ -99354,7 +99986,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *121 + '503': *124 '422': *15 x-github: githubCloudOnly: false @@ -99374,7 +100006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &658 + - &666 name: team_id description: The unique identifier of the team. in: path @@ -99386,9 +100018,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 x-github: githubCloudOnly: false @@ -99415,7 +100047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *658 + - *666 requestBody: required: true content: @@ -99479,16 +100111,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '201': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 '422': *15 '403': *27 @@ -99516,7 +100148,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *658 + - *666 responses: '204': description: Response @@ -99547,7 +100179,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *658 + - *666 - *82 - *17 - *19 @@ -99558,9 +100190,9 @@ paths: application/json: schema: type: array - items: *321 + items: *329 examples: - default: *659 + default: *667 headers: Link: *37 x-github: @@ -99589,7 +100221,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *658 + - *666 requestBody: required: true content: @@ -99623,9 +100255,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: triggersNotification: true githubCloudOnly: false @@ -99652,16 +100284,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 responses: '200': description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99686,8 +100318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 requestBody: required: false content: @@ -99710,9 +100342,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *660 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99737,8 +100369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 responses: '204': description: Response @@ -99767,8 +100399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *658 - - *323 + - *666 + - *331 - *82 - *17 - *19 @@ -99779,9 +100411,9 @@ paths: application/json: schema: type: array - items: *324 + items: *332 examples: - default: *661 + default: *669 headers: Link: *37 x-github: @@ -99810,8 +100442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *658 - - *323 + - *666 + - *331 requestBody: required: true content: @@ -99833,9 +100465,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: triggersNotification: true githubCloudOnly: false @@ -99862,17 +100494,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 responses: '200': description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99897,9 +100529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 requestBody: required: true content: @@ -99921,9 +100553,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *662 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99948,9 +100580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 responses: '204': description: Response @@ -99979,9 +100611,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: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 - 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. @@ -100007,9 +100639,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -100038,9 +100670,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: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 requestBody: required: true content: @@ -100072,9 +100704,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100100,8 +100732,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: - - *658 - - *323 + - *666 + - *331 - 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. @@ -100127,9 +100759,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -100158,8 +100790,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: - - *658 - - *323 + - *666 + - *331 requestBody: required: true content: @@ -100191,9 +100823,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100217,7 +100849,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100227,9 +100859,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 x-github: @@ -100255,7 +100887,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *658 + - *666 - name: role description: Filters members returned by their role in the team. in: query @@ -100278,7 +100910,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -100306,8 +100938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: if user is a member @@ -100343,8 +100975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100383,8 +101015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100420,16 +101052,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: - - *658 - - *205 + - *666 + - *208 responses: '200': description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *671 '404': *6 x-github: githubCloudOnly: false @@ -100462,8 +101094,8 @@ 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: - - *658 - - *205 + - *666 + - *208 requestBody: required: false content: @@ -100488,9 +101120,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *672 '403': description: Forbidden if team synchronization is set up '422': @@ -100524,8 +101156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100554,7 +101186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100564,9 +101196,9 @@ paths: application/json: schema: type: array - items: *336 + items: *344 examples: - default: *665 + default: *673 headers: Link: *37 '404': *6 @@ -100593,16 +101225,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: - - *658 - - *337 + - *666 + - *345 responses: '200': description: Response content: application/json: - schema: *336 + schema: *344 examples: - default: *666 + default: *674 '404': description: Not Found if project is not managed by this team x-github: @@ -100627,8 +101259,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: - - *658 - - *337 + - *666 + - *345 requestBody: required: false content: @@ -100696,8 +101328,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: - - *658 - - *337 + - *666 + - *345 responses: '204': description: Response @@ -100724,7 +101356,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100734,9 +101366,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '404': *6 @@ -100766,15 +101398,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *667 + schema: *675 examples: alternative-response-with-extra-repository-information: value: @@ -100925,9 +101557,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 requestBody: required: false content: @@ -100977,9 +101609,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 responses: '204': description: Response @@ -101008,15 +101640,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: - - *658 + - *666 responses: '200': description: Response content: application/json: - schema: *340 + schema: *348 examples: - default: *341 + default: *349 '403': *27 '404': *6 x-github: @@ -101043,7 +101675,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: - - *658 + - *666 requestBody: required: true content: @@ -101104,7 +101736,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *348 examples: default: value: @@ -101135,7 +101767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -101145,9 +101777,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - response-if-child-teams-exist: *668 + response-if-child-teams-exist: *676 headers: Link: *37 '404': *6 @@ -101180,7 +101812,7 @@ paths: application/json: schema: oneOf: - - &670 + - &678 title: Private User description: Private User type: object @@ -101430,7 +102062,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *669 + - *677 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101590,7 +102222,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *678 examples: default: value: @@ -101669,7 +102301,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '304': *35 '404': *6 '403': *27 @@ -101692,7 +102324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *205 + - *208 responses: '204': description: If the user is blocked @@ -101720,7 +102352,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -101744,7 +102376,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -101793,9 +102425,9 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: - default: *266 + default: *270 '304': *35 '500': *93 '401': *23 @@ -101934,21 +102566,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101988,7 +102620,7 @@ paths: type: integer secrets: type: array - items: &671 + items: &679 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102030,7 +102662,7 @@ paths: - visibility - selected_repositories_url examples: - default: *452 + default: *460 headers: Link: *37 x-github: @@ -102102,13 +102734,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 responses: '200': description: Response content: application/json: - schema: *671 + schema: *679 examples: default: value: @@ -102138,7 +102770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 requestBody: required: true content: @@ -102183,7 +102815,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -102211,7 +102843,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 responses: '204': description: Response @@ -102236,7 +102868,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *193 + - *196 responses: '200': description: Response @@ -102252,9 +102884,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *672 + default: *680 '401': *23 '403': *27 '404': *6 @@ -102279,7 +102911,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *193 + - *196 requestBody: required: true content: @@ -102333,7 +102965,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *193 + - *196 - name: repository_id in: path required: true @@ -102366,7 +102998,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *193 + - *196 - name: repository_id in: path required: true @@ -102398,15 +103030,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '304': *35 '500': *93 '401': *23 @@ -102432,7 +103064,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: - - *267 + - *271 requestBody: required: false content: @@ -102462,9 +103094,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 @@ -102486,7 +103118,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: - - *267 + - *271 responses: '202': *91 '304': *35 @@ -102515,13 +103147,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: - - *267 + - *271 responses: '202': description: Response content: application/json: - schema: &673 + schema: &681 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102574,7 +103206,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &674 + default: &682 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102606,7 +103238,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *267 + - *271 - name: export_id in: path required: true @@ -102619,9 +103251,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *681 examples: - default: *674 + default: *682 '404': *6 x-github: githubCloudOnly: false @@ -102642,7 +103274,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *267 + - *271 responses: '200': description: Response @@ -102658,9 +103290,9 @@ paths: type: integer machines: type: array - items: *451 + items: *459 examples: - default: *675 + default: *683 '304': *35 '500': *93 '401': *23 @@ -102689,7 +103321,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: - - *267 + - *271 requestBody: required: true content: @@ -102745,11 +103377,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *351 + repository: *359 machine: anyOf: - type: 'null' - - *451 + - *459 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -103546,15 +104178,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '304': *35 '500': *93 '400': *14 @@ -103586,15 +104218,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '500': *93 '401': *23 '403': *27 @@ -103624,9 +104256,9 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: &688 + default: &696 value: - id: 197 name: hello_docker @@ -103727,7 +104359,7 @@ paths: application/json: schema: type: array - items: &676 + items: &684 title: Email description: Email type: object @@ -103797,9 +104429,9 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: - default: &690 + default: &698 value: - email: octocat@github.com verified: true @@ -103876,7 +104508,7 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: default: value: @@ -103988,7 +104620,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '304': *35 @@ -104021,7 +104653,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '304': *35 @@ -104043,7 +104675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *205 + - *208 responses: '204': description: if the person is followed by the authenticated user @@ -104073,7 +104705,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -104098,7 +104730,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -104134,7 +104766,7 @@ paths: application/json: schema: type: array - items: &677 + items: &685 title: GPG Key description: A unique encryption key type: object @@ -104279,7 +104911,7 @@ paths: - subkeys - revoked examples: - default: &701 + default: &709 value: - id: 3 name: Octocat's GPG Key @@ -104364,9 +104996,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *685 examples: - default: &678 + default: &686 value: id: 3 name: Octocat's GPG Key @@ -104423,7 +105055,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: - - &679 + - &687 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104435,9 +105067,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *685 examples: - default: *678 + default: *686 '404': *6 '304': *35 '403': *27 @@ -104460,7 +105092,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: - - *679 + - *687 responses: '204': description: Response @@ -104651,7 +105283,7 @@ paths: type: array items: *61 examples: - default: *680 + default: *688 headers: Link: *37 '404': *6 @@ -104676,7 +105308,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *178 + - *181 responses: '204': description: Response @@ -104702,7 +105334,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *178 + - *181 responses: '204': description: Response @@ -104736,12 +105368,12 @@ paths: application/json: schema: anyOf: - - *256 + - *260 - type: object properties: {} additionalProperties: false examples: - default: *257 + default: *261 '204': description: Response when there are no restrictions x-github: @@ -104765,7 +105397,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *527 examples: default: value: @@ -104776,7 +105408,7 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: default: value: @@ -104857,7 +105489,7 @@ paths: - closed - all default: open - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -104870,7 +105502,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -104880,9 +105512,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *263 + default: *267 headers: Link: *37 '404': *6 @@ -104915,7 +105547,7 @@ paths: application/json: schema: type: array - items: &681 + items: &689 title: Key description: Key type: object @@ -105013,9 +105645,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *689 examples: - default: &682 + default: &690 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105048,15 +105680,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: - - *546 + - *554 responses: '200': description: Response content: application/json: - schema: *681 + schema: *689 examples: - default: *682 + default: *690 '404': *6 '304': *35 '403': *27 @@ -105079,7 +105711,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: - - *546 + - *554 responses: '204': description: Response @@ -105112,7 +105744,7 @@ paths: application/json: schema: type: array - items: &683 + items: &691 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105180,7 +105812,7 @@ paths: - id - type - login - plan: *144 + plan: *147 required: - billing_cycle - next_billing_date @@ -105191,7 +105823,7 @@ paths: - account - plan examples: - default: &684 + default: &692 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105253,9 +105885,9 @@ paths: application/json: schema: type: array - items: *683 + items: *691 examples: - default: *684 + default: *692 headers: Link: *37 '304': *35 @@ -105295,7 +105927,7 @@ paths: application/json: schema: type: array - items: *268 + items: *272 examples: default: value: @@ -105397,13 +106029,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *268 + schema: *272 examples: default: value: @@ -105461,7 +106093,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *163 + - *166 requestBody: required: true content: @@ -105486,7 +106118,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *272 examples: default: value: @@ -105554,7 +106186,7 @@ paths: application/json: schema: type: array - items: *270 + items: *274 examples: default: value: @@ -105816,7 +106448,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -105996,7 +106628,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *271 + - *275 - name: exclude in: query required: false @@ -106009,7 +106641,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -106203,7 +106835,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *271 + - *275 responses: '302': description: Response @@ -106229,7 +106861,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *271 + - *275 responses: '204': description: Response @@ -106258,8 +106890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *271 - - *685 + - *275 + - *693 responses: '204': description: Response @@ -106283,7 +106915,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *271 + - *275 - *17 - *19 responses: @@ -106293,9 +106925,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '404': *6 @@ -106332,7 +106964,7 @@ paths: type: array items: *56 examples: - default: *686 + default: *694 headers: Link: *37 '304': *35 @@ -106374,7 +107006,7 @@ paths: - docker - nuget - container - - *687 + - *695 - *19 - *17 responses: @@ -106384,10 +107016,10 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 - '400': *689 + default: *696 + '400': *697 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106407,16 +107039,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: - - *278 - - *279 + - *282 + - *283 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: - default: &702 + default: &710 value: id: 40201 name: octo-name @@ -106529,8 +107161,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: - - *278 - - *279 + - *282 + - *283 responses: '204': description: Response @@ -106560,8 +107192,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: - - *278 - - *279 + - *282 + - *283 - name: token description: package token schema: @@ -106593,8 +107225,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: - - *278 - - *279 + - *282 + - *283 - *19 - *17 - name: state @@ -106614,7 +107246,7 @@ paths: application/json: schema: type: array - items: *280 + items: *284 examples: default: value: @@ -106663,15 +107295,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '200': description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -106707,9 +107339,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '204': description: Response @@ -106739,9 +107371,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '204': description: Response @@ -106799,7 +107431,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: default: value: @@ -106868,9 +107500,9 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: - default: *690 + default: *698 headers: Link: *37 '304': *35 @@ -106983,7 +107615,7 @@ paths: type: array items: *61 examples: - default: &697 + default: &705 summary: Default response value: - id: 1296269 @@ -107299,9 +107931,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107339,9 +107971,9 @@ paths: application/json: schema: type: array - items: *521 + items: *529 examples: - default: *691 + default: *699 headers: Link: *37 '304': *35 @@ -107364,7 +107996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *260 + - *264 responses: '204': description: Response @@ -107387,7 +108019,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *260 + - *264 responses: '204': description: Response @@ -107420,7 +108052,7 @@ paths: application/json: schema: type: array - items: &692 + items: &700 title: Social account description: Social media account type: object @@ -107437,7 +108069,7 @@ paths: - provider - url examples: - default: &693 + default: &701 value: - provider: twitter url: https://twitter.com/github @@ -107500,9 +108132,9 @@ paths: application/json: schema: type: array - items: *692 + items: *700 examples: - default: *693 + default: *701 '422': *15 '304': *35 '404': *6 @@ -107590,7 +108222,7 @@ paths: application/json: schema: type: array - items: &694 + items: &702 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107610,7 +108242,7 @@ paths: - title - created_at examples: - default: &703 + default: &711 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107677,9 +108309,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *702 examples: - default: &695 + default: &703 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107710,7 +108342,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: - - &696 + - &704 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107722,9 +108354,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *702 examples: - default: *695 + default: *703 '404': *6 '304': *35 '403': *27 @@ -107747,7 +108379,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: - - *696 + - *704 responses: '204': description: Response @@ -107776,7 +108408,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: - - &704 + - &712 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 @@ -107801,11 +108433,11 @@ paths: type: array items: *61 examples: - default-response: *697 + default-response: *705 application/vnd.github.v3.star+json: schema: type: array - items: &705 + items: &713 title: Starred Repository description: Starred Repository type: object @@ -107961,8 +108593,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response if this repository is starred by you @@ -107990,8 +108622,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -108015,8 +108647,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -108049,9 +108681,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '304': *35 @@ -108088,7 +108720,7 @@ paths: application/json: schema: type: array - items: *319 + items: *327 examples: default: value: @@ -108166,7 +108798,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *146 + - *149 responses: '200': description: Response @@ -108174,10 +108806,10 @@ paths: application/json: schema: oneOf: - - *670 - - *669 + - *678 + - *677 examples: - default-response: &699 + default-response: &707 summary: Default response value: login: octocat @@ -108212,7 +108844,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &700 + response-with-git-hub-plan-information: &708 summary: Response with GitHub plan information value: login: octocat @@ -108272,7 +108904,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *698 + - *706 - *17 responses: '200': @@ -108283,7 +108915,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: example: ; rel="next" @@ -108313,7 +108945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *205 + - *208 responses: '200': description: Response @@ -108321,11 +108953,11 @@ paths: application/json: schema: oneOf: - - *670 - - *669 + - *678 + - *677 examples: - default-response: *699 - response-with-git-hub-plan-information: *700 + default-response: *707 + response-with-git-hub-plan-information: *708 '404': *6 x-github: githubCloudOnly: false @@ -108351,7 +108983,7 @@ paths: - *17 - *80 - *81 - - *205 + - *208 - name: subject_digest description: Subject Digest in: path @@ -108455,7 +109087,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -108481,7 +109113,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *205 + - *208 responses: '200': description: Response @@ -108489,9 +109121,9 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 + default: *696 '403': *27 '401': *23 x-github: @@ -108514,7 +109146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108524,7 +109156,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108595,8 +109227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *205 - - *163 + - *208 + - *166 - *17 - *19 responses: @@ -108606,7 +109238,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108685,7 +109317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108695,7 +109327,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108762,7 +109394,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108774,7 +109406,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -108793,7 +109425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108805,7 +109437,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -108824,7 +109456,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *205 + - *208 - name: target_user in: path required: true @@ -108851,8 +109483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *205 - - *131 + - *208 + - *134 - *17 - *19 responses: @@ -108862,9 +109494,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '422': *15 @@ -108885,7 +109517,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108895,9 +109527,9 @@ paths: application/json: schema: type: array - items: *677 + items: *685 examples: - default: *701 + default: *709 headers: Link: *37 x-github: @@ -108921,7 +109553,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *205 + - *208 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -108993,7 +109625,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *205 + - *208 responses: '200': description: Response @@ -109001,7 +109633,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109019,7 +109651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109067,7 +109699,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109079,7 +109711,7 @@ paths: type: array items: *56 examples: - default: *686 + default: *694 headers: Link: *37 x-github: @@ -109118,8 +109750,8 @@ paths: - docker - nuget - container - - *687 - - *205 + - *695 + - *208 - *19 - *17 responses: @@ -109129,12 +109761,12 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 + default: *696 '403': *27 '401': *23 - '400': *689 + '400': *697 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109154,17 +109786,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: - default: *702 + default: *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109185,9 +109817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '204': description: Response @@ -109219,9 +109851,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 - name: token description: package token schema: @@ -109253,9 +109885,9 @@ 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: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '200': description: Response @@ -109263,7 +109895,7 @@ paths: application/json: schema: type: array - items: *280 + items: *284 examples: default: value: @@ -109321,16 +109953,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: - - *278 - - *279 - - *281 - - *205 + - *282 + - *283 + - *285 + - *208 responses: '200': description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -109365,10 +109997,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *278 - - *279 - - *205 - - *281 + - *282 + - *283 + - *208 + - *285 responses: '204': description: Response @@ -109400,10 +110032,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *278 - - *279 - - *205 - - *281 + - *282 + - *283 + - *208 + - *285 responses: '204': description: Response @@ -109426,7 +110058,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-user-projects parameters: - - *205 + - *208 - name: state description: Indicates the state of the projects to return. in: query @@ -109447,7 +110079,7 @@ paths: application/json: schema: type: array - items: *291 + items: *295 examples: default: value: @@ -109506,7 +110138,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109516,7 +110148,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -109595,7 +110227,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109605,7 +110237,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -109682,7 +110314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *205 + - *208 - name: type description: Limit results to repositories of the specified type. in: query @@ -109725,9 +110357,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -109751,15 +110383,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *311 + schema: *315 examples: - default: *312 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109781,15 +110413,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *315 + schema: *319 examples: - default: *316 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109811,15 +110443,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *317 + schema: *321 examples: - default: *318 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109837,7 +110469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109847,9 +110479,9 @@ paths: application/json: schema: type: array - items: *692 + items: *700 examples: - default: *693 + default: *701 headers: Link: *37 x-github: @@ -109869,7 +110501,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109879,9 +110511,9 @@ paths: application/json: schema: type: array - items: *694 + items: *702 examples: - default: *703 + default: *711 headers: Link: *37 x-github: @@ -109905,8 +110537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *205 - - *704 + - *208 + - *712 - *82 - *17 - *19 @@ -109918,11 +110550,11 @@ paths: schema: anyOf: - type: array - items: *705 + items: *713 - type: array items: *61 examples: - default-response: *697 + default-response: *705 headers: Link: *37 x-github: @@ -109941,7 +110573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109951,9 +110583,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -110082,7 +110714,7 @@ webhooks: type: string enum: - disabled - enterprise: &706 + enterprise: &714 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110151,7 +110783,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &707 + installation: &715 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110172,7 +110804,7 @@ webhooks: required: - id - node_id - organization: &708 + organization: &716 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -110245,7 +110877,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &709 + repository: &717 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -110274,7 +110906,7 @@ webhooks: license: anyOf: - type: 'null' - - *142 + - *145 organization: anyOf: - type: 'null' @@ -111158,10 +111790,10 @@ webhooks: type: string enum: - enabled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -111237,11 +111869,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: &710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: &718 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) @@ -111464,11 +112096,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: *710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: *718 sender: *4 required: - action @@ -111656,11 +112288,11 @@ webhooks: - everyone required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: *710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: *718 sender: *4 required: - action @@ -111733,7 +112365,7 @@ webhooks: required: true content: application/json: - schema: &713 + schema: &721 title: Exemption request cancellation event type: object properties: @@ -111741,11 +112373,11 @@ webhooks: type: string enum: - cancelled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: &711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: &719 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -111899,7 +112531,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &712 + items: &720 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -112011,7 +112643,7 @@ webhooks: required: true content: application/json: - schema: &714 + schema: &722 title: Exemption request completed event type: object properties: @@ -112019,11 +112651,11 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 sender: *4 required: - action @@ -112095,7 +112727,7 @@ webhooks: required: true content: application/json: - schema: &715 + schema: &723 title: Exemption request created event type: object properties: @@ -112103,11 +112735,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 sender: *4 required: - action @@ -112179,7 +112811,7 @@ webhooks: required: true content: application/json: - schema: &716 + schema: &724 title: Exemption response dismissed event type: object properties: @@ -112187,12 +112819,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 - exemption_response: *712 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 + exemption_response: *720 sender: *4 required: - action @@ -112266,7 +112898,7 @@ webhooks: required: true content: application/json: - schema: &717 + schema: &725 title: Exemption response submitted event type: object properties: @@ -112274,12 +112906,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 - exemption_response: *712 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 + exemption_response: *720 sender: *4 required: - action @@ -112352,7 +112984,7 @@ webhooks: required: true content: application/json: - schema: *713 + schema: *721 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112419,7 +113051,7 @@ webhooks: required: true content: application/json: - schema: *714 + schema: *722 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112486,7 +113118,7 @@ webhooks: required: true content: application/json: - schema: *715 + schema: *723 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112553,7 +113185,7 @@ webhooks: required: true content: application/json: - schema: *716 + schema: *724 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112621,7 +113253,7 @@ webhooks: required: true content: application/json: - schema: *717 + schema: *725 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112699,7 +113331,7 @@ webhooks: type: string enum: - completed - check_run: &719 + check_run: &727 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112767,8 +113399,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *413 - repository: *183 + items: *421 + repository: *186 status: type: string enum: @@ -112812,7 +113444,7 @@ webhooks: - examples: - neutral - deployment: *718 + deployment: *726 details_url: type: string examples: @@ -112872,7 +113504,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *413 + items: *421 started_at: type: string format: date-time @@ -112910,9 +113542,9 @@ webhooks: - output - app - pull_requests - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -113305,10 +113937,10 @@ webhooks: type: string enum: - created - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -113704,10 +114336,10 @@ webhooks: type: string enum: - requested_action - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 requested_action: description: The action requested by the user. type: object @@ -114112,10 +114744,10 @@ webhooks: type: string enum: - rerequested - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -115107,10 +115739,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -115795,10 +116427,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -116477,10 +117109,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -116646,7 +117278,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116798,20 +117430,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &720 + commit_oid: &728 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: *706 - installation: *707 - organization: *708 - ref: &721 + enterprise: *714 + installation: *715 + organization: *716 + ref: &729 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: *709 + repository: *717 sender: *4 required: - action @@ -116975,7 +117607,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117145,12 +117777,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117248,7 +117880,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117427,12 +118059,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117598,7 +118230,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117775,12 +118407,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117880,7 +118512,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118060,9 +118692,9 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -118070,7 +118702,7 @@ webhooks: type: - string - 'null' - repository: *709 + repository: *717 sender: *4 required: - action @@ -118166,7 +118798,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118313,12 +118945,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -118580,10 +119212,10 @@ webhooks: - updated_at - author_association - body - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -118664,18 +119296,18 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *708 - pusher_type: &722 + organization: *716 + pusher_type: &730 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &723 + ref: &731 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -118685,7 +119317,7 @@ webhooks: enum: - tag - branch - repository: *709 + repository: *717 sender: *4 required: - ref @@ -118767,10 +119399,10 @@ webhooks: type: string enum: - created - definition: *104 - enterprise: *706 - installation: *707 - organization: *708 + definition: *107 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -118855,9 +119487,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -118934,10 +119566,10 @@ webhooks: type: string enum: - updated - definition: *104 - enterprise: *706 - installation: *707 - organization: *708 + definition: *107 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -119014,19 +119646,19 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - repository: *709 - organization: *708 + enterprise: *714 + installation: *715 + repository: *717 + organization: *716 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *293 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *293 + items: *297 required: - action - repository @@ -119102,18 +119734,18 @@ webhooks: title: delete event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - pusher_type: *722 - ref: *723 + enterprise: *714 + installation: *715 + organization: *716 + pusher_type: *730 + ref: *731 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *709 + repository: *717 sender: *4 required: - ref @@ -119197,11 +119829,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119285,11 +119917,11 @@ webhooks: type: string enum: - auto_reopened - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119373,11 +120005,11 @@ webhooks: type: string enum: - created - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119459,11 +120091,11 @@ webhooks: type: string enum: - dismissed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119545,11 +120177,11 @@ webhooks: type: string enum: - fixed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119632,11 +120264,11 @@ webhooks: type: string enum: - reintroduced - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119718,11 +120350,11 @@ webhooks: type: string enum: - reopened - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119799,9 +120431,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - key: &724 + enterprise: *714 + installation: *715 + key: &732 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119839,8 +120471,8 @@ webhooks: - verified - created_at - read_only - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -119917,11 +120549,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - key: *724 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + key: *732 + organization: *716 + repository: *717 sender: *4 required: - action @@ -120493,12 +121125,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: &728 + workflow: &736 title: Workflow type: - object @@ -121236,13 +121868,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *483 + deployment: *491 pull_requests: type: array - items: *565 - repository: *709 - organization: *708 - installation: *707 + items: *573 + repository: *717 + organization: *716 + installation: *715 sender: *4 responses: '200': @@ -121313,7 +121945,7 @@ webhooks: type: string enum: - approved - approver: &725 + approver: &733 type: object properties: avatar_url: @@ -121356,11 +121988,11 @@ webhooks: type: string comment: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - reviewers: &726 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + reviewers: &734 type: array items: type: object @@ -121441,7 +122073,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &727 + workflow_job_run: &735 type: object properties: conclusion: @@ -122187,18 +122819,18 @@ webhooks: type: string enum: - rejected - approver: *725 + approver: *733 comment: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - reviewers: *726 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + reviewers: *734 sender: *4 since: type: string - workflow_job_run: *727 + workflow_job_run: *735 workflow_job_runs: type: array items: @@ -122915,13 +123547,13 @@ webhooks: type: string enum: - requested - enterprise: *706 + enterprise: *714 environment: type: string - installation: *707 - organization: *708 - repository: *709 - requestor: &733 + installation: *715 + organization: *716 + repository: *717 + requestor: &741 title: User type: - object @@ -124864,12 +125496,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Deployment Workflow Run type: @@ -125560,7 +126192,7 @@ webhooks: type: string enum: - answered - answer: &731 + answer: &739 type: object properties: author_association: @@ -125720,7 +126352,7 @@ webhooks: - created_at - updated_at - body - discussion: &729 + discussion: &737 title: Discussion description: A Discussion in a repository. type: object @@ -126016,7 +126648,7 @@ webhooks: - id labels: type: array - items: *528 + items: *536 required: - repository_url - category @@ -126038,10 +126670,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126168,11 +126800,11 @@ webhooks: - from required: - category - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126255,11 +126887,11 @@ webhooks: type: string enum: - closed - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126341,7 +126973,7 @@ webhooks: type: string enum: - created - comment: &730 + comment: &738 type: object properties: author_association: @@ -126501,11 +127133,11 @@ webhooks: - updated_at - body - reactions - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126588,12 +127220,12 @@ webhooks: type: string enum: - deleted - comment: *730 - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + comment: *738 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126688,12 +127320,12 @@ webhooks: - from required: - body - comment: *730 - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + comment: *738 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126777,11 +127409,11 @@ webhooks: type: string enum: - created - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126863,11 +127495,11 @@ webhooks: type: string enum: - deleted - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126967,11 +127599,11 @@ webhooks: type: string required: - from - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127053,10 +127685,10 @@ webhooks: type: string enum: - labeled - discussion: *729 - enterprise: *706 - installation: *707 - label: &732 + discussion: *737 + enterprise: *714 + installation: *715 + label: &740 title: Label type: object properties: @@ -127089,8 +127721,8 @@ webhooks: - color - default - description - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127173,11 +127805,11 @@ webhooks: type: string enum: - locked - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127259,11 +127891,11 @@ webhooks: type: string enum: - pinned - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127345,11 +127977,11 @@ webhooks: type: string enum: - reopened - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127434,16 +128066,16 @@ webhooks: changes: type: object properties: - new_discussion: *729 - new_repository: *709 + new_discussion: *737 + new_repository: *717 required: - new_discussion - new_repository - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127526,10 +128158,10 @@ webhooks: type: string enum: - unanswered - discussion: *729 - old_answer: *731 - organization: *708 - repository: *709 + discussion: *737 + old_answer: *739 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127611,12 +128243,12 @@ webhooks: type: string enum: - unlabeled - discussion: *729 - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127699,11 +128331,11 @@ webhooks: type: string enum: - unlocked - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127785,11 +128417,11 @@ webhooks: type: string enum: - unpinned - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127862,7 +128494,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *706 + enterprise: *714 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -128540,9 +129172,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - forkee @@ -128688,9 +129320,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pages: description: The pages that were updated. type: array @@ -128728,7 +129360,7 @@ webhooks: - action - sha - html_url - repository: *709 + repository: *717 sender: *4 required: - pages @@ -128804,10 +129436,10 @@ webhooks: type: string enum: - created - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: &734 + organization: *716 + repositories: &742 description: An array of repository objects that the installation can access. type: array @@ -128833,8 +129465,8 @@ webhooks: - name - full_name - private - repository: *709 - requester: *733 + repository: *717 + requester: *741 sender: *4 required: - action @@ -128909,11 +129541,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -128990,11 +129622,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129071,10 +129703,10 @@ webhooks: type: string enum: - added - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories_added: &735 + organization: *716 + repositories_added: &743 description: An array of repository objects, which were added to the installation. type: array @@ -129120,15 +129752,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *709 - repository_selection: &736 + repository: *717 + repository_selection: &744 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *733 + requester: *741 sender: *4 required: - action @@ -129207,10 +129839,10 @@ webhooks: type: string enum: - removed - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories_added: *735 + organization: *716 + repositories_added: *743 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129237,9 +129869,9 @@ webhooks: - name - full_name - private - repository: *709 - repository_selection: *736 - requester: *733 + repository: *717 + repository_selection: *744 + requester: *741 sender: *4 required: - action @@ -129318,11 +129950,11 @@ webhooks: type: string enum: - suspend - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129505,10 +130137,10 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 target_type: type: string @@ -129587,11 +130219,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129839,8 +130471,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -131030,8 +131662,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -131111,7 +131743,7 @@ webhooks: type: string enum: - deleted - comment: &737 + comment: &745 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -131278,8 +131910,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -132467,8 +133099,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -132548,7 +133180,7 @@ webhooks: type: string enum: - edited - changes: &762 + changes: &770 description: The changes to the comment. type: object properties: @@ -132560,9 +133192,9 @@ webhooks: type: string required: - from - comment: *737 - enterprise: *706 - installation: *707 + comment: *745 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133751,8 +134383,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -133834,10 +134466,10 @@ webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *706 - installation: *707 - issue: &740 + assignee: *741 + enterprise: *714 + installation: *715 + issue: &748 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -134781,8 +135413,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -134862,8 +135494,8 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -135955,8 +136587,8 @@ webhooks: required: - state - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -136035,8 +136667,8 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136973,8 +137605,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -137053,8 +137685,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137995,7 +138627,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &738 + milestone: &746 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138138,8 +138770,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -138238,8 +138870,8 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139183,9 +139815,9 @@ webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *708 - repository: *709 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -139265,8 +139897,8 @@ webhooks: type: string enum: - labeled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140209,9 +140841,9 @@ webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *708 - repository: *709 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -140291,8 +140923,8 @@ webhooks: type: string enum: - locked - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141237,8 +141869,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -141317,8 +141949,8 @@ webhooks: type: string enum: - milestoned - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142257,9 +142889,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *738 - organization: *708 - repository: *709 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -143759,8 +144391,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144703,8 +145335,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -144784,9 +145416,9 @@ webhooks: type: string enum: - pinned - enterprise: *706 - installation: *707 - issue: &739 + enterprise: *714 + installation: *715 + issue: &747 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -145723,8 +146355,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -145803,8 +146435,8 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146748,8 +147380,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148249,11 +148881,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *706 - installation: *707 - issue: *739 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *747 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148334,7 +148966,7 @@ webhooks: type: string enum: - unassigned - assignee: &765 + assignee: &773 title: User type: - object @@ -148406,11 +149038,11 @@ webhooks: required: - login - id - enterprise: *706 - installation: *707 - issue: *740 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *748 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148489,12 +149121,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *706 - installation: *707 - issue: *740 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *748 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148574,8 +149206,8 @@ webhooks: type: string enum: - unlocked - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149518,8 +150150,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149599,11 +150231,11 @@ webhooks: type: string enum: - unpinned - enterprise: *706 - installation: *707 - issue: *739 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *747 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149682,11 +150314,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149764,11 +150396,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149878,11 +150510,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149964,9 +150596,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: &741 + enterprise: *714 + installation: *715 + marketplace_purchase: &749 title: Marketplace Purchase type: object required: @@ -150054,8 +150686,8 @@ webhooks: type: integer unit_count: type: integer - organization: *708 - previous_marketplace_purchase: &742 + organization: *716 + previous_marketplace_purchase: &750 title: Marketplace Purchase type: object properties: @@ -150139,7 +150771,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150219,10 +150851,10 @@ webhooks: - changed effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150310,7 +150942,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150392,10 +151024,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150481,7 +151113,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150562,8 +151194,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 marketplace_purchase: title: Marketplace Purchase type: object @@ -150649,9 +151281,9 @@ webhooks: type: integer unit_count: type: integer - organization: *708 - previous_marketplace_purchase: *742 - repository: *709 + organization: *716 + previous_marketplace_purchase: *750 + repository: *717 sender: *4 required: - action @@ -150731,12 +151363,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 - previous_marketplace_purchase: *742 - repository: *709 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 + previous_marketplace_purchase: *750 + repository: *717 sender: *4 required: - action @@ -150838,11 +151470,11 @@ webhooks: type: string required: - to - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -150944,11 +151576,11 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151027,11 +151659,11 @@ webhooks: type: string enum: - removed - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151109,11 +151741,11 @@ webhooks: type: string enum: - added - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151191,7 +151823,7 @@ webhooks: required: - login - id - team: &743 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151384,11 +152016,11 @@ webhooks: type: string enum: - removed - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151467,7 +152099,7 @@ webhooks: required: - login - id - team: *743 + team: *751 required: - action - scope @@ -151549,8 +152181,8 @@ webhooks: type: string enum: - checks_requested - installation: *707 - merge_group: &744 + installation: *715 + merge_group: &752 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -151569,15 +152201,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *417 + head_commit: *425 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151663,10 +152295,10 @@ webhooks: - merged - invalidated - dequeued - installation: *707 - merge_group: *744 - organization: *708 - repository: *709 + installation: *715 + merge_group: *752 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151739,7 +152371,7 @@ webhooks: type: string enum: - deleted - enterprise: *706 + enterprise: *714 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151847,12 +152479,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *707 - organization: *708 + installation: *715 + organization: *716 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -151932,11 +152564,11 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152015,9 +152647,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - milestone: &745 + enterprise: *714 + installation: *715 + milestone: &753 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152159,8 +152791,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152239,11 +152871,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152353,11 +152985,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152437,11 +153069,11 @@ webhooks: type: string enum: - opened - enterprise: *706 - installation: *707 - milestone: *745 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *753 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152520,11 +153152,11 @@ webhooks: type: string enum: - blocked - blocked_user: *733 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + blocked_user: *741 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152603,11 +153235,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *733 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + blocked_user: *741 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152686,9 +153318,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - membership: &746 + enterprise: *714 + installation: *715 + membership: &754 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -152782,8 +153414,8 @@ webhooks: - role - organization_url - user - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152861,11 +153493,11 @@ webhooks: type: string enum: - member_added - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152944,8 +153576,8 @@ webhooks: type: string enum: - member_invited - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153067,10 +153699,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 - user: *733 + user: *741 required: - action - invitation @@ -153148,11 +153780,11 @@ webhooks: type: string enum: - member_removed - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -153239,11 +153871,11 @@ webhooks: properties: from: type: string - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -153319,9 +153951,9 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 package: description: Information about the package. type: object @@ -153844,7 +154476,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &747 + items: &755 title: Ruby Gems metadata type: object properties: @@ -153941,7 +154573,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -154017,9 +154649,9 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 package: description: Information about the package. type: object @@ -154381,7 +155013,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *747 + items: *755 source_url: type: string format: uri @@ -154452,7 +155084,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -154633,12 +155265,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *706 + enterprise: *714 id: type: integer - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - id @@ -154718,7 +155350,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &748 + personal_access_token_request: &756 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154868,10 +155500,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *706 - organization: *708 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -154950,11 +155582,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *748 - enterprise: *706 - organization: *708 + personal_access_token_request: *756 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155032,11 +155664,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *748 - enterprise: *706 - organization: *708 + personal_access_token_request: *756 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155113,11 +155745,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *748 - organization: *708 - enterprise: *706 + personal_access_token_request: *756 + organization: *716 + enterprise: *714 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155221,7 +155853,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *749 + last_response: *757 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155253,8 +155885,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 zen: description: Random string of GitHub zen. @@ -155499,10 +156131,10 @@ webhooks: - from required: - note - enterprise: *706 - installation: *707 - organization: *708 - project_card: &750 + enterprise: *714 + installation: *715 + organization: *716 + project_card: &758 title: Project Card type: object properties: @@ -155625,7 +156257,7 @@ webhooks: - creator - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -155706,11 +156338,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project_card: *750 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_card: *758 + repository: *717 sender: *4 required: - action @@ -155790,9 +156422,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 project_card: title: Project Card type: object @@ -155922,7 +156554,7 @@ webhooks: repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -156016,11 +156648,11 @@ webhooks: - from required: - note - enterprise: *706 - installation: *707 - organization: *708 - project_card: *750 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_card: *758 + repository: *717 sender: *4 required: - action @@ -156114,9 +156746,9 @@ webhooks: - from required: - column_id - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 project_card: allOf: - title: Project Card @@ -156313,7 +156945,7 @@ webhooks: type: string required: - after_id - repository: *709 + repository: *717 sender: *4 required: - action @@ -156393,10 +157025,10 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - organization: *708 - project: &752 + enterprise: *714 + installation: *715 + organization: *716 + project: &760 title: Project type: object properties: @@ -156523,7 +157155,7 @@ webhooks: - creator - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -156603,10 +157235,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project_column: &751 + enterprise: *714 + installation: *715 + organization: *716 + project_column: &759 title: Project Column type: object properties: @@ -156646,7 +157278,7 @@ webhooks: - name - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -156725,14 +157357,14 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -156821,11 +157453,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 + repository: *717 sender: *4 required: - action @@ -156905,11 +157537,11 @@ webhooks: type: string enum: - moved - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 + repository: *717 sender: *4 required: - action @@ -156989,11 +157621,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157073,14 +157705,14 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - project: *752 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -157181,11 +157813,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157264,11 +157896,11 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157349,9 +157981,9 @@ webhooks: type: string enum: - closed - installation: *707 - organization: *708 - projects_v2: &753 + installation: *715 + organization: *716 + projects_v2: &761 title: Projects v2 Project description: A projects v2 project type: object @@ -157499,9 +158131,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157582,9 +158214,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157705,9 +158337,9 @@ webhooks: type: string to: type: string - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157790,7 +158422,7 @@ webhooks: type: string enum: - archived - changes: &757 + changes: &765 type: object properties: archived_at: @@ -157806,9 +158438,9 @@ webhooks: - string - 'null' format: date-time - installation: *707 - organization: *708 - projects_v2_item: &754 + installation: *715 + organization: *716 + projects_v2_item: &762 title: Projects v2 Item description: An item belonging to a project type: object @@ -157947,9 +158579,9 @@ webhooks: - 'null' to: type: string - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158031,9 +158663,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158114,9 +158746,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158221,7 +158853,7 @@ webhooks: oneOf: - type: string - type: integer - - &755 + - &763 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158241,7 +158873,7 @@ webhooks: required: - id - name - - &756 + - &764 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158270,8 +158902,8 @@ webhooks: oneOf: - type: string - type: integer - - *755 - - *756 + - *763 + - *764 type: - 'null' - string @@ -158294,9 +158926,9 @@ webhooks: - 'null' required: - body - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158393,9 +159025,9 @@ webhooks: type: - string - 'null' - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158478,10 +159110,10 @@ webhooks: type: string enum: - restored - changes: *757 - installation: *707 - organization: *708 - projects_v2_item: *754 + changes: *765 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158563,9 +159195,9 @@ webhooks: type: string enum: - reopened - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -158646,9 +159278,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2_status_update: &758 + installation: *715 + organization: *716 + projects_v2_status_update: &766 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -158783,9 +159415,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2_status_update: *758 + installation: *715 + organization: *716 + projects_v2_status_update: *766 sender: *4 required: - action @@ -158931,9 +159563,9 @@ webhooks: - string - 'null' format: date - installation: *707 - organization: *708 - projects_v2_status_update: *758 + installation: *715 + organization: *716 + projects_v2_status_update: *766 sender: *4 required: - action @@ -159004,10 +159636,10 @@ webhooks: title: public event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - repository @@ -159084,13 +159716,13 @@ webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *706 - installation: *707 - number: &759 + assignee: *741 + enterprise: *714 + installation: *715 + number: &767 description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -161439,7 +162071,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -161521,11 +162153,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -163867,7 +164499,7 @@ webhooks: - draft reason: type: string - repository: *709 + repository: *717 sender: *4 required: - action @@ -163949,11 +164581,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -166295,7 +166927,7 @@ webhooks: - draft reason: type: string - repository: *709 + repository: *717 sender: *4 required: - action @@ -166377,13 +167009,13 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: &760 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: &768 allOf: - - *565 + - *573 - type: object properties: allow_auto_merge: @@ -166445,7 +167077,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *709 + repository: *717 sender: *4 required: - action @@ -166526,12 +167158,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -166611,11 +167243,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *706 - milestone: *463 - number: *759 - organization: *708 - pull_request: &761 + enterprise: *714 + milestone: *471 + number: *767 + organization: *716 + pull_request: &769 title: Pull Request type: object properties: @@ -168942,7 +169574,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -169021,11 +169653,11 @@ webhooks: type: string enum: - dequeued - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -171371,7 +172003,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *709 + repository: *717 sender: *4 required: - action @@ -171495,12 +172127,12 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -171580,11 +172212,11 @@ webhooks: type: string enum: - enqueued - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -173915,7 +174547,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -173995,11 +174627,11 @@ webhooks: type: string enum: - labeled - enterprise: *706 - installation: *707 - label: *732 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + label: *740 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -176347,7 +176979,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -176428,10 +177060,10 @@ webhooks: type: string enum: - locked - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -178777,7 +179409,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -178857,12 +179489,12 @@ webhooks: type: string enum: - milestoned - enterprise: *706 - milestone: *463 - number: *759 - organization: *708 - pull_request: *761 - repository: *709 + enterprise: *714 + milestone: *471 + number: *767 + organization: *716 + pull_request: *769 + repository: *717 sender: *4 required: - action @@ -178941,12 +179573,12 @@ webhooks: type: string enum: - opened - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179027,12 +179659,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179112,12 +179744,12 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179492,9 +180124,9 @@ webhooks: - start_side - side - reactions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -181724,7 +182356,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -181804,7 +182436,7 @@ webhooks: type: string enum: - deleted - comment: &763 + comment: &771 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. @@ -182097,9 +182729,9 @@ webhooks: - start_side - side - reactions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -184317,7 +184949,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -184397,11 +185029,11 @@ webhooks: type: string enum: - edited - changes: *762 - comment: *763 - enterprise: *706 - installation: *707 - organization: *708 + changes: *770 + comment: *771 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -186622,7 +187254,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -186703,9 +187335,9 @@ webhooks: type: string enum: - dismissed - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -188938,7 +189570,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 review: description: The review that was affected. type: object @@ -189184,9 +189816,9 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -191300,8 +191932,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 - review: &764 + repository: *717 + review: &772 description: The review that was affected. type: object properties: @@ -191534,12 +192166,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -193886,7 +194518,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_reviewer: title: User type: @@ -193972,12 +194604,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -196331,7 +196963,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196526,12 +197158,12 @@ webhooks: type: string enum: - review_requested - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -198880,7 +199512,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_reviewer: title: User type: @@ -198967,12 +199599,12 @@ webhooks: type: string enum: - review_requested - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -201312,7 +201944,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201496,9 +202128,9 @@ webhooks: type: string enum: - submitted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -203734,8 +204366,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 - review: *764 + repository: *717 + review: *772 sender: *4 required: - action @@ -203815,9 +204447,9 @@ webhooks: type: string enum: - resolved - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -205948,7 +206580,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 sender: *4 thread: type: object @@ -206340,9 +206972,9 @@ webhooks: type: string enum: - unresolved - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -208456,7 +209088,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 sender: *4 thread: type: object @@ -208850,10 +209482,10 @@ webhooks: type: string before: type: string - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -211188,7 +211820,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -211270,11 +211902,11 @@ webhooks: type: string enum: - unassigned - assignee: *765 - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + assignee: *773 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -213624,7 +214256,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -213703,11 +214335,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *706 - installation: *707 - label: *732 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + label: *740 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -216046,7 +216678,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -216127,10 +216759,10 @@ webhooks: type: string enum: - unlocked - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -218459,7 +219091,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -218662,7 +219294,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *706 + enterprise: *714 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -218757,8 +219389,8 @@ webhooks: - url - author - committer - installation: *707 - organization: *708 + installation: *715 + organization: *716 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -219346,9 +219978,9 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 registry_package: type: object properties: @@ -219825,7 +220457,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *747 + items: *755 summary: type: string tag_name: @@ -219881,7 +220513,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -219959,9 +220591,9 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 registry_package: type: object properties: @@ -220273,7 +220905,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *747 + items: *755 summary: type: string tag_name: @@ -220323,7 +220955,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -220400,10 +221032,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - release: &766 + enterprise: *714 + installation: *715 + organization: *716 + release: &774 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -220719,7 +221351,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *709 + repository: *717 sender: *4 required: - action @@ -220796,11 +221428,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -220908,11 +221540,11 @@ webhooks: type: boolean required: - to - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -220990,9 +221622,9 @@ webhooks: type: string enum: - prereleased - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -221313,7 +221945,7 @@ webhooks: - string - 'null' format: uri - repository: *709 + repository: *717 sender: *4 required: - action @@ -221389,10 +222021,10 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - release: &767 + enterprise: *714 + installation: *715 + organization: *716 + release: &775 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -221710,7 +222342,7 @@ webhooks: - string - 'null' format: uri - repository: *709 + repository: *717 sender: *4 required: - action @@ -221786,11 +222418,11 @@ webhooks: type: string enum: - released - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -221866,11 +222498,11 @@ webhooks: type: string enum: - unpublished - enterprise: *706 - installation: *707 - organization: *708 - release: *767 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *775 + repository: *717 sender: *4 required: - action @@ -221946,11 +222578,11 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_advisory: *618 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_advisory: *626 sender: *4 required: - action @@ -222026,11 +222658,11 @@ webhooks: type: string enum: - reported - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_advisory: *618 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_advisory: *626 sender: *4 required: - action @@ -222106,10 +222738,10 @@ webhooks: type: string enum: - archived - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222186,10 +222818,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222267,10 +222899,10 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222355,10 +222987,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222473,10 +223105,10 @@ webhooks: - 'null' items: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222548,10 +223180,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 status: type: string @@ -222632,10 +223264,10 @@ webhooks: type: string enum: - privatized - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222712,10 +223344,10 @@ webhooks: type: string enum: - publicized - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222809,10 +223441,10 @@ webhooks: - name required: - repository - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222892,11 +223524,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 sender: *4 required: - action @@ -222974,11 +223606,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 sender: *4 required: - action @@ -223056,11 +223688,11 @@ webhooks: type: string enum: - edited - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 changes: type: object properties: @@ -223079,16 +223711,16 @@ webhooks: properties: added: type: array - items: *111 + items: *114 deleted: type: array - items: *111 + items: *114 updated: type: array items: type: object properties: - condition: *111 + condition: *114 changes: type: object properties: @@ -223121,16 +223753,16 @@ webhooks: properties: added: type: array - items: *117 + items: *120 deleted: type: array - items: *117 + items: *120 updated: type: array items: type: object properties: - rule: *117 + rule: *120 changes: type: object properties: @@ -223367,10 +223999,10 @@ webhooks: - from required: - owner - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223448,10 +224080,10 @@ webhooks: type: string enum: - unarchived - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223529,7 +224161,7 @@ webhooks: type: string enum: - create - alert: &768 + alert: &776 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -223653,10 +224285,10 @@ webhooks: type: string enum: - open - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223866,10 +224498,10 @@ webhooks: type: string enum: - dismissed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223947,11 +224579,11 @@ webhooks: type: string enum: - reopen - alert: *768 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *776 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224153,10 +224785,10 @@ webhooks: enum: - fixed - open - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224234,7 +224866,7 @@ webhooks: type: string enum: - created - alert: &769 + alert: &777 type: object properties: number: *94 @@ -224344,10 +224976,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224428,11 +225060,11 @@ webhooks: type: string enum: - created - alert: *769 - installation: *707 - location: *770 - organization: *708 - repository: *709 + alert: *777 + installation: *715 + location: *778 + organization: *716 + repository: *717 sender: *4 required: - location @@ -224670,11 +225302,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224752,11 +225384,11 @@ webhooks: type: string enum: - reopened - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224834,11 +225466,11 @@ webhooks: type: string enum: - resolved - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224916,11 +225548,11 @@ webhooks: type: string enum: - validated - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -225050,10 +225682,10 @@ webhooks: - organization - enterprise - - repository: *709 - enterprise: *706 - installation: *707 - organization: *708 + repository: *717 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -225131,11 +225763,11 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - security_advisory: &771 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + security_advisory: &779 description: The details of the security advisory, including summary, description, and severity. type: object @@ -225321,11 +225953,11 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - security_advisory: *771 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + security_advisory: *779 sender: *4 required: - action @@ -225398,10 +226030,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -225587,11 +226219,11 @@ webhooks: from: type: object properties: - security_and_analysis: *294 - enterprise: *706 - installation: *707 - organization: *708 - repository: *351 + security_and_analysis: *298 + enterprise: *714 + installation: *715 + organization: *716 + repository: *359 sender: *4 required: - changes @@ -225669,12 +226301,12 @@ webhooks: type: string enum: - cancelled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: &772 + sponsorship: &780 type: object properties: created_at: @@ -225979,12 +226611,12 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - sponsorship @@ -226072,12 +226704,12 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226154,17 +226786,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &773 + effective_date: &781 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: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - sponsorship @@ -226238,7 +226870,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &774 + changes: &782 type: object properties: tier: @@ -226282,13 +226914,13 @@ webhooks: - from required: - tier - effective_date: *773 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + effective_date: *781 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226365,13 +226997,13 @@ webhooks: type: string enum: - tier_changed - changes: *774 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + changes: *782 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226445,10 +227077,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226532,10 +227164,10 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226968,15 +227600,15 @@ webhooks: type: - string - 'null' - enterprise: *706 + enterprise: *714 id: description: The unique identifier of the status. type: integer - installation: *707 + installation: *715 name: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 sha: description: The Commit SHA. @@ -227086,15 +227718,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 + parent_issue: *144 parent_issue_repo: *61 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 - installation: *707 - organization: *708 - repository: *709 + sub_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227178,15 +227810,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 + parent_issue: *144 parent_issue_repo: *61 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 - installation: *707 - organization: *708 - repository: *709 + sub_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227270,15 +227902,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 + sub_issue: *144 sub_issue_repo: *61 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 - installation: *707 - organization: *708 - repository: *709 + parent_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227362,15 +227994,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 + sub_issue: *144 sub_issue_repo: *61 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 - installation: *707 - organization: *708 - repository: *709 + parent_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227447,12 +228079,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - team: &775 + team: &783 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -227645,9 +228277,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -228117,7 +228749,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -228193,9 +228825,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -228665,7 +229297,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -228742,9 +229374,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -229214,7 +229846,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -229358,9 +229990,9 @@ webhooks: - from required: - permissions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -229830,7 +230462,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - changes @@ -229908,9 +230540,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -230380,7 +231012,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -230456,10 +231088,10 @@ webhooks: type: string enum: - started - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -230532,17 +231164,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *706 + enterprise: *714 inputs: type: - object - 'null' additionalProperties: true - installation: *707 - organization: *708 + installation: *715 + organization: *716 ref: type: string - repository: *709 + repository: *717 sender: *4 workflow: type: string @@ -230624,10 +231256,10 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: allOf: @@ -230883,7 +231515,7 @@ webhooks: type: string required: - conclusion - deployment: *483 + deployment: *491 required: - action - repository @@ -230962,10 +231594,10 @@ webhooks: type: string enum: - in_progress - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: allOf: @@ -231247,7 +231879,7 @@ webhooks: required: - status - steps - deployment: *483 + deployment: *491 required: - action - repository @@ -231326,10 +231958,10 @@ webhooks: type: string enum: - queued - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: type: object @@ -231475,7 +232107,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *491 required: - action - repository @@ -231554,10 +232186,10 @@ webhooks: type: string enum: - waiting - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: type: object @@ -231704,7 +232336,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *491 required: - action - repository @@ -231784,12 +232416,12 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -232808,12 +233440,12 @@ webhooks: type: string enum: - in_progress - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -233817,12 +234449,12 @@ webhooks: type: string enum: - requested - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 53926cbce..7c861d0c4 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -191,6 +191,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -36475,6 +36479,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -38453,6 +38465,781 @@ } } }, + "/enterprises/{enterprise}/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an enterprise", + "description": "Lists all hosted compute network configurations configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an enterprise", + "description": "Creates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an enterprise", + "description": "Gets a hosted compute network configuration configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an enterprise", + "description": "Updates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an enterprise", + "description": "Deletes a hosted compute network configuration from an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an enterprise", + "description": "Gets a hosted compute network settings resource configured for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name. You can also substitute this value with the enterprise id.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, + "examples": { + "default": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, "/enterprises/{enterprise}/properties/schema": { "get": { "summary": "Get custom properties for an enterprise", @@ -118029,6 +118816,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -186452,158 +187247,622 @@ ], "responses": { "200": { - "description": "Success", + "description": "Success", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_advanced_security_committers": { + "type": "integer", + "examples": [ + 25 + ] + }, + "total_count": { + "type": "integer", + "examples": [ + 2 + ] + }, + "maximum_advanced_security_committers": { + "type": "integer", + "description": "The total number of GitHub Advanced Security licences required if all repositories were to enable GitHub Advanced Security", + "examples": [ + 4 + ] + }, + "purchased_advanced_security_committers": { + "type": "integer", + "description": "The total number of GitHub Advanced Security licences purchased", + "examples": [ + 4 + ] + }, + "repositories": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string", + "examples": [ + "octocat/Hello-World" + ] + }, + "advanced_security_committers": { + "type": "integer", + "examples": [ + 25 + ] + }, + "advanced_security_committers_breakdown": { + "type": "array", + "items": { + "type": "object", + "properties": { + "user_login": { + "type": "string" + }, + "last_pushed_date": { + "type": "string", + "examples": [ + "2021-11-03" + ] + }, + "last_pushed_email": { + "type": "string", + "examples": [ + "monalisa@github.com" + ] + } + }, + "required": [ + "user_login", + "last_pushed_date", + "last_pushed_email" + ] + } + } + }, + "required": [ + "name", + "advanced_security_committers", + "advanced_security_committers_breakdown" + ] + } + } + }, + "required": [ + "repositories" + ] + }, + "examples": { + "default": { + "value": { + "total_advanced_security_committers": 2, + "total_count": 2, + "maximum_advanced_security_committers": 4, + "purchased_advanced_security_committers": 4, + "repositories": [ + { + "name": "octocat-org/Hello-World", + "advanced_security_committers": 2, + "advanced_security_committers_breakdown": [ + { + "user_login": "octocat", + "last_pushed_date": "2021-11-03", + "last_pushed_email": "octocat@github.com" + }, + { + "user_login": "octokitten", + "last_pushed_date": "2021-10-25", + "last_pushed_email": "octokitten@github.com" + } + ] + }, + { + "name": "octocat-org/server", + "advanced_security_committers": 1, + "advanced_security_committers_breakdown": [ + { + "user_login": "octokitten", + "last_pushed_date": "2021-10-26", + "last_pushed_email": "octokitten@github.com" + } + ] + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/billing/packages": { + "get": { + "summary": "Get GitHub Packages billing for an organization", + "description": "Gets the free and paid storage used for GitHub Packages in gigabytes.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", + "operationId": "billing/get-github-packages-billing-org", + "tags": [ + "billing" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_gigabytes_bandwidth_used": { + "type": "integer", + "description": "Sum of the free and paid storage space (GB) for GitHuub Packages." + }, + "total_paid_gigabytes_bandwidth_used": { + "type": "integer", + "description": "Total paid storage space (GB) for GitHuub Packages." + }, + "included_gigabytes_bandwidth": { + "type": "integer", + "description": "Free storage space (GB) for GitHub Packages." + } + }, + "required": [ + "total_gigabytes_bandwidth_used", + "total_paid_gigabytes_bandwidth_used", + "included_gigabytes_bandwidth" + ] + }, + "examples": { + "default": { + "value": { + "total_gigabytes_bandwidth_used": 50, + "total_paid_gigabytes_bandwidth_used": 40, + "included_gigabytes_bandwidth": 10 + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/billing/shared-storage": { + "get": { + "summary": "Get shared storage billing for an organization", + "description": "Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", + "operationId": "billing/get-shared-storage-billing-org", + "tags": [ + "billing" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "days_left_in_billing_cycle": { + "type": "integer", + "description": "Numbers of days left in billing cycle." + }, + "estimated_paid_storage_for_month": { + "type": "integer", + "description": "Estimated storage space (GB) used in billing cycle." + }, + "estimated_storage_for_month": { + "type": "integer", + "description": "Estimated sum of free and paid storage space (GB) used in billing cycle." + } + }, + "required": [ + "days_left_in_billing_cycle", + "estimated_paid_storage_for_month", + "estimated_storage_for_month" + ] + }, + "examples": { + "default": { + "value": { + "days_left_in_billing_cycle": 20, + "estimated_paid_storage_for_month": 15, + "estimated_storage_for_month": 40 + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "billing", + "subcategory": "billing" + } + } + }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", "content": { "application/json": { "schema": { "type": "object", + "required": [ + "total_count", + "network_configurations" + ], "properties": { - "total_advanced_security_committers": { - "type": "integer", - "examples": [ - 25 - ] - }, "total_count": { - "type": "integer", - "examples": [ - 2 - ] - }, - "maximum_advanced_security_committers": { - "type": "integer", - "description": "The total number of GitHub Advanced Security licences required if all repositories were to enable GitHub Advanced Security", - "examples": [ - 4 - ] - }, - "purchased_advanced_security_committers": { - "type": "integer", - "description": "The total number of GitHub Advanced Security licences purchased", - "examples": [ - 4 - ] + "type": "integer" }, - "repositories": { + "network_configurations": { "type": "array", "items": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", "type": "object", "properties": { - "name": { + "id": { + "description": "The unique identifier of the network configuration.", "type": "string", "examples": [ - "octocat/Hello-World" + "123ABC456DEF789" ] }, - "advanced_security_committers": { - "type": "integer", + "name": { + "description": "The name of the network configuration.", + "type": "string", "examples": [ - 25 + "my-network-configuration" ] }, - "advanced_security_committers_breakdown": { + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", "type": "array", "items": { - "type": "object", - "properties": { - "user_login": { - "type": "string" - }, - "last_pushed_date": { - "type": "string", - "examples": [ - "2021-11-03" - ] - }, - "last_pushed_email": { - "type": "string", - "examples": [ - "monalisa@github.com" - ] - } - }, - "required": [ - "user_login", - "last_pushed_date", - "last_pushed_email" - ] - } + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] } }, "required": [ + "id", "name", - "advanced_security_committers", - "advanced_security_committers_breakdown" + "created_on" ] } } - }, - "required": [ - "repositories" - ] + } }, "examples": { "default": { "value": { - "total_advanced_security_committers": 2, "total_count": 2, - "maximum_advanced_security_committers": 4, - "purchased_advanced_security_committers": 4, - "repositories": [ + "network_configurations": [ { - "name": "octocat-org/Hello-World", - "advanced_security_committers": 2, - "advanced_security_committers_breakdown": [ - { - "user_login": "octocat", - "last_pushed_date": "2021-11-03", - "last_pushed_email": "octocat@github.com" - }, - { - "user_login": "octokitten", - "last_pushed_date": "2021-10-25", - "last_pushed_email": "octokitten@github.com" - } - ] + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" }, { - "name": "octocat-org/server", - "advanced_security_committers": 1, - "advanced_security_committers_breakdown": [ - { - "user_login": "octokitten", - "last_pushed_date": "2021-10-26", - "last_pushed_email": "octokitten@github.com" - } - ] + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" } ] } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { - "githubCloudOnly": true, + "githubCloudOnly": false, "enabledForGitHubApps": true, - "category": "billing", - "subcategory": "billing" + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "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": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, - "/orgs/{org}/settings/billing/packages": { + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { "get": { - "summary": "Get GitHub Packages billing for an organization", - "description": "Gets the free and paid storage used for GitHub Packages in gigabytes.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", - "operationId": "billing/get-github-packages-billing-org", + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", "tags": [ - "billing" + "hosted-compute" ], + "operationId": "hosted-compute/get-network-configuration-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" }, "parameters": [ { @@ -186614,6 +187873,15 @@ "schema": { "type": "string" } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } } ], "responses": { @@ -186622,59 +187890,310 @@ "content": { "application/json": { "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", "type": "object", "properties": { - "total_gigabytes_bandwidth_used": { - "type": "integer", - "description": "Sum of the free and paid storage space (GB) for GitHuub Packages." + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] }, - "total_paid_gigabytes_bandwidth_used": { - "type": "integer", - "description": "Total paid storage space (GB) for GitHuub Packages." + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] }, - "included_gigabytes_bandwidth": { - "type": "integer", - "description": "Free storage space (GB) for GitHub Packages." + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] } }, "required": [ - "total_gigabytes_bandwidth_used", - "total_paid_gigabytes_bandwidth_used", - "included_gigabytes_bandwidth" + "id", + "name", + "created_on" ] }, "examples": { "default": { "value": { - "total_gigabytes_bandwidth_used": 50, - "total_paid_gigabytes_bandwidth_used": 40, - "included_gigabytes_bandwidth": 10 + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { "githubCloudOnly": false, - "enabledForGitHubApps": false, - "category": "billing", - "subcategory": "billing" + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "examples": { + "default": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, - "/orgs/{org}/settings/billing/shared-storage": { + "/orgs/{org}/settings/network-settings/{network_settings_id}": { "get": { - "summary": "Get shared storage billing for an organization", - "description": "Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.\n\nPaid minutes only apply to packages stored for private repositories. For more information, see \"[Managing billing for GitHub Packages](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.", - "operationId": "billing/get-shared-storage-billing-org", + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", "tags": [ - "billing" + "hosted-compute" ], + "operationId": "hosted-compute/get-network-settings-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" }, "parameters": [ { @@ -186685,6 +188204,15 @@ "schema": { "type": "string" } + }, + { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } } ], "responses": { @@ -186693,45 +188221,81 @@ "content": { "application/json": { "schema": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", "type": "object", "properties": { - "days_left_in_billing_cycle": { - "type": "integer", - "description": "Numbers of days left in billing cycle." + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] }, - "estimated_paid_storage_for_month": { - "type": "integer", - "description": "Estimated storage space (GB) used in billing cycle." + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] }, - "estimated_storage_for_month": { - "type": "integer", - "description": "Estimated sum of free and paid storage space (GB) used in billing cycle." + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] } }, "required": [ - "days_left_in_billing_cycle", - "estimated_paid_storage_for_month", - "estimated_storage_for_month" + "id", + "name", + "subnet_id", + "region" ] }, "examples": { "default": { "value": { - "days_left_in_billing_cycle": 20, - "estimated_paid_storage_for_month": 15, - "estimated_storage_for_month": 40 + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" } } } } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } } } }, "x-github": { "githubCloudOnly": false, - "enabledForGitHubApps": false, - "category": "billing", - "subcategory": "billing" + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" } } }, @@ -328491,6 +330055,14 @@ "type": "string" } }, + { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, { "name": "scope", "in": "query", @@ -416291,7 +417863,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -422379,7 +423951,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 8706f5595..63f0e00ad 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -101,6 +101,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -896,7 +898,7 @@ paths: - subscriptions_url - type - url - type: &310 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1029,7 +1031,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &167 + schema: &170 title: Validation Error Simple description: Validation Error Simple type: object @@ -1062,7 +1064,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: - - &620 + - &628 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1658,7 +1660,7 @@ paths: schema: type: integer default: 30 - - &239 + - &243 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1674,7 +1676,7 @@ paths: application/json: schema: type: array - items: &240 + items: &244 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1767,7 +1769,7 @@ paths: - installation_id - repository_id examples: - default: &241 + default: &245 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1799,7 +1801,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &630 + schema: &638 title: Scim Error description: Scim Error type: object @@ -1830,7 +1832,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &166 + schema: &169 title: Validation Error description: Validation Error type: object @@ -1902,7 +1904,7 @@ paths: description: Response content: application/json: - schema: &242 + schema: &246 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2037,7 +2039,7 @@ paths: - request - response examples: - default: &243 + default: &247 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2241,7 +2243,7 @@ paths: parameters: - *17 - *19 - - &131 + - &134 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -3003,7 +3005,7 @@ paths: license: anyOf: - type: 'null' - - &142 + - &145 title: License Simple description: License Simple type: object @@ -7598,7 +7600,7 @@ paths: description: Response content: application/json: - schema: &168 + schema: &171 type: object properties: total_active_caches_count: @@ -7613,7 +7615,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &169 + default: &172 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7825,7 +7827,7 @@ paths: - public_ip_enabled - platform examples: - default: &170 + default: &173 value: total_count: 2 runners: @@ -8122,7 +8124,7 @@ paths: description: Response content: application/json: - schema: &171 + schema: &174 type: object properties: public_ips: @@ -8149,7 +8151,7 @@ paths: required: - public_ips examples: - default: &172 + default: &175 value: public_ips: current_usage: 17 @@ -8189,7 +8191,7 @@ paths: type: array items: *42 examples: - default: &173 + default: &176 value: id: 4-core cpu_cores: 4 @@ -8454,7 +8456,7 @@ paths: - all - local_only - selected - selected_actions_url: &176 + selected_actions_url: &179 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` @@ -8835,7 +8837,7 @@ paths: description: Success response content: application/json: - schema: &179 + schema: &182 type: object properties: default_workflow_permissions: &50 @@ -8883,7 +8885,7 @@ paths: required: true content: application/json: - schema: &180 + schema: &183 type: object properties: default_workflow_permissions: *50 @@ -9724,7 +9726,7 @@ paths: application/json: schema: type: array - items: &184 + items: &187 title: Runner Application description: Runner Application type: object @@ -9749,7 +9751,7 @@ paths: - download_url - filename examples: - default: &185 + default: &188 value: - os: osx architecture: x64 @@ -9833,7 +9835,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &186 + '201': &189 description: Response content: application/json: @@ -9947,7 +9949,7 @@ paths: - token - expires_at examples: - default: &187 + default: &190 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -9987,7 +9989,7 @@ paths: application/json: schema: *62 examples: - default: &188 + default: &191 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10019,7 +10021,7 @@ paths: application/json: schema: *59 examples: - default: &189 + default: &192 value: id: 23 name: MBP @@ -10233,7 +10235,7 @@ paths: - *38 - *58 responses: - '200': &190 + '200': &193 description: Response content: application/json: @@ -10289,7 +10291,7 @@ paths: parameters: - *38 - *58 - - &191 + - &194 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10386,7 +10388,7 @@ paths: required: true content: application/json: - schema: &198 + schema: &201 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -10457,7 +10459,7 @@ paths: required: false schema: type: string - - &199 + - &202 name: include description: |- The event types to include: @@ -10475,7 +10477,7 @@ paths: - web - git - all - - &200 + - &203 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. @@ -10483,7 +10485,7 @@ paths: required: false schema: type: string - - &201 + - &204 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. @@ -10491,7 +10493,7 @@ paths: required: false schema: type: string - - &202 + - &205 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -10513,7 +10515,7 @@ paths: application/json: schema: type: array - items: &203 + items: &206 type: object properties: "@timestamp": @@ -10635,7 +10637,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &204 + default: &207 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11199,7 +11201,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *38 - - &206 + - &209 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`, @@ -11209,7 +11211,7 @@ paths: schema: &83 type: string description: The name of the tool used to generate the code scanning analysis. - - &207 + - &210 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 @@ -11233,7 +11235,7 @@ paths: be returned. in: query required: false - schema: &208 + schema: &211 type: string description: State of a code scanning alert. enum: @@ -11258,7 +11260,7 @@ paths: application/json: schema: type: array - items: &209 + items: &212 type: object properties: number: &94 @@ -11287,7 +11289,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &423 + instances_url: &431 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11323,7 +11325,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &424 + dismissed_reason: &432 type: - string - 'null' @@ -11334,14 +11336,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &425 + dismissed_comment: &433 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &426 + rule: &434 type: object properties: id: @@ -11402,7 +11404,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &435 type: object properties: name: *83 @@ -11413,15 +11415,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *84 - most_recent_instance: &428 + most_recent_instance: &436 type: object properties: - ref: &421 + ref: &429 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &446 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11432,7 +11434,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &439 + category: &447 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -11816,7 +11818,7 @@ paths: - most_recent_instance - repository examples: - default: &210 + default: &213 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -12047,7 +12049,7 @@ paths: headers: Link: *37 '404': *6 - '503': &121 + '503': &124 description: Service unavailable content: application/json: @@ -12577,7 +12579,7 @@ paths: description: Response content: application/json: - schema: &212 + schema: &215 type: array description: A list of default code security configurations items: @@ -12593,7 +12595,7 @@ paths: default configuration: *86 examples: - default: &213 + default: &216 value: - default_for_new_repos: public configuration: @@ -12875,7 +12877,7 @@ paths: - *38 - *88 responses: - '204': &108 + '204': &111 description: A header with no content is returned. '400': *14 '403': *27 @@ -13003,7 +13005,7 @@ paths: default: value: default_for_new_repos: all - configuration: &211 + configuration: &214 value: id: 1325 target_type: organization @@ -13083,7 +13085,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 type: object description: Repositories associated with a code security configuration and attachment status @@ -13107,7 +13109,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &215 + repository: &218 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -13590,7 +13592,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &217 + items: &220 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -13605,7 +13607,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &261 + - &265 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -13664,7 +13666,7 @@ paths: parent: anyOf: - type: 'null' - - &274 + - &278 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -13868,7 +13870,7 @@ paths: - created_at additionalProperties: false examples: - default: &218 + default: &221 value: total_seats: 2 seats: @@ -14003,7 +14005,7 @@ paths: application/json: schema: type: array - items: &123 + items: &126 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -14319,7 +14321,7 @@ paths: - date additionalProperties: true examples: - default: &124 + default: &127 value: - date: '2024-06-24' total_active_users: 24 @@ -14421,7 +14423,7 @@ paths: '500': *93 '403': *27 '404': *6 - '422': &125 + '422': &128 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -14491,7 +14493,7 @@ paths: application/json: schema: type: array - items: &126 + items: &129 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -14671,7 +14673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &225 + - &228 name: state in: query description: |- @@ -14680,7 +14682,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &226 + - &229 name: severity in: query description: |- @@ -14689,7 +14691,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &227 + - &230 name: ecosystem in: query description: |- @@ -14698,14 +14700,26 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &228 + - &231 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 - - &229 + - &232 + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string + - &233 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -14715,7 +14729,7 @@ paths: enum: - development - runtime - - &230 + - &234 name: sort in: query description: |- @@ -14733,7 +14747,7 @@ paths: - *82 - *80 - *81 - - &231 + - &235 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -14746,7 +14760,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &232 + - &236 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -14766,7 +14780,7 @@ paths: application/json: schema: type: array - items: &233 + items: &237 type: object description: A Dependabot alert. properties: @@ -14818,7 +14832,7 @@ paths: - development - runtime - - security_advisory: &475 + security_advisory: &483 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15053,7 +15067,7 @@ paths: dismissal. maxLength: 280 fixed_at: *103 - auto_dismissed_at: &476 + auto_dismissed_at: &484 type: - string - 'null' @@ -15080,7 +15094,7 @@ paths: - repository additionalProperties: false examples: - default: &234 + default: &238 value: - number: 2 state: dismissed @@ -15472,6 +15486,370 @@ paths: previews: [] category: enterprise-admin subcategory: license + "/enterprises/{enterprise}/network-configurations": + get: + summary: List hosted compute network configurations for an enterprise + description: Lists all hosted compute network configurations configured in an + enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise + parameters: + - *38 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: &104 + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration + supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings + in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration + was created, in ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + examples: + default: &323 + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an enterprise + description: Creates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *104 + examples: + default: &105 + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an enterprise + description: Gets a hosted compute network configuration configured in an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + - &106 + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an enterprise + description: Updates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - *38 + - *106 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an enterprise + description: Deletes a hosted compute network configuration from an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise + parameters: + - *38 + - *106 + responses: + '204': + description: Response + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an enterprise + description: Gets a hosted compute network settings resource configured for + an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-settings-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise + parameters: + - *38 + - &324 + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: &325 + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that + is using this settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured + for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings + resource is configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region + examples: + default: &326 + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus + headers: + Link: *37 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations "/enterprises/{enterprise}/properties/schema": get: summary: Get custom properties for an enterprise @@ -15496,7 +15874,7 @@ paths: application/json: schema: type: array - items: &104 + items: &107 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -15572,7 +15950,7 @@ paths: - property_name - value_type examples: - default: &105 + default: &108 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -15628,7 +16006,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *104 + items: *107 minItems: 1 maxItems: 100 required: @@ -15658,9 +16036,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -15685,7 +16063,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *38 - - &106 + - &109 name: custom_property_name description: The custom property name in: path @@ -15697,9 +16075,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: &107 + default: &110 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -15735,12 +16113,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *38 - - *106 + - *109 requestBody: required: true content: application/json: - schema: &292 + schema: &296 title: Custom Property Set Payload description: Custom property set payload type: object @@ -15802,9 +16180,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -15829,9 +16207,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *38 - - *106 + - *109 responses: - '204': *108 + '204': *111 '403': *27 '404': *6 x-github: @@ -15871,7 +16249,7 @@ paths: - push - repository default: branch - enforcement: &115 + enforcement: &118 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -15884,7 +16262,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &116 + items: &119 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -15922,7 +16300,7 @@ paths: - always - pull_request default: always - conditions: &120 + conditions: &123 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -15936,7 +16314,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &109 + - &112 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -15962,7 +16340,7 @@ paths: type: string required: - organization_name - - &112 + - &115 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -15991,7 +16369,7 @@ paths: is prevented. required: - repository_name - - &111 + - &114 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -16019,8 +16397,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *109 - - &114 + - *112 + - &117 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -16033,7 +16411,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &110 + items: &113 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -16064,16 +16442,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *110 + items: *113 required: - repository_property - - *111 + - *114 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &113 + - &116 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -16090,25 +16468,25 @@ paths: type: integer required: - organization_id - - *112 - - *111 + - *115 + - *114 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *113 + - *116 + - *117 - *114 - - *111 rules: type: array description: An array of rules within the ruleset. - items: &117 + items: &120 title: Repository Rule type: object description: A repository rule. oneOf: - - &582 + - &590 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16120,7 +16498,7 @@ paths: type: string enum: - creation - - &583 + - &591 title: update description: Only allow users with bypass permission to update matching refs. @@ -16141,7 +16519,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &585 + - &593 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -16153,7 +16531,7 @@ paths: type: string enum: - deletion - - &586 + - &594 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -16165,7 +16543,7 @@ paths: type: string enum: - required_linear_history - - &587 + - &595 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -16241,7 +16619,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &588 + - &596 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -16265,7 +16643,7 @@ paths: type: string required: - required_deployment_environments - - &589 + - &597 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -16277,7 +16655,7 @@ paths: type: string enum: - required_signatures - - &590 + - &598 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -16328,7 +16706,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &591 + - &599 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -16375,7 +16753,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &592 + - &600 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -16387,7 +16765,7 @@ paths: type: string enum: - non_fast_forward - - &593 + - &601 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -16423,7 +16801,7 @@ paths: required: - operator - pattern - - &594 + - &602 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -16459,7 +16837,7 @@ paths: required: - operator - pattern - - &595 + - &603 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -16495,7 +16873,7 @@ paths: required: - operator - pattern - - &596 + - &604 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -16531,7 +16909,7 @@ paths: required: - operator - pattern - - &597 + - &605 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -16657,7 +17035,7 @@ paths: maximum: 100 required: - max_file_size - - &598 + - &606 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -16706,7 +17084,7 @@ paths: - repository_id required: - workflows - - &599 + - &607 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -16792,7 +17170,7 @@ paths: description: Response content: application/json: - schema: &118 + schema: &121 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -16827,11 +17205,11 @@ paths: source: type: string description: The name of the source - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 + items: *119 current_user_can_bypass: type: string description: |- @@ -16862,8 +17240,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *111 - - &297 + - *114 + - &301 title: Organization ruleset conditions type: object description: |- @@ -16877,14 +17255,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *111 - - *112 + - *114 + - *115 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *111 + - *114 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -16906,14 +17284,14 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *111 - *114 + - *117 type: - 'null' - object rules: type: array - items: *117 + items: *120 created_at: type: string format: date-time @@ -16921,7 +17299,7 @@ paths: type: string format: date-time examples: - default: &119 + default: &122 value: id: 21 name: super cool ruleset @@ -16980,9 +17358,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *119 + default: *122 '404': *6 '500': *93 x-github: @@ -17026,16 +17404,16 @@ paths: - tag - push - repository - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *120 + items: *119 + conditions: *123 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -17059,9 +17437,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *119 + default: *122 '404': *6 '500': *93 x-github: @@ -17110,7 +17488,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &301 + - &305 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -17121,7 +17499,7 @@ paths: enum: - open - resolved - - &302 + - &306 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -17131,7 +17509,7 @@ paths: required: false schema: type: string - - &303 + - &307 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -17140,7 +17518,7 @@ paths: required: false schema: type: string - - &304 + - &308 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. @@ -17156,7 +17534,7 @@ paths: - *17 - *80 - *81 - - &305 + - &309 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -17165,7 +17543,7 @@ paths: required: false schema: type: string - - &306 + - &310 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -17174,7 +17552,7 @@ paths: schema: type: boolean default: false - - &307 + - &311 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -17190,7 +17568,7 @@ paths: application/json: schema: type: array - items: &308 + items: &312 type: object properties: number: *94 @@ -17206,14 +17584,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &612 + state: &620 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: &613 + resolution: &621 type: - string - 'null' @@ -17312,7 +17690,7 @@ paths: description: Whether the detected secret was found in multiple repositories in the same organization or enterprise. examples: - default: &309 + default: &313 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -17547,7 +17925,7 @@ paths: headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -17575,7 +17953,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &315 type: object properties: total_minutes_used: @@ -17645,7 +18023,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &312 + default: &316 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -17683,7 +18061,7 @@ paths: description: Success content: application/json: - schema: &313 + schema: &317 type: object properties: total_advanced_security_committers: @@ -17746,7 +18124,7 @@ paths: required: - repositories examples: - default: &314 + default: &318 value: total_advanced_security_committers: 2 total_count: 2 @@ -17834,7 +18212,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17855,7 +18233,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-users-to-a-cost-center parameters: - *38 - - &122 + - &125 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -17899,7 +18277,7 @@ paths: '403': *27 '409': *90 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17919,7 +18297,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-users-from-a-cost-center parameters: - *38 - - *122 + - *125 requestBody: required: true content: @@ -17957,7 +18335,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17985,7 +18363,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &319 type: object properties: total_gigabytes_bandwidth_used: @@ -18003,7 +18381,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &316 + default: &320 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -18035,7 +18413,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &321 type: object properties: days_left_in_billing_cycle: @@ -18053,7 +18431,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &318 + default: &322 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -18078,7 +18456,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *38 - - &157 + - &160 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18087,7 +18465,7 @@ paths: required: false schema: type: integer - - &158 + - &161 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. @@ -18095,7 +18473,7 @@ paths: required: false schema: type: integer - - &159 + - &162 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. @@ -18103,7 +18481,7 @@ paths: required: false schema: type: integer - - &160 + - &163 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. @@ -18123,7 +18501,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &161 + schema: &164 type: object properties: usageItems: @@ -18176,7 +18554,7 @@ paths: - netAmount - organizationName examples: - default: &162 + default: &165 value: usageItems: - date: '2023-08-01' @@ -18193,7 +18571,7 @@ paths: '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -18264,13 +18642,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18305,7 +18683,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-an-enterprise-team parameters: - *38 - - &273 + - &277 name: team_slug description: The slug of the team name. in: path @@ -18343,9 +18721,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: &219 + default: &222 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -18501,7 +18879,7 @@ paths: application/json: schema: type: array - items: &152 + items: &155 title: Event description: Event type: object @@ -18512,7 +18890,7 @@ paths: type: - string - 'null' - actor: &127 + actor: &130 title: Actor description: Actor type: object @@ -18553,13 +18931,13 @@ paths: - id - name - url - org: *127 + org: *130 payload: type: object properties: action: type: string - issue: &141 + issue: &144 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -18679,7 +19057,7 @@ paths: milestone: anyOf: - type: 'null' - - &463 + - &471 title: Milestone description: A collection of related issues and pull requests. @@ -18856,7 +19234,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &128 + author_association: &131 title: author_association type: string description: How the author is associated with the repository. @@ -18871,7 +19249,7 @@ paths: - OWNER examples: - OWNER - reactions: &129 + reactions: &132 title: Reaction Rollup type: object properties: @@ -18943,7 +19321,7 @@ paths: - author_association - created_at - updated_at - comment: &522 + comment: &530 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -18993,12 +19371,12 @@ paths: issue_url: type: string format: uri - author_association: *128 + author_association: *131 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - id - node_id @@ -19095,7 +19473,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19185,7 +19563,7 @@ paths: _links: type: object properties: - timeline: &130 + timeline: &133 title: Link With Type description: Hypermedia Link with Type type: object @@ -19197,17 +19575,17 @@ paths: required: - href - type - user: *130 - security_advisories: *130 - current_user: *130 - current_user_public: *130 - current_user_actor: *130 - current_user_organization: *130 + user: *133 + security_advisories: *133 + current_user: *133 + current_user_public: *133 + current_user_actor: *133 + current_user_organization: *133 current_user_organizations: type: array - items: *130 - repository_discussions: *130 - repository_discussions_category: *130 + items: *133 + repository_discussions: *133 + repository_discussions_category: *133 required: - timeline - user @@ -19269,7 +19647,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *131 + - *134 - *17 - *19 responses: @@ -19279,7 +19657,7 @@ paths: application/json: schema: type: array - items: &132 + items: &135 title: Base Gist description: Base Gist type: object @@ -19376,7 +19754,7 @@ paths: - created_at - updated_at examples: - default: &133 + default: &136 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -19500,7 +19878,7 @@ paths: description: Response content: application/json: - schema: &134 + schema: &137 title: Gist Simple description: Gist Simple type: object @@ -19518,7 +19896,7 @@ paths: url: type: string format: uri - user: &669 + user: &677 title: Public User description: Public User type: object @@ -19892,7 +20270,7 @@ paths: truncated: type: boolean examples: - default: &135 + default: &138 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -19996,7 +20374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *131 + - *134 - *17 - *19 responses: @@ -20006,9 +20384,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '422': *15 @@ -20030,7 +20408,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *131 + - *134 - *17 - *19 responses: @@ -20040,9 +20418,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '401': *23 @@ -20070,7 +20448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &136 + - &139 name: gist_id description: The unique identifier of the gist. in: path @@ -20082,10 +20460,10 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - default: *135 - '403': &139 + default: *138 + '403': &142 description: Forbidden Gist content: application/json: @@ -20134,7 +20512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *136 + - *139 requestBody: required: true content: @@ -20198,9 +20576,9 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - updateGist: *135 + updateGist: *138 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -20358,7 +20736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -20387,7 +20765,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20397,7 +20775,7 @@ paths: application/json: schema: type: array - items: &137 + items: &140 title: Gist Comment description: A comment made to a gist. type: object @@ -20435,7 +20813,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *128 + author_association: *131 required: - url - id @@ -20500,7 +20878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *136 + - *139 requestBody: required: true content: @@ -20526,9 +20904,9 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: &138 + default: &141 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -20586,8 +20964,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *136 - - &140 + - *139 + - &143 name: comment_id description: The unique identifier of the comment. in: path @@ -20600,12 +20978,12 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: *138 + default: *141 '304': *35 '404': *6 - '403': *139 + '403': *142 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20627,8 +21005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *136 - - *140 + - *139 + - *143 requestBody: required: true content: @@ -20654,9 +21032,9 @@ paths: description: Response content: application/json: - schema: *137 + schema: *140 examples: - default: *138 + default: *141 '404': *6 x-github: githubCloudOnly: false @@ -20673,8 +21051,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *136 - - *140 + - *139 + - *143 responses: '204': description: Response @@ -20697,7 +21075,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20798,7 +21176,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *136 + - *139 - *17 - *19 responses: @@ -20808,7 +21186,7 @@ paths: application/json: schema: type: array - items: *134 + items: *137 examples: default: value: @@ -20873,13 +21251,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *136 + - *139 responses: '201': description: Response content: application/json: - schema: *132 + schema: *135 examples: default: value: @@ -20950,7 +21328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *136 + - *139 responses: '204': description: Response if gist is starred @@ -20980,7 +21358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -21002,7 +21380,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *136 + - *139 responses: '204': description: Response @@ -21031,7 +21409,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *136 + - *139 - name: sha in: path required: true @@ -21042,9 +21420,9 @@ paths: description: Response content: application/json: - schema: *134 + schema: *137 examples: - default: *135 + default: *138 '422': *15 '404': *6 '403': *27 @@ -21413,7 +21791,7 @@ paths: - closed - all default: open - - &262 + - &266 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -21432,7 +21810,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - name: collab in: query required: false @@ -21462,9 +21840,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: &263 + default: &267 value: - id: 1 node_id: MDU6SXNzdWUx @@ -21744,7 +22122,7 @@ paths: application/json: schema: type: array - items: *142 + items: *145 examples: default: value: @@ -22041,7 +22419,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &143 + X-CommonMarker-Version: &146 example: 0.17.4 schema: type: string @@ -22096,7 +22474,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *143 + X-CommonMarker-Version: *146 content: text/html: schema: @@ -22125,7 +22503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &146 + - &149 name: account_id description: account_id parameter in: path @@ -22137,7 +22515,7 @@ paths: description: Response content: application/json: - schema: &145 + schema: &148 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -22171,7 +22549,7 @@ paths: - 'null' id: type: integer - plan: &144 + plan: &147 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -22274,7 +22652,7 @@ paths: - 'null' updated_at: type: string - plan: *144 + plan: *147 required: - url - id @@ -22282,7 +22660,7 @@ paths: - login - marketplace_purchase examples: - default: &147 + default: &150 value: url: https://api.github.com/orgs/github type: Organization @@ -22367,9 +22745,9 @@ paths: application/json: schema: type: array - items: *144 + items: *147 examples: - default: &148 + default: &151 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -22409,14 +22787,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &149 + - &152 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &150 + - &153 name: sort description: The property to sort the results by. in: query @@ -22446,9 +22824,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: &151 + default: &154 value: - url: https://api.github.com/orgs/github type: Organization @@ -22522,15 +22900,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *146 + - *149 responses: '200': description: Response content: application/json: - schema: *145 + schema: *148 examples: - default: *147 + default: *150 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -22562,9 +22940,9 @@ paths: application/json: schema: type: array - items: *144 + items: *147 examples: - default: *148 + default: *151 headers: Link: *37 '401': *23 @@ -22587,8 +22965,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *149 - - *150 + - *152 + - *153 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -22608,9 +22986,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *151 + default: *154 headers: Link: *37 '401': *23 @@ -22875,14 +23253,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: - - &338 + - &346 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &339 + - &347 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -22899,7 +23277,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -22953,7 +23331,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &352 + '301': &360 description: Moved permanently content: application/json: @@ -22975,7 +23353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &559 name: all description: If `true`, show notifications marked as read. in: query @@ -22983,7 +23361,7 @@ paths: schema: type: boolean default: false - - &552 + - &560 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -22992,8 +23370,8 @@ paths: schema: type: boolean default: false - - *131 - - &553 + - *134 + - &561 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: @@ -23018,14 +23396,14 @@ paths: application/json: schema: type: array - items: &153 + items: &156 title: Thread description: Thread type: object properties: id: type: string - repository: &183 + repository: &186 title: Minimal Repository description: Minimal Repository type: object @@ -23364,7 +23742,7 @@ paths: type: boolean examples: - false - security_and_analysis: &294 + security_and_analysis: &298 type: - object - 'null' @@ -23519,7 +23897,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &562 value: - id: '1' repository: @@ -23685,7 +24063,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &154 + - &157 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -23699,7 +24077,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -23802,7 +24180,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *154 + - *157 responses: '205': description: Reset Content @@ -23825,7 +24203,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *154 + - *157 responses: '204': description: No content @@ -23848,13 +24226,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *154 + - *157 responses: '200': description: Response content: application/json: - schema: &155 + schema: &158 title: Thread Subscription description: Thread Subscription type: object @@ -23898,7 +24276,7 @@ paths: - url - subscribed examples: - default: &156 + default: &159 value: subscribed: true ignored: false @@ -23929,7 +24307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *154 + - *157 requestBody: required: false content: @@ -23950,9 +24328,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *156 + default: *159 '304': *35 '403': *27 '401': *23 @@ -23975,7 +24353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *154 + - *157 responses: '204': description: Response @@ -24072,7 +24450,7 @@ paths: type: array items: *56 examples: - default: &686 + default: &694 value: - login: github id: 1 @@ -24137,7 +24515,7 @@ paths: - 3 custom_roles: type: array - items: &220 + items: &223 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -24186,7 +24564,7 @@ paths: - created_at - updated_at examples: - default: &221 + default: &224 value: id: 8030 name: Security Engineer @@ -24232,29 +24610,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - - &163 + - &166 name: org description: The organization name. The name is not case sensitive. in: path required: true schema: type: string - - *157 - - *158 - - *159 - *160 + - *161 + - *162 + - *163 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '400': *14 '403': *27 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24280,13 +24658,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &164 + schema: &167 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -24656,7 +25034,7 @@ paths: - updated_at - archived_at examples: - default-response: &165 + default-response: &168 value: login: github id: 1 @@ -24749,7 +25127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *163 + - *166 requestBody: required: false content: @@ -24973,17 +25351,17 @@ paths: description: Response content: application/json: - schema: *164 + schema: *167 examples: - default: *165 + default: *168 '422': description: Validation failed content: application/json: schema: oneOf: - - *166 - - *167 + - *169 + - *170 '409': *90 x-github: githubCloudOnly: false @@ -25007,7 +25385,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *163 + - *166 responses: '202': *91 '404': *6 @@ -25032,15 +25410,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *168 + schema: *171 examples: - default: *169 + default: *172 headers: Link: *37 x-github: @@ -25063,7 +25441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25081,7 +25459,7 @@ paths: type: integer repository_cache_usages: type: array - items: &357 + items: &365 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25139,7 +25517,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25159,7 +25537,7 @@ paths: type: array items: *39 examples: - default: *170 + default: *173 headers: Link: *37 x-github: @@ -25179,7 +25557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -25273,7 +25651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25309,7 +25687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25344,15 +25722,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *171 + schema: *174 examples: - default: *172 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25370,7 +25748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25388,7 +25766,7 @@ paths: type: array items: *42 examples: - default: *173 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25406,7 +25784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25450,7 +25828,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 responses: '200': @@ -25479,7 +25857,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 requestBody: required: true @@ -25543,7 +25921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *44 responses: '202': @@ -25572,13 +25950,13 @@ 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-an-organization parameters: - - *163 + - *166 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &174 + schema: &177 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -25592,7 +25970,7 @@ paths: required: - include_claim_keys examples: - default: &175 + default: &178 value: include_claim_keys: - repo @@ -25614,20 +25992,20 @@ 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-an-organization parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: *174 + schema: *177 examples: - default: *175 + default: *178 responses: '201': description: Empty response content: application/json: - schema: &194 + schema: &197 title: Empty Object description: An object without any properties. type: object @@ -25657,7 +26035,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -25666,7 +26044,7 @@ paths: schema: type: object properties: - enabled_repositories: &177 + enabled_repositories: &180 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -25680,7 +26058,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *46 - selected_actions_url: *176 + selected_actions_url: *179 required: - enabled_repositories examples: @@ -25709,7 +26087,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -25720,7 +26098,7 @@ paths: schema: type: object properties: - enabled_repositories: *177 + enabled_repositories: *180 allowed_actions: *46 required: - enabled_repositories @@ -25748,7 +26126,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -25768,7 +26146,7 @@ paths: type: array items: *61 examples: - default: &680 + default: &688 value: total_count: 1 repositories: @@ -25908,7 +26286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -25952,8 +26330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *163 - - &178 + - *166 + - &181 name: repository_id description: The unique identifier of the repository. in: path @@ -25981,8 +26359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *163 - - *178 + - *166 + - *181 responses: '204': description: Response @@ -26005,7 +26383,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -26036,7 +26414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -26068,13 +26446,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: default: *52 x-github: @@ -26097,7 +26475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Success response @@ -26108,7 +26486,7 @@ paths: required: false content: application/json: - schema: *180 + schema: *183 examples: default: *52 x-github: @@ -26130,7 +26508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *163 + - *166 - *17 - *19 - name: visible_to_repository @@ -26155,7 +26533,7 @@ paths: type: number runner_groups: type: array - items: &181 + items: &184 type: object properties: id: @@ -26272,7 +26650,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -26345,9 +26723,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *184 examples: - default: &182 + default: &185 value: id: 2 name: octo-runner-group @@ -26382,14 +26760,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 - *55 responses: '200': description: Response content: application/json: - schema: *181 + schema: *184 examples: default: value: @@ -26425,7 +26803,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -26482,9 +26860,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *184 examples: - default: *182 + default: *185 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26503,7 +26881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *163 + - *166 - *55 responses: '204': @@ -26527,7 +26905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *17 - *19 @@ -26548,7 +26926,7 @@ paths: type: array items: *39 examples: - default: *170 + default: *173 headers: Link: *37 x-github: @@ -26570,7 +26948,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - *19 - *17 @@ -26589,9 +26967,9 @@ paths: type: number repositories: type: array - items: *183 + items: *186 examples: - default: &672 + default: &680 value: total_count: 1 repositories: @@ -26843,7 +27221,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -26888,9 +27266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - - *178 + - *181 responses: '204': description: Response @@ -26912,9 +27290,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *163 + - *166 - *55 - - *178 + - *181 responses: '204': description: Response @@ -26937,7 +27315,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *17 - *19 @@ -26979,7 +27357,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *163 + - *166 - *55 requestBody: required: true @@ -27024,7 +27402,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *58 responses: @@ -27048,7 +27426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *163 + - *166 - *55 - *58 responses: @@ -27080,7 +27458,7 @@ paths: in: query schema: type: string - - *163 + - *166 - *17 - *19 responses: @@ -27124,7 +27502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -27132,9 +27510,9 @@ paths: application/json: schema: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27156,7 +27534,7 @@ 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-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -27199,7 +27577,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *186 + '201': *189 '404': *6 '422': *7 x-github: @@ -27229,7 +27607,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *163 + - *166 responses: '201': description: Response @@ -27237,7 +27615,7 @@ paths: application/json: schema: *62 examples: - default: *187 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27265,7 +27643,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *163 + - *166 responses: '201': description: Response @@ -27273,7 +27651,7 @@ paths: application/json: schema: *62 examples: - default: *188 + default: *191 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27295,7 +27673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *163 + - *166 - *58 responses: '200': @@ -27304,7 +27682,7 @@ paths: application/json: schema: *59 examples: - default: *189 + default: *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27325,7 +27703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *163 + - *166 - *58 responses: '204': @@ -27351,7 +27729,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 responses: '200': *64 @@ -27376,7 +27754,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 requestBody: required: true @@ -27425,7 +27803,7 @@ 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-an-organization parameters: - - *163 + - *166 - *58 requestBody: required: true @@ -27475,10 +27853,10 @@ 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-an-organization parameters: - - *163 + - *166 - *58 responses: - '200': *190 + '200': *193 '404': *6 x-github: githubCloudOnly: false @@ -27505,9 +27883,9 @@ 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-an-organization parameters: - - *163 + - *166 - *58 - - *191 + - *194 responses: '200': *64 '404': *6 @@ -27534,7 +27912,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -27552,7 +27930,7 @@ paths: type: integer secrets: type: array - items: &192 + items: &195 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -27627,13 +28005,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &377 + schema: &385 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27668,7 +28046,7 @@ paths: - key_id - key examples: - default: &378 + default: &386 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27693,8 +28071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *163 - - &193 + - *166 + - &196 name: secret_name description: The name of the secret. in: path @@ -27706,7 +28084,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: default: value: @@ -27736,8 +28114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -27792,7 +28170,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -27818,8 +28196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -27845,8 +28223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -27864,9 +28242,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: &197 + default: &200 value: total_count: 1 repositories: @@ -27958,8 +28336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -28011,8 +28389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -28045,8 +28423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -28078,8 +28456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *163 - - &362 + - *166 + - &370 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)." @@ -28103,7 +28481,7 @@ paths: type: integer variables: type: array - items: &195 + items: &198 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -28193,7 +28571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *163 + - *166 requestBody: required: true content: @@ -28241,7 +28619,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -28266,8 +28644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *163 - - &196 + - *166 + - &199 name: name description: The name of the variable. in: path @@ -28279,7 +28657,7 @@ paths: description: Response content: application/json: - schema: *195 + schema: *198 examples: default: value: @@ -28309,8 +28687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 requestBody: required: true content: @@ -28372,8 +28750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 responses: '204': description: Response @@ -28399,8 +28777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - *19 - *17 responses: @@ -28418,9 +28796,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28446,8 +28824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 requestBody: required: true content: @@ -28496,8 +28874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - name: repository_id in: path required: true @@ -28531,8 +28909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *163 - - *196 + - *166 + - *199 - name: repository_id in: path required: true @@ -28563,7 +28941,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -28590,11 +28968,11 @@ paths: required: true content: application/json: - schema: *198 + schema: *201 examples: default: *67 parameters: - - *163 + - *166 responses: '200': description: Response @@ -28618,7 +28996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -28646,7 +29024,7 @@ paths: - *17 - *80 - *81 - - *163 + - *166 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -28689,7 +29067,7 @@ paths: bundle_url: type: string examples: - default: &391 + default: &399 value: attestations: - bundle: @@ -28807,7 +29185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *163 + - *166 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -28815,10 +29193,10 @@ paths: required: false schema: type: string - - *199 - - *200 - - *201 - *202 + - *203 + - *204 + - *205 - *17 responses: '200': @@ -28827,9 +29205,9 @@ paths: application/json: schema: type: array - items: *203 + items: *206 examples: - default: *204 + default: *207 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -28846,7 +29224,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -28858,7 +29236,7 @@ paths: type: array items: *4 examples: - default: &264 + default: &268 value: - login: octocat id: 1 @@ -28896,8 +29274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *163 - - &205 + - *166 + - &208 name: username description: The handle for the GitHub user account. in: path @@ -28928,8 +29306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -28949,8 +29327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -28976,14 +29354,14 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *163 - - &298 + - *166 + - &302 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - &408 + - &416 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -28991,7 +29369,7 @@ paths: required: false schema: type: string - - &409 + - &417 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -28999,7 +29377,7 @@ paths: required: false schema: type: string - - &299 + - &303 name: time_period description: |- The time period to filter by. @@ -29015,7 +29393,7 @@ paths: - week - month default: day - - &410 + - &418 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -29040,7 +29418,7 @@ paths: application/json: schema: type: array - items: &411 + items: &419 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -29201,7 +29579,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &412 + default: &420 value: - id: 21 number: 42 @@ -29287,9 +29665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *163 - - *206 - - *207 + - *166 + - *209 + - *210 - *80 - *81 - *19 @@ -29300,7 +29678,7 @@ paths: be returned. in: query required: false - schema: *208 + schema: *211 - name: sort description: The property by which to sort the results. in: query @@ -29316,7 +29694,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &430 type: string description: Severity of a code scanning alert. enum: @@ -29334,13 +29712,13 @@ paths: application/json: schema: type: array - items: *209 + items: *212 examples: - default: *210 + default: *213 headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29362,7 +29740,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *163 + - *166 - name: target_type in: query description: The target type of the code security configuration @@ -29469,7 +29847,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *163 + - *166 requestBody: required: true content: @@ -29644,7 +30022,7 @@ paths: application/json: schema: *86 examples: - default: *211 + default: *214 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29666,15 +30044,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *213 + default: *216 '304': *35 '403': *27 '404': *6 @@ -29700,7 +30078,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *163 + - *166 requestBody: required: true content: @@ -29723,7 +30101,7 @@ paths: - 32 - 91 responses: - '204': *108 + '204': *111 '400': *14 '403': *27 '404': *6 @@ -29749,7 +30127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *163 + - *166 - *88 responses: '200': @@ -29758,7 +30136,7 @@ paths: application/json: schema: *86 examples: - default: *211 + default: *214 '304': *35 '403': *27 '404': *6 @@ -29782,7 +30160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -29990,10 +30368,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *163 + - *166 - *88 responses: - '204': *108 + '204': *111 '400': *14 '403': *27 '404': *6 @@ -30021,7 +30399,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -30085,7 +30463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *163 + - *166 - *88 requestBody: required: true @@ -30131,7 +30509,7 @@ paths: default: value: default_for_new_repos: all - configuration: *211 + configuration: *214 '403': *27 '404': *6 x-github: @@ -30155,7 +30533,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *163 + - *166 - *88 - name: per_page description: The number of results per page (max 100). For more information, @@ -30184,13 +30562,13 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *215 + repository: *218 '403': *27 '404': *6 x-github: @@ -30214,7 +30592,7 @@ paths: parameters: - *17 - *19 - - *163 + - *166 responses: '200': description: Response @@ -30230,7 +30608,7 @@ paths: type: integer codespaces: type: array - items: &265 + items: &269 type: object title: Codespace description: A codespace. @@ -30261,11 +30639,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *183 + repository: *186 machine: anyOf: - type: 'null' - - &451 + - &459 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -30552,7 +30930,7 @@ paths: - pulls_url - recent_folders examples: - default: &266 + default: &270 value: total_count: 3 codespaces: @@ -30984,7 +31362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *163 + - *166 deprecated: true requestBody: required: true @@ -31051,7 +31429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *163 + - *166 deprecated: true requestBody: required: true @@ -31106,7 +31484,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *163 + - *166 requestBody: required: true content: @@ -31158,7 +31536,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -31176,7 +31554,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &219 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -31217,7 +31595,7 @@ paths: - updated_at - visibility examples: - default: &452 + default: &460 value: total_count: 2 secrets: @@ -31249,13 +31627,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &453 + schema: &461 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -31290,7 +31668,7 @@ paths: - key_id - key examples: - default: &454 + default: &462 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31313,16 +31691,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: Response content: application/json: - schema: *216 + schema: *219 examples: - default: &456 + default: &464 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -31349,8 +31727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -31405,7 +31783,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -31431,8 +31809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -31457,8 +31835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -31476,9 +31854,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 '404': *6 x-github: githubCloudOnly: false @@ -31500,8 +31878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -31551,8 +31929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -31585,8 +31963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -31625,7 +32003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *163 + - *166 responses: '200': description: OK @@ -31768,7 +32146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *163 + - *166 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -31791,9 +32169,9 @@ paths: currently being billed. seats: type: array - items: *217 + items: *220 examples: - default: *218 + default: *221 headers: Link: *37 '500': *93 @@ -31829,7 +32207,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -31907,7 +32285,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -31987,7 +32365,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -32064,7 +32442,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *163 + - *166 requestBody: content: application/json: @@ -32145,7 +32523,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *163 + - *166 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -32177,13 +32555,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32214,7 +32592,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-organization-members parameters: - - *163 + - *166 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -32246,9 +32624,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: *219 + default: *222 '500': *93 '401': *23 '403': *27 @@ -32274,7 +32652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -32433,7 +32811,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *163 + - *166 - name: credential_id in: path required: true @@ -32464,7 +32842,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *163 + - *166 responses: '200': description: Response - list of custom role names @@ -32480,7 +32858,7 @@ paths: - 3 custom_roles: type: array - items: *220 + items: *223 examples: default: value: @@ -32567,12 +32945,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: &223 + schema: &226 type: object properties: name: @@ -32614,9 +32992,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32640,8 +33018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *163 - - &222 + - *166 + - &225 name: role_id description: The unique identifier of the role. in: path @@ -32653,9 +33031,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 x-github: githubCloudOnly: true @@ -32677,13 +33055,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: application/json: - schema: &224 + schema: &227 type: object properties: name: @@ -32722,9 +33100,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32748,8 +33126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -32777,12 +33155,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -32796,9 +33174,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32828,16 +33206,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 x-github: githubCloudOnly: true @@ -32865,13 +33243,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -32886,9 +33264,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '422': *15 '404': *6 x-github: @@ -32918,8 +33296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -32947,18 +33325,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *163 - - *225 - - *226 - - *227 + - *166 - *228 - *229 - *230 + - *231 + - *232 + - *233 + - *234 - *82 - *80 - *81 - - *231 - - *232 + - *235 + - *236 - *17 responses: '200': @@ -32967,9 +33346,9 @@ paths: application/json: schema: type: array - items: *233 + items: *237 examples: - default: *234 + default: *238 '304': *35 '400': *14 '403': *27 @@ -32995,7 +33374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33013,7 +33392,7 @@ paths: type: integer secrets: type: array - items: &235 + items: &239 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -33086,13 +33465,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: &479 + schema: &487 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -33111,7 +33490,7 @@ paths: - key_id - key examples: - default: &480 + default: &488 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33134,14 +33513,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: Response content: application/json: - schema: *235 + schema: *239 examples: default: value: @@ -33169,8 +33548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -33225,7 +33604,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -33249,8 +33628,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -33274,8 +33653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - *19 - *17 responses: @@ -33293,9 +33672,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *197 + default: *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33316,8 +33695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -33367,8 +33746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -33399,8 +33778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *163 - - *193 + - *166 + - *196 - name: repository_id in: path required: true @@ -33430,7 +33809,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -33438,7 +33817,7 @@ paths: application/json: schema: type: array - items: &276 + items: &280 title: Package description: A software package type: object @@ -33491,7 +33870,7 @@ paths: repository: anyOf: - type: 'null' - - *183 + - *186 created_at: type: string format: date-time @@ -33509,7 +33888,7 @@ paths: - created_at - updated_at examples: - default: &277 + default: &281 value: - id: 197 name: hello_docker @@ -33587,7 +33966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33597,7 +33976,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: 200-response: value: @@ -33667,7 +34046,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *163 + - *166 - name: group_id description: The unique identifier of the group. in: path @@ -33693,7 +34072,7 @@ paths: description: Response content: application/json: - schema: &333 + schema: &341 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -33783,7 +34162,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &334 + default: &342 value: group_id: '123' group_name: Octocat admins @@ -33821,7 +34200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-in-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -33838,7 +34217,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &339 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -33878,7 +34257,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &332 + default: &340 value: groups: - group_id: '123' @@ -33912,7 +34291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *163 + - *166 - *17 - *19 responses: @@ -33922,7 +34301,7 @@ paths: application/json: schema: type: array - items: &258 + items: &262 title: Organization Invitation description: Organization Invitation type: object @@ -33976,7 +34355,7 @@ paths: - invitation_teams_url - node_id examples: - default: &259 + default: &263 value: - id: 1 login: monalisa @@ -34035,7 +34414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -34043,7 +34422,7 @@ paths: application/json: schema: type: array - items: &295 + items: &299 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -34057,7 +34436,7 @@ paths: - name - description examples: - default: &296 + default: &300 value: - name: add_assignee description: Assign or remove a user @@ -34088,7 +34467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *163 + - *166 - *17 - *19 responses: @@ -34098,7 +34477,7 @@ paths: application/json: schema: type: array - items: &236 + items: &240 title: Org Hook description: Org Hook type: object @@ -34219,7 +34598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *163 + - *166 requestBody: required: true content: @@ -34281,9 +34660,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: - default: &237 + default: &241 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -34327,8 +34706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *163 - - &238 + - *166 + - &242 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. @@ -34341,9 +34720,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: - default: *237 + default: *241 '404': *6 x-github: githubCloudOnly: false @@ -34364,8 +34743,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 requestBody: required: false content: @@ -34411,7 +34790,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *240 examples: default: value: @@ -34450,8 +34829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 responses: '204': description: Response @@ -34476,8 +34855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *163 - - *238 + - *166 + - *242 responses: '200': description: Response @@ -34505,8 +34884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *163 - - *238 + - *166 + - *242 requestBody: required: false content: @@ -34554,10 +34933,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *17 - - *239 + - *243 responses: '200': description: Response @@ -34565,9 +34944,9 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: - default: *241 + default: *245 '400': *14 '422': *15 x-github: @@ -34590,17 +34969,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *16 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 '400': *14 '422': *15 x-github: @@ -34623,8 +35002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 - *16 responses: '202': *91 @@ -34650,8 +35029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *163 - - *238 + - *166 + - *242 responses: '204': description: Response @@ -34673,8 +35052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *163 - - &248 + - *166 + - &252 name: actor_type in: path description: The type of the actor @@ -34687,14 +35066,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &249 + - &253 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &244 + - &248 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`.' @@ -34702,7 +35081,7 @@ paths: required: true schema: type: string - - &245 + - &249 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) @@ -34796,13 +35175,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *163 - - *244 - - *245 + - *166 + - *248 + - *249 - *19 - *17 - *82 - - &254 + - &258 name: sort description: The property to sort the results by. in: query @@ -34881,15 +35260,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *163 - - *244 - - *245 + - *166 + - *248 + - *249 responses: '200': description: Response content: application/json: - schema: &246 + schema: &250 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -34905,7 +35284,7 @@ paths: type: integer format: int64 examples: - default: &247 + default: &251 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -34925,24 +35304,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *163 - - &250 + - *166 + - &254 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *244 - - *245 + - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *250 examples: - default: *247 + default: *251 x-github: enabledForGitHubApps: true category: orgs @@ -34960,19 +35339,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *163 - - *244 - - *245 + - *166 - *248 - *249 + - *252 + - *253 responses: '200': description: Response content: application/json: - schema: *246 + schema: *250 examples: - default: *247 + default: *251 x-github: enabledForGitHubApps: true category: orgs @@ -34989,10 +35368,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *163 - - *244 - - *245 - - &251 + - *166 + - *248 + - *249 + - &255 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -35005,7 +35384,7 @@ paths: description: Response content: application/json: - schema: &252 + schema: &256 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -35021,7 +35400,7 @@ paths: type: integer format: int64 examples: - default: &253 + default: &257 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -35057,19 +35436,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *163 - - *250 - - *244 - - *245 - - *251 + - *166 + - *254 + - *248 + - *249 + - *255 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - default: *253 + default: *257 x-github: enabledForGitHubApps: true category: orgs @@ -35086,20 +35465,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *163 + - *166 + - *252 + - *253 - *248 - *249 - - *244 - - *245 - - *251 + - *255 responses: '200': description: Response content: application/json: - schema: *252 + schema: *256 examples: - default: *253 + default: *257 x-github: enabledForGitHubApps: true category: orgs @@ -35116,14 +35495,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *163 - - *250 - - *244 - - *245 + - *166 + - *254 + - *248 + - *249 - *19 - *17 - *82 - - *254 + - *258 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -35199,7 +35578,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *163 + - *166 responses: '200': description: Response @@ -35207,7 +35586,7 @@ paths: application/json: schema: *20 examples: - default: &518 + default: &526 value: id: 1 account: @@ -35276,7 +35655,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -35365,7 +35744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -35373,12 +35752,12 @@ paths: application/json: schema: anyOf: - - &256 + - &260 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &255 + limit: &259 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -35406,7 +35785,7 @@ paths: properties: {} additionalProperties: false examples: - default: &257 + default: &261 value: limit: collaborators_only origin: organization @@ -35430,18 +35809,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: application/json: - schema: &519 + schema: &527 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *255 + limit: *259 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -35466,9 +35845,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: - default: *257 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -35486,7 +35865,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *163 + - *166 responses: '204': description: Response @@ -35512,7 +35891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *163 + - *166 - *17 - *19 - name: role @@ -35546,9 +35925,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 '404': *6 @@ -35572,7 +35951,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *163 + - *166 requestBody: required: false content: @@ -35626,7 +36005,7 @@ paths: description: Response content: application/json: - schema: *258 + schema: *262 examples: default: value: @@ -35682,8 +36061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *163 - - &260 + - *166 + - &264 name: invitation_id description: The unique identifier of the invitation. in: path @@ -35716,8 +36095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *163 - - *260 + - *166 + - *264 - *17 - *19 responses: @@ -35727,9 +36106,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: &275 + default: &279 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -35774,7 +36153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *163 + - *166 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -35804,7 +36183,7 @@ paths: - closed - all default: open - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -35817,7 +36196,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -35827,9 +36206,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *263 + default: *267 headers: Link: *37 '404': *6 @@ -35851,7 +36230,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *163 + - *166 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -35887,7 +36266,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '422': *15 @@ -35907,8 +36286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response if requester is an organization member and user is @@ -35939,8 +36318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -35966,8 +36345,8 @@ paths: parameters: - *17 - *19 - - *163 - - *205 + - *166 + - *208 responses: '200': description: Response @@ -35983,9 +36362,9 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: - default: *266 + default: *270 '304': *35 '500': *93 '401': *23 @@ -36010,9 +36389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *163 - - *205 - - &267 + - *166 + - *208 + - &271 name: codespace_name in: path required: true @@ -36045,17 +36424,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *163 - - *205 - - *267 + - *166 + - *208 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: &450 + default: &458 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -36228,14 +36607,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *217 + schema: *220 examples: default: value: @@ -36303,14 +36682,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '200': description: Response content: application/json: - schema: &268 + schema: &272 title: Org Membership description: Org Membership type: object @@ -36363,7 +36742,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &269 + response-if-user-has-an-active-admin-membership-with-organization: &273 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36431,8 +36810,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 requestBody: required: false content: @@ -36460,9 +36839,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *272 examples: - response-if-user-already-had-membership-with-organization: *269 + response-if-user-already-had-membership-with-organization: *273 '422': *15 '403': *27 x-github: @@ -36483,8 +36862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -36509,7 +36888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *163 + - *166 - *17 - *19 - name: exclude @@ -36531,7 +36910,7 @@ paths: application/json: schema: type: array - items: &270 + items: &274 title: Migration description: A migration. type: object @@ -36788,7 +37167,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *163 + - *166 requestBody: required: true content: @@ -36869,7 +37248,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -37047,8 +37426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *163 - - &271 + - *166 + - &275 name: migration_id description: The unique identifier of the migration. in: path @@ -37076,7 +37455,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -37245,8 +37624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *163 - - *271 + - *166 + - *275 responses: '302': description: Response @@ -37267,8 +37646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *163 - - *271 + - *166 + - *275 responses: '204': description: Response @@ -37291,9 +37670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *163 - - *271 - - &685 + - *166 + - *275 + - &693 name: repo_name description: repo_name parameter in: path @@ -37320,8 +37699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *163 - - *271 + - *166 + - *275 - *17 - *19 responses: @@ -37331,9 +37710,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: &282 + default: &286 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37472,7 +37851,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -37526,7 +37905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response - list of organization roles @@ -37542,7 +37921,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &272 + items: &276 title: Organization Role description: Organization roles type: object @@ -37704,7 +38083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *163 + - *166 requestBody: required: true content: @@ -37751,7 +38130,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -37802,8 +38181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -37828,9 +38207,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *163 - - *273 - - *222 + - *166 + - *277 + - *225 responses: '204': description: Response @@ -37859,9 +38238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *163 - - *273 - - *222 + - *166 + - *277 + - *225 responses: '204': description: Response @@ -37886,8 +38265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -37912,9 +38291,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *163 - - *205 - - *222 + - *166 + - *208 + - *225 responses: '204': description: Response @@ -37944,9 +38323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *163 - - *205 - - *222 + - *166 + - *208 + - *225 responses: '204': description: Response @@ -37974,14 +38353,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '200': description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -38038,8 +38417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *163 - - *222 + - *166 + - *225 requestBody: required: true content: @@ -38078,7 +38457,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *276 examples: default: value: @@ -38131,8 +38510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *163 - - *222 + - *166 + - *225 responses: '204': description: Response @@ -38157,8 +38536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 - *17 - *19 responses: @@ -38237,7 +38616,7 @@ paths: parent: anyOf: - type: 'null' - - *274 + - *278 required: - id - node_id @@ -38251,7 +38630,7 @@ paths: - slug - parent examples: - default: *275 + default: *279 headers: Link: *37 '404': @@ -38280,8 +38659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *163 - - *222 + - *166 + - *225 - *17 - *19 responses: @@ -38310,7 +38689,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *274 + items: *278 name: type: - string @@ -38427,7 +38806,7 @@ paths: - type - url examples: - default: *264 + default: *268 headers: Link: *37 '404': @@ -38451,7 +38830,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *163 + - *166 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -38475,7 +38854,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -38500,8 +38879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *163 - - *205 + - *166 + - *208 requestBody: required: false content: @@ -38558,8 +38937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -38616,8 +38995,8 @@ paths: - docker - nuget - container - - *163 - - &687 + - *166 + - &695 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38653,12 +39032,12 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *277 + default: *281 '403': *27 '401': *23 - '400': &689 + '400': &697 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38680,7 +39059,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &278 + - &282 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 @@ -38698,20 +39077,20 @@ paths: - docker - nuget - container - - &279 + - &283 name: package_name description: The name of the package. in: path required: true schema: type: string - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: default: value: @@ -38763,9 +39142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 responses: '204': description: Response @@ -38797,9 +39176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 - name: token description: package token schema: @@ -38831,9 +39210,9 @@ 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: - - *278 - - *279 - - *163 + - *282 + - *283 + - *166 - *19 - *17 - name: state @@ -38853,7 +39232,7 @@ paths: application/json: schema: type: array - items: &280 + items: &284 title: Package Version description: A version of a software package type: object @@ -38988,10 +39367,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: - - *278 - - *279 - - *163 - - &281 + - *282 + - *283 + - *166 + - &285 name: package_version_id description: Unique identifier of the package version. in: path @@ -39003,7 +39382,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -39039,10 +39418,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *278 - - *279 - - *163 - - *281 + - *282 + - *283 + - *166 + - *285 responses: '204': description: Response @@ -39074,10 +39453,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *278 - - *279 - - *163 - - *281 + - *282 + - *283 + - *166 + - *285 responses: '204': description: Response @@ -39104,10 +39483,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *163 + - *166 - *17 - *19 - - &283 + - &287 name: sort description: The property by which to sort the results. in: query @@ -39118,7 +39497,7 @@ paths: - created_at default: created_at - *82 - - &284 + - &288 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39130,7 +39509,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &285 + - &289 name: repository description: The name of the repository to use to filter the results. in: query @@ -39139,7 +39518,7 @@ paths: type: string examples: - Hello-World - - &286 + - &290 name: permission description: The permission to use to filter the results. in: query @@ -39148,7 +39527,7 @@ paths: type: string examples: - issues_read - - &287 + - &291 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) @@ -39158,7 +39537,7 @@ paths: schema: type: string format: date-time - - &288 + - &292 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) @@ -39324,7 +39703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *163 + - *166 requestBody: required: true content: @@ -39391,7 +39770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *163 + - *166 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -39432,7 +39811,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39453,7 +39832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *163 + - *166 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -39473,9 +39852,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -39498,16 +39877,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *163 + - *166 - *17 - *19 - - *283 - - *82 - - *284 - - *285 - - *286 - *287 + - *82 - *288 + - *289 + - *290 + - *291 + - *292 responses: '500': *93 '422': *15 @@ -39658,7 +40037,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *163 + - *166 requestBody: required: true content: @@ -39718,7 +40097,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *163 + - *166 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -39748,7 +40127,7 @@ paths: responses: '500': *93 '404': *6 - '204': *108 + '204': *111 '403': *27 '422': *15 x-github: @@ -39770,7 +40149,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *163 + - *166 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -39789,9 +40168,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -39817,7 +40196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -39835,7 +40214,7 @@ paths: type: integer configurations: type: array - items: &289 + items: &293 title: Organization private registry description: Private registry configuration for an organization type: object @@ -39914,7 +40293,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -40047,7 +40426,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &290 + org-private-registry-with-selected-visibility: &294 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40090,7 +40469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -40142,16 +40521,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *289 + schema: *293 examples: - default: *290 + default: *294 '404': *6 x-github: githubCloudOnly: false @@ -40174,8 +40553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 requestBody: required: true content: @@ -40255,8 +40634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *163 - - *193 + - *166 + - *196 responses: '204': description: Response @@ -40281,7 +40660,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-organization-projects parameters: - - *163 + - *166 - name: state description: Indicates the state of the projects to return. in: query @@ -40302,7 +40681,7 @@ paths: application/json: schema: type: array - items: &291 + items: &295 title: Project description: Projects are a way to organize columns and cards of work. @@ -40455,7 +40834,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-an-organization-project parameters: - - *163 + - *166 requestBody: required: true content: @@ -40481,7 +40860,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: default: value: @@ -40519,7 +40898,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &349 + '410': &357 description: Gone content: application/json: @@ -40543,7 +40922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -40551,9 +40930,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -40576,7 +40955,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *163 + - *166 requestBody: required: true content: @@ -40587,7 +40966,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *104 + items: *107 minItems: 1 maxItems: 100 required: @@ -40617,9 +40996,9 @@ paths: application/json: schema: type: array - items: *104 + items: *107 examples: - default: *105 + default: *108 '403': *27 '404': *6 x-github: @@ -40640,16 +41019,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 responses: '200': description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -40672,13 +41051,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 requestBody: required: true content: application/json: - schema: *292 + schema: *296 examples: default: value: @@ -40694,9 +41073,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *107 examples: - default: *107 + default: *110 '403': *27 '404': *6 x-github: @@ -40719,10 +41098,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *163 - - *106 + - *166 + - *109 responses: - '204': *108 + '204': *111 '403': *27 '404': *6 x-github: @@ -40743,7 +41122,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *163 + - *166 - *17 - *19 - name: repository_query @@ -40784,7 +41163,7 @@ paths: - octocat/Hello-World properties: type: array - items: &293 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -40854,7 +41233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *163 + - *166 requestBody: required: true content: @@ -40874,7 +41253,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *293 + items: *297 required: - repository_names - properties @@ -40915,7 +41294,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *163 + - *166 - *17 - *19 responses: @@ -40927,7 +41306,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -40946,8 +41325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response if user is a public member @@ -40971,8 +41350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -40993,8 +41372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *163 - - *205 + - *166 + - *208 responses: '204': description: Response @@ -41018,7 +41397,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *163 + - *166 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -41065,9 +41444,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -41088,7 +41467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *163 + - *166 requestBody: required: true content: @@ -41271,7 +41650,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &359 title: Full Repository description: Full Repository type: object @@ -41717,7 +42096,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 organization: anyOf: - type: 'null' @@ -41736,7 +42115,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &469 + code_of_conduct: &477 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -41766,7 +42145,7 @@ paths: - key - name - html_url - security_and_analysis: *294 + security_and_analysis: *298 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -41850,7 +42229,7 @@ paths: - network_count - subscribers_count examples: - default: &353 + default: &361 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42368,7 +42747,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response @@ -42376,9 +42755,9 @@ paths: application/json: schema: type: array - items: *295 + items: *299 examples: - default: *296 + default: *300 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42400,10 +42779,10 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - *17 - *19 - - &600 + - &608 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42422,7 +42801,7 @@ paths: application/json: schema: type: array - items: *118 + items: *121 examples: default: value: @@ -42469,7 +42848,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 requestBody: description: Request body required: true @@ -42490,16 +42869,16 @@ paths: - push - repository default: branch - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *297 + items: *119 + conditions: *301 rules: type: array description: An array of rules within the ruleset. - items: *117 + items: *120 required: - name - enforcement @@ -42537,9 +42916,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: &300 + default: &304 value: id: 21 name: super cool ruleset @@ -42593,8 +42972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *163 - - &601 + - *166 + - &609 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 @@ -42604,16 +42983,16 @@ paths: schema: type: string x-multi-segment: true - - *298 - - *299 - - &602 + - *302 + - *303 + - &610 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 - - &603 + - &611 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -42633,7 +43012,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &612 title: Rule Suites description: Response type: array @@ -42689,7 +43068,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &605 + default: &613 value: - id: 21 actor_id: 12 @@ -42732,8 +43111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *163 - - &606 + - *166 + - &614 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42749,7 +43128,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &615 title: Rule Suite description: Response type: object @@ -42856,7 +43235,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &608 + default: &616 value: id: 21 actor_id: 12 @@ -42917,7 +43296,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -42929,9 +43308,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *300 + default: *304 '404': *6 '500': *93 put: @@ -42949,7 +43328,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -42975,16 +43354,16 @@ paths: - tag - push - repository - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *297 + items: *119 + conditions: *301 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -43019,9 +43398,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *300 + default: *304 '404': *6 '500': *93 delete: @@ -43039,7 +43418,7 @@ paths: category: orgs subcategory: rules parameters: - - *163 + - *166 - name: ruleset_id description: The ID of the ruleset. in: path @@ -43067,15 +43446,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *163 - - *301 - - *302 - - *303 - - *304 + - *166 + - *305 + - *306 + - *307 + - *308 - *82 - *19 - *17 - - &610 + - &618 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 @@ -43085,7 +43464,7 @@ paths: required: false schema: type: string - - &611 + - &619 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 @@ -43095,9 +43474,9 @@ paths: required: false schema: type: string - - *305 - - *306 - - *307 + - *309 + - *310 + - *311 responses: '200': description: Response @@ -43105,13 +43484,13 @@ paths: application/json: schema: type: array - items: *308 + items: *312 examples: - default: *309 + default: *313 headers: Link: *37 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43133,7 +43512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *163 + - *166 - *82 - name: sort description: The property to sort the results by. @@ -43177,7 +43556,7 @@ paths: application/json: schema: type: array - items: &618 + items: &626 description: A repository security advisory. type: object properties: @@ -43421,7 +43800,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 credits_detailed: type: - array @@ -43432,7 +43811,7 @@ paths: type: object properties: user: *4 - type: *310 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -43458,7 +43837,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *261 + items: *265 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -43496,7 +43875,7 @@ paths: - private_fork additionalProperties: false examples: - default: &619 + default: &627 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43875,7 +44254,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *163 + - *166 responses: '200': description: Response @@ -43883,9 +44262,9 @@ paths: application/json: schema: type: array - items: *274 + items: *278 examples: - default: *275 + default: *279 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43908,8 +44287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -43934,8 +44313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -43964,15 +44343,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *311 + schema: *315 examples: - default: *312 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -43996,7 +44375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *163 + - *166 - *17 - *19 responses: @@ -44004,9 +44383,9 @@ paths: description: Success content: application/json: - schema: *313 + schema: *317 examples: - default: *314 + default: *318 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44028,15 +44407,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *315 + schema: *319 examples: - default: *316 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44058,20 +44437,271 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *317 + schema: *321 examples: - default: *318 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - *166 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: *104 + examples: + default: *323 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + - *106 + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - *166 + - *106 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: *104 + examples: + default: *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - *166 + - *106 + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - *166 + - *324 + responses: + '200': + description: Response + content: + application/json: + schema: *325 + examples: + default: *326 + headers: + Link: *37 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team-sync/groups": get: summary: List IdP groups for an organization @@ -44083,7 +44713,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *163 + - *166 - *17 - name: page description: Page token @@ -44102,7 +44732,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &348 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -44154,7 +44784,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &341 + default: &349 value: groups: - group_id: '123' @@ -44199,8 +44829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -44232,13 +44862,13 @@ paths: application/json: schema: type: array - items: *123 + items: *126 examples: - default: *124 + default: *127 '500': *93 '403': *27 '404': *6 - '422': *125 + '422': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44272,8 +44902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -44305,9 +44935,9 @@ paths: application/json: schema: type: array - items: *126 + items: *129 examples: - default: *219 + default: *222 '500': *93 '401': *23 '403': *27 @@ -44329,7 +44959,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *163 + - *166 - *17 - *19 responses: @@ -44339,9 +44969,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 headers: Link: *37 '403': *27 @@ -44363,7 +44993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *163 + - *166 requestBody: required: true content: @@ -44435,7 +45065,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &327 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44509,7 +45139,7 @@ paths: parent: anyOf: - type: 'null' - - *274 + - *278 members_count: type: integer examples: @@ -44815,7 +45445,7 @@ paths: - repos_count - organization examples: - default: &320 + default: &328 value: id: 1 node_id: MDQ6VGVhbTE= @@ -44885,16 +45515,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 x-github: githubCloudOnly: false @@ -44915,8 +45545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: false content: @@ -44979,16 +45609,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '201': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 '422': *15 '403': *27 @@ -45013,8 +45643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -45040,8 +45670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - - *163 - - *273 + - *166 + - *277 - *82 - *17 - *19 @@ -45058,7 +45688,7 @@ paths: application/json: schema: type: array - items: &321 + items: &329 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -45149,7 +45779,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *129 + reactions: *132 required: - author - body @@ -45169,7 +45799,7 @@ paths: - updated_at - url examples: - default: &659 + default: &667 value: - author: login: octocat @@ -45243,8 +45873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -45278,9 +45908,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: &322 + default: &330 value: author: login: octocat @@ -45352,9 +45982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - - *163 - - *273 - - &323 + - *166 + - *277 + - &331 name: discussion_number description: The number that identifies the discussion. in: path @@ -45366,9 +45996,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45390,9 +46020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: false content: @@ -45415,9 +46045,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: &660 + default: &668 value: author: login: octocat @@ -45487,9 +46117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 responses: '204': description: Response @@ -45515,9 +46145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 - *82 - *17 - *19 @@ -45528,7 +46158,7 @@ paths: application/json: schema: type: array - items: &324 + items: &332 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45593,7 +46223,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *129 + reactions: *132 required: - author - body @@ -45608,7 +46238,7 @@ paths: - updated_at - url examples: - default: &661 + default: &669 value: - author: login: octocat @@ -45676,9 +46306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: true content: @@ -45700,9 +46330,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: &325 + default: &333 value: author: login: octocat @@ -45768,10 +46398,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - &326 + - *166 + - *277 + - *331 + - &334 name: comment_number description: The number that identifies the comment. in: path @@ -45783,9 +46413,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45807,10 +46437,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 requestBody: required: true content: @@ -45832,9 +46462,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: &662 + default: &670 value: author: login: octocat @@ -45898,10 +46528,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 responses: '204': description: Response @@ -45927,10 +46557,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 - 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. @@ -45956,7 +46586,7 @@ paths: application/json: schema: type: array - items: &327 + items: &335 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46000,7 +46630,7 @@ paths: - content - created_at examples: - default: &329 + default: &337 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46050,10 +46680,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - - *163 - - *273 - - *323 - - *326 + - *166 + - *277 + - *331 + - *334 requestBody: required: true content: @@ -46086,9 +46716,9 @@ paths: team discussion comment content: application/json: - schema: *327 + schema: *335 examples: - default: &328 + default: &336 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46117,9 +46747,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46142,11 +46772,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - - *163 - - *273 - - *323 - - *326 - - &330 + - *166 + - *277 + - *331 + - *334 + - &338 name: reaction_id description: The unique identifier of the reaction. in: path @@ -46178,9 +46808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 - 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. @@ -46206,9 +46836,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -46234,9 +46864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - - *163 - - *273 - - *323 + - *166 + - *277 + - *331 requestBody: required: true content: @@ -46268,16 +46898,16 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -46300,10 +46930,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - - *163 - - *273 - - *323 - - *330 + - *166 + - *277 + - *331 + - *338 responses: '204': description: Response @@ -46326,16 +46956,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *331 + schema: *339 examples: - default: *332 + default: *340 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46354,8 +46984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -46379,9 +47009,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *341 examples: - default: *334 + default: *342 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -46400,8 +47030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '204': description: Response @@ -46425,8 +47055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46436,9 +47066,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 x-github: @@ -46460,8 +47090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *163 - - *273 + - *166 + - *277 - name: role description: Filters members returned by their role in the team. in: query @@ -46484,7 +47114,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -46514,15 +47144,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 responses: '200': description: Response content: application/json: - schema: &335 + schema: &343 title: Team Membership description: Team Membership type: object @@ -46550,7 +47180,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &671 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46586,9 +47216,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 requestBody: required: false content: @@ -46613,9 +47243,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &672 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46650,9 +47280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *163 - - *273 - - *205 + - *166 + - *277 + - *208 responses: '204': description: Response @@ -46678,8 +47308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46689,7 +47319,7 @@ paths: application/json: schema: type: array - items: &336 + items: &344 title: Team Project description: A team's access to a project. type: object @@ -46758,7 +47388,7 @@ paths: - updated_at - permissions examples: - default: &665 + default: &673 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46819,9 +47449,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - - *163 - - *273 - - &337 + - *166 + - *277 + - &345 name: project_id description: The unique identifier of the project. in: path @@ -46833,9 +47463,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *344 examples: - default: &666 + default: &674 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46895,9 +47525,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - - *163 - - *273 - - *337 + - *166 + - *277 + - *345 requestBody: required: false content: @@ -46962,9 +47592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - - *163 - - *273 - - *337 + - *166 + - *277 + - *345 responses: '204': description: Response @@ -46988,8 +47618,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -46999,9 +47629,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -47030,16 +47660,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &667 + schema: &675 title: Team Repository description: A team's access to a repository. type: object @@ -47065,7 +47695,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 forks: type: integer permissions: @@ -47680,10 +48310,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 requestBody: required: false content: @@ -47728,10 +48358,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *163 - - *273 - - *338 - - *339 + - *166 + - *277 + - *346 + - *347 responses: '204': description: Response @@ -47757,16 +48387,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *163 - - *273 + - *166 + - *277 responses: '200': description: Response content: application/json: - schema: *340 + schema: *348 examples: - default: *341 + default: *349 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47788,8 +48418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *163 - - *273 + - *166 + - *277 requestBody: required: true content: @@ -47832,7 +48462,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *348 examples: default: value: @@ -47864,8 +48494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *163 - - *273 + - *166 + - *277 - *17 - *19 responses: @@ -47875,9 +48505,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - response-if-child-teams-exist: &668 + response-if-child-teams-exist: &676 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47930,7 +48560,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *163 + - *166 - name: security_product in: path description: The security feature to enable or disable. @@ -48001,7 +48631,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &342 + - &350 name: card_id description: The unique identifier of the card. in: path @@ -48013,7 +48643,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &351 title: Project Card description: Project cards represent a scope of work. type: object @@ -48088,7 +48718,7 @@ paths: - created_at - updated_at examples: - default: &344 + default: &352 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -48138,7 +48768,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *342 + - *350 requestBody: required: false content: @@ -48168,9 +48798,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *351 examples: - default: *344 + default: *352 '304': *35 '403': *27 '401': *23 @@ -48191,7 +48821,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *342 + - *350 responses: '204': description: Response @@ -48229,7 +48859,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *342 + - *350 requestBody: required: true content: @@ -48336,7 +48966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &345 + - &353 name: column_id description: The unique identifier of the column. in: path @@ -48348,7 +48978,7 @@ paths: description: Response content: application/json: - schema: &346 + schema: &354 title: Project Column description: Project columns contain cards of work. type: object @@ -48402,7 +49032,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &355 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48431,7 +49061,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *345 + - *353 requestBody: required: true content: @@ -48456,9 +49086,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *354 examples: - default: *347 + default: *355 '304': *35 '403': *27 '401': *23 @@ -48477,7 +49107,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *345 + - *353 responses: '204': description: Response @@ -48500,7 +49130,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *345 + - *353 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -48521,7 +49151,7 @@ paths: application/json: schema: type: array - items: *343 + items: *351 examples: default: value: @@ -48574,7 +49204,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *345 + - *353 requestBody: required: true content: @@ -48618,9 +49248,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *351 examples: - default: *344 + default: *352 '304': *35 '403': *27 '401': *23 @@ -48630,8 +49260,8 @@ paths: application/json: schema: oneOf: - - *166 - - *167 + - *169 + - *170 '503': description: Response content: @@ -48670,7 +49300,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *345 + - *353 requestBody: required: true content: @@ -48727,15 +49357,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *337 + - *345 responses: '200': description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: &348 + default: &356 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48788,7 +49418,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *337 + - *345 requestBody: required: false content: @@ -48837,9 +49467,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: *348 + default: *356 '404': description: Not Found if the authenticated user does not have access to the project @@ -48860,7 +49490,7 @@ paths: items: type: string '401': *23 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -48878,7 +49508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *337 + - *345 responses: '204': description: Delete Success @@ -48899,7 +49529,7 @@ paths: items: type: string '401': *23 - '410': *349 + '410': *357 '404': *6 x-github: githubCloudOnly: false @@ -48922,7 +49552,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *337 + - *345 - 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 @@ -48949,7 +49579,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -48974,8 +49604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *337 - - *205 + - *345 + - *208 requestBody: required: false content: @@ -49024,8 +49654,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *337 - - *205 + - *345 + - *208 responses: '204': description: Response @@ -49053,8 +49683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *337 - - *205 + - *345 + - *208 responses: '200': description: Response @@ -49118,7 +49748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *337 + - *345 - *17 - *19 responses: @@ -49128,7 +49758,7 @@ paths: application/json: schema: type: array - items: *346 + items: *354 examples: default: value: @@ -49160,7 +49790,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *337 + - *345 requestBody: required: true content: @@ -49184,7 +49814,7 @@ paths: description: Response content: application/json: - schema: *346 + schema: *354 examples: default: value: @@ -49245,7 +49875,7 @@ paths: resources: type: object properties: - core: &350 + core: &358 title: Rate Limit type: object properties: @@ -49262,20 +49892,20 @@ paths: - remaining - reset - used - graphql: *350 - search: *350 - code_search: *350 - source_import: *350 - integration_manifest: *350 - code_scanning_upload: *350 - actions_runner_registration: *350 - scim: *350 - dependency_snapshots: *350 - code_scanning_autofix: *350 + graphql: *358 + search: *358 + code_search: *358 + source_import: *358 + integration_manifest: *358 + code_scanning_upload: *358 + actions_runner_registration: *358 + scim: *358 + dependency_snapshots: *358 + code_scanning_autofix: *358 required: - core - search - rate: *350 + rate: *358 required: - rate - resources @@ -49379,14 +50009,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *351 + schema: *359 examples: default-response: summary: Default response @@ -49891,7 +50521,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *352 + '301': *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49909,8 +50539,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -50157,10 +50787,10 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 - '307': &354 + default: *361 + '307': &362 description: Temporary Redirect content: application/json: @@ -50189,8 +50819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -50212,7 +50842,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': *354 + '307': *362 '404': *6 x-github: githubCloudOnly: false @@ -50235,11 +50865,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - - &369 + - &377 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50262,7 +50892,7 @@ paths: type: integer artifacts: type: array - items: &355 + items: &363 title: Artifact description: An artifact type: object @@ -50348,7 +50978,7 @@ paths: - expires_at - updated_at examples: - default: &370 + default: &378 value: total_count: 2 artifacts: @@ -50407,9 +51037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *338 - - *339 - - &356 + - *346 + - *347 + - &364 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50421,7 +51051,7 @@ paths: description: Response content: application/json: - schema: *355 + schema: *363 examples: default: value: @@ -50458,9 +51088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *338 - - *339 - - *356 + - *346 + - *347 + - *364 responses: '204': description: Response @@ -50484,9 +51114,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *338 - - *339 - - *356 + - *346 + - *347 + - *364 - name: archive_format in: path required: true @@ -50500,7 +51130,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': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50523,14 +51153,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *357 + schema: *365 examples: default: value: @@ -50556,11 +51186,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: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - - &358 + - &366 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 @@ -50594,7 +51224,7 @@ paths: description: Response content: application/json: - schema: &359 + schema: &367 title: Repository actions caches description: Repository actions caches type: object @@ -50644,7 +51274,7 @@ paths: - total_count - actions_caches examples: - default: &360 + default: &368 value: total_count: 1 actions_caches: @@ -50676,23 +51306,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: - - *338 - - *339 + - *346 + - *347 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *358 + - *366 responses: '200': description: Response content: application/json: - schema: *359 + schema: *367 examples: - default: *360 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50712,8 +51342,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: - - *338 - - *339 + - *346 + - *347 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50744,9 +51374,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: - - *338 - - *339 - - &361 + - *346 + - *347 + - &369 name: job_id description: The unique identifier of the job. in: path @@ -50758,7 +51388,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &381 title: Job description: Information of a job execution in a workflow run type: object @@ -51105,9 +51735,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: - - *338 - - *339 - - *361 + - *346 + - *347 + - *369 responses: '302': description: Response @@ -51135,9 +51765,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: - - *338 - - *339 - - *361 + - *346 + - *347 + - *369 requestBody: required: false content: @@ -51159,7 +51789,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -51183,8 +51813,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Status response @@ -51234,8 +51864,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -51269,7 +51899,7 @@ paths: description: Empty response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -51298,8 +51928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -51317,7 +51947,7 @@ paths: type: integer secrets: type: array - items: &375 + items: &383 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51338,7 +51968,7 @@ paths: - created_at - updated_at examples: - default: &376 + default: &384 value: total_count: 2 secrets: @@ -51371,9 +52001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *338 - - *339 - - *362 + - *346 + - *347 + - *370 - *19 responses: '200': @@ -51390,7 +52020,7 @@ paths: type: integer variables: type: array - items: &379 + items: &387 title: Actions Variable type: object properties: @@ -51424,7 +52054,7 @@ paths: - created_at - updated_at examples: - default: &380 + default: &388 value: total_count: 2 variables: @@ -51457,8 +52087,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51467,11 +52097,11 @@ paths: schema: type: object properties: - enabled: &363 + enabled: &371 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 - selected_actions_url: *176 + selected_actions_url: *179 required: - enabled examples: @@ -51500,8 +52130,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -51512,7 +52142,7 @@ paths: schema: type: object properties: - enabled: *363 + enabled: *371 allowed_actions: *46 required: - enabled @@ -51543,14 +52173,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &364 + schema: &372 type: object properties: access_level: @@ -51568,7 +52198,7 @@ paths: required: - access_level examples: - default: &365 + default: &373 value: access_level: organization x-github: @@ -51593,15 +52223,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *364 + schema: *372 examples: - default: *365 + default: *373 responses: '204': description: Response @@ -51625,8 +52255,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51657,8 +52287,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -51690,14 +52320,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: default: *52 x-github: @@ -51720,8 +52350,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Success response @@ -51732,7 +52362,7 @@ paths: required: true content: application/json: - schema: *180 + schema: *183 examples: default: *52 x-github: @@ -51761,8 +52391,8 @@ paths: in: query schema: type: string - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -51806,8 +52436,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -51815,9 +52445,9 @@ paths: application/json: schema: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51839,8 +52469,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -51883,7 +52513,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *186 + '201': *189 '404': *6 '422': *7 x-github: @@ -51913,8 +52543,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: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -51922,7 +52552,7 @@ paths: application/json: schema: *62 examples: - default: *187 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51950,8 +52580,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: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -51959,7 +52589,7 @@ paths: application/json: schema: *62 examples: - default: *188 + default: *191 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51981,8 +52611,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '200': @@ -51991,7 +52621,7 @@ paths: application/json: schema: *59 examples: - default: *189 + default: *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52012,8 +52642,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '204': @@ -52039,8 +52669,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: - - *338 - - *339 + - *346 + - *347 - *58 responses: '200': *64 @@ -52065,8 +52695,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: - - *338 - - *339 + - *346 + - *347 - *58 requestBody: required: true @@ -52115,8 +52745,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: - - *338 - - *339 + - *346 + - *347 - *58 requestBody: required: true @@ -52166,11 +52796,11 @@ 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: - - *338 - - *339 + - *346 + - *347 - *58 responses: - '200': *190 + '200': *193 '404': *6 x-github: githubCloudOnly: false @@ -52197,10 +52827,10 @@ 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: - - *338 - - *339 + - *346 + - *347 - *58 - - *191 + - *194 responses: '200': *64 '404': *6 @@ -52228,9 +52858,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: - - *338 - - *339 - - &383 + - *346 + - *347 + - &391 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. @@ -52238,7 +52868,7 @@ paths: required: false schema: type: string - - &384 + - &392 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52246,7 +52876,7 @@ paths: required: false schema: type: string - - &385 + - &393 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52255,7 +52885,7 @@ paths: required: false schema: type: string - - &386 + - &394 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 @@ -52282,7 +52912,7 @@ paths: - pending - *17 - *19 - - &387 + - &395 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)." @@ -52291,7 +52921,7 @@ paths: schema: type: string format: date-time - - &366 + - &374 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52300,13 +52930,13 @@ paths: schema: type: boolean default: false - - &388 + - &396 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &389 + - &397 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52329,7 +52959,7 @@ paths: type: integer workflow_runs: type: array - items: &367 + items: &375 title: Workflow Run description: An invocation of a workflow type: object @@ -52446,7 +53076,7 @@ paths: type: - array - 'null' - items: &413 + items: &421 title: Pull Request Minimal type: object properties: @@ -52573,7 +53203,7 @@ paths: head_commit: anyOf: - type: 'null' - - &417 + - &425 title: Simple Commit description: A commit. type: object @@ -52647,8 +53277,8 @@ paths: - timestamp - author - committer - repository: *183 - head_repository: *183 + repository: *186 + head_repository: *186 head_repository_id: type: integer examples: @@ -52688,7 +53318,7 @@ paths: - workflow_url - pull_requests examples: - default: &390 + default: &398 value: total_count: 1 workflow_runs: @@ -52924,24 +53554,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *338 - - *339 - - &368 + - *346 + - *347 + - &376 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *366 + - *374 responses: '200': description: Response content: application/json: - schema: *367 + schema: *375 examples: - default: &371 + default: &379 value: id: 30433642 name: Build @@ -53182,9 +53812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '204': description: Response @@ -53207,9 +53837,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -53337,15 +53967,15 @@ 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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53372,12 +54002,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 - *17 - *19 - - *369 + - *377 responses: '200': description: Response @@ -53393,9 +54023,9 @@ paths: type: integer artifacts: type: array - items: *355 + items: *363 examples: - default: *370 + default: *378 headers: Link: *37 x-github: @@ -53419,25 +54049,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *338 - - *339 - - *368 - - &372 + - *346 + - *347 + - *376 + - &380 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *366 + - *374 responses: '200': description: Response content: application/json: - schema: *367 + schema: *375 examples: - default: *371 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53460,10 +54090,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: - - *338 - - *339 - - *368 - - *372 + - *346 + - *347 + - *376 + - *380 - *17 - *19 responses: @@ -53481,9 +54111,9 @@ paths: type: integer jobs: type: array - items: *373 + items: *381 examples: - default: &374 + default: &382 value: total_count: 1 jobs: @@ -53596,10 +54226,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *338 - - *339 - - *368 - - *372 + - *346 + - *347 + - *376 + - *380 responses: '302': description: Response @@ -53627,15 +54257,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '202': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53662,9 +54292,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: true content: @@ -53731,15 +54361,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '202': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -53766,9 +54396,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 - 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 @@ -53798,9 +54428,9 @@ paths: type: integer jobs: type: array - items: *373 + items: *381 examples: - default: *374 + default: *382 headers: Link: *37 x-github: @@ -53825,9 +54455,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '302': description: Response @@ -53854,9 +54484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '204': description: Response @@ -53883,9 +54513,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -53954,7 +54584,7 @@ paths: items: type: object properties: - type: &488 + type: &496 type: string description: The type of reviewer. enum: @@ -53965,7 +54595,7 @@ paths: reviewer: anyOf: - *4 - - *261 + - *265 required: - environment - wait_timer @@ -54040,9 +54670,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: true content: @@ -54092,7 +54722,7 @@ paths: application/json: schema: type: array - items: &483 + items: &491 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54204,7 +54834,7 @@ paths: - created_at - updated_at examples: - default: &484 + default: &492 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54260,9 +54890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: false content: @@ -54284,7 +54914,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54307,9 +54937,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: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 requestBody: required: false content: @@ -54331,7 +54961,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54356,9 +54986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *338 - - *339 - - *368 + - *346 + - *347 + - *376 responses: '200': description: Response @@ -54495,8 +55125,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -54514,9 +55144,9 @@ paths: type: integer secrets: type: array - items: *375 + items: *383 examples: - default: *376 + default: *384 headers: Link: *37 x-github: @@ -54541,16 +55171,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *377 + schema: *385 examples: - default: *378 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54572,17 +55202,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *375 + schema: *383 examples: - default: &501 + default: &509 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54608,9 +55238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -54638,7 +55268,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54664,9 +55294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -54691,9 +55321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *338 - - *339 - - *362 + - *346 + - *347 + - *370 - *19 responses: '200': @@ -54710,9 +55340,9 @@ paths: type: integer variables: type: array - items: *379 + items: *387 examples: - default: *380 + default: *388 headers: Link: *37 x-github: @@ -54735,8 +55365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -54763,7 +55393,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -54788,17 +55418,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 responses: '200': description: Response content: application/json: - schema: *379 + schema: *387 examples: - default: &502 + default: &510 value: name: USERNAME value: octocat @@ -54824,9 +55454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 requestBody: required: true content: @@ -54868,9 +55498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *338 - - *339 - - *196 + - *346 + - *347 + - *199 responses: '204': description: Response @@ -54895,8 +55525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -54914,7 +55544,7 @@ paths: type: integer workflows: type: array - items: &381 + items: &389 title: Workflow description: A GitHub Actions workflow type: object @@ -55032,9 +55662,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *338 - - *339 - - &382 + - *346 + - *347 + - &390 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55049,7 +55679,7 @@ paths: description: Response content: application/json: - schema: *381 + schema: *389 examples: default: value: @@ -55082,9 +55712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55109,9 +55739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55162,9 +55792,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '204': description: Response @@ -55191,19 +55821,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: - - *338 - - *339 - - *382 - - *383 - - *384 - - *385 - - *386 + - *346 + - *347 + - *390 + - *391 + - *392 + - *393 + - *394 - *17 - *19 - - *387 - - *366 - - *388 - - *389 + - *395 + - *374 + - *396 + - *397 responses: '200': description: Response @@ -55219,9 +55849,9 @@ paths: type: integer workflow_runs: type: array - items: *367 + items: *375 examples: - default: *390 + default: *398 headers: Link: *37 x-github: @@ -55247,9 +55877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *338 - - *339 - - *382 + - *346 + - *347 + - *390 responses: '200': description: Response @@ -55310,8 +55940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *338 - - *339 + - *346 + - *347 - *82 - *17 - *80 @@ -55479,8 +56109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -55492,7 +56122,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -55517,8 +56147,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: - - *338 - - *339 + - *346 + - *347 - name: assignee in: path required: true @@ -55554,8 +56184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -55667,8 +56297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *80 - *81 @@ -55714,7 +56344,7 @@ paths: bundle_url: type: string examples: - default: *391 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55734,8 +56364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -55743,7 +56373,7 @@ paths: application/json: schema: type: array - items: &392 + items: &400 title: Autolink reference description: An autolink reference. type: object @@ -55797,8 +56427,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -55837,9 +56467,9 @@ paths: description: response content: application/json: - schema: *392 + schema: *400 examples: - default: &393 + default: &401 value: id: 1 key_prefix: TICKET- @@ -55870,9 +56500,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: - - *338 - - *339 - - &394 + - *346 + - *347 + - &402 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55884,9 +56514,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *400 examples: - default: *393 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -55906,9 +56536,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: - - *338 - - *339 - - *394 + - *346 + - *347 + - *402 responses: '204': description: Response @@ -55932,8 +56562,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response if Dependabot is enabled @@ -55983,8 +56613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -56005,8 +56635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -56026,8 +56656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *338 - - *339 + - *346 + - *347 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56065,7 +56695,7 @@ paths: - url protected: type: boolean - protection: &396 + protection: &404 title: Branch Protection description: Branch Protection type: object @@ -56108,7 +56738,7 @@ paths: required: - contexts - checks - enforce_admins: &399 + enforce_admins: &407 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56125,7 +56755,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &401 + required_pull_request_reviews: &409 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56147,7 +56777,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *261 + items: *265 apps: description: The list of apps with review dismissal access. @@ -56179,7 +56809,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *261 + items: *265 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56209,7 +56839,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &398 + restrictions: &406 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56534,9 +57164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *338 - - *339 - - &397 + - *346 + - *347 + - &405 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). @@ -56550,14 +57180,14 @@ paths: description: Response content: application/json: - schema: &407 + schema: &415 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &459 + commit: &467 title: Commit description: Commit type: object @@ -56596,7 +57226,7 @@ paths: author: anyOf: - type: 'null' - - &395 + - &403 title: Git User description: Metaproperties for Git author/committer information. @@ -56617,7 +57247,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 message: type: string examples: @@ -56641,7 +57271,7 @@ paths: required: - sha - url - verification: &508 + verification: &516 title: Verification type: object properties: @@ -56676,14 +57306,14 @@ paths: author: oneOf: - *4 - - *194 + - *197 type: - 'null' - object committer: oneOf: - *4 - - *194 + - *197 type: - 'null' - object @@ -56720,7 +57350,7 @@ paths: type: integer files: type: array - items: &471 + items: &479 title: Diff Entry description: Diff Entry type: object @@ -56814,7 +57444,7 @@ paths: - self protected: type: boolean - protection: *396 + protection: *404 protection_url: type: string format: uri @@ -56923,7 +57553,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *352 + '301': *360 '404': *6 x-github: githubCloudOnly: false @@ -56945,15 +57575,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *396 + schema: *404 examples: default: value: @@ -57147,9 +57777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -57409,7 +58039,7 @@ paths: url: type: string format: uri - required_status_checks: &404 + required_status_checks: &412 title: Status Check Policy description: Status Check Policy type: object @@ -57490,7 +58120,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 apps: type: array items: *5 @@ -57508,7 +58138,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 apps: type: array items: *5 @@ -57568,7 +58198,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *398 + restrictions: *406 required_conversation_resolution: type: object properties: @@ -57680,9 +58310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -57707,17 +58337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: &400 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57739,17 +58369,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: *400 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57768,9 +58398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -57795,17 +58425,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *409 examples: - default: &402 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57901,9 +58531,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58001,9 +58631,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *409 examples: - default: *402 + default: *410 '422': *15 x-github: githubCloudOnly: false @@ -58024,9 +58654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58053,17 +58683,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: &403 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58086,17 +58716,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *399 + schema: *407 examples: - default: *403 + default: *411 '404': *6 x-github: githubCloudOnly: false @@ -58116,9 +58746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58143,17 +58773,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *404 + schema: *412 examples: - default: &405 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58179,9 +58809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58233,9 +58863,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *412 examples: - default: *405 + default: *413 '404': *6 '422': *15 x-github: @@ -58257,9 +58887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58283,9 +58913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58319,9 +58949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58388,9 +59018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58454,9 +59084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: content: application/json: @@ -58522,15 +59152,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response content: application/json: - schema: *398 + schema: *406 examples: default: value: @@ -58621,9 +59251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '204': description: Response @@ -58646,9 +59276,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58658,7 +59288,7 @@ paths: type: array items: *5 examples: - default: &406 + default: &414 value: - id: 1 slug: octoapp @@ -58715,9 +59345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58751,7 +59381,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58772,9 +59402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58808,7 +59438,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58829,9 +59459,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -58865,7 +59495,7 @@ paths: type: array items: *5 examples: - default: *406 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -58887,9 +59517,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -58897,9 +59527,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '404': *6 x-github: githubCloudOnly: false @@ -58919,9 +59549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -58957,9 +59587,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -58980,9 +59610,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: false content: @@ -59018,9 +59648,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -59041,9 +59671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: content: application/json: @@ -59078,9 +59708,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 '422': *15 x-github: githubCloudOnly: false @@ -59102,9 +59732,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: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 responses: '200': description: Response @@ -59114,7 +59744,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -59138,9 +59768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59173,7 +59803,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59198,9 +59828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59233,7 +59863,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59258,9 +59888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59293,7 +59923,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '422': *15 x-github: githubCloudOnly: false @@ -59320,9 +59950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 requestBody: required: true content: @@ -59344,7 +59974,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *415 examples: default: value: @@ -59458,12 +60088,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *338 - - *339 - - *408 - - *409 - - *299 - - *410 + - *346 + - *347 + - *416 + - *417 + - *303 + - *418 - *17 - *19 responses: @@ -59473,9 +60103,9 @@ paths: application/json: schema: type: array - items: *411 + items: *419 examples: - default: *412 + default: *420 '404': *6 '500': *93 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -59495,8 +60125,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *338 - - *339 + - *346 + - *347 - name: bypass_request_number in: path required: true @@ -59510,7 +60140,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *419 examples: default: value: @@ -59568,8 +60198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -59848,7 +60478,7 @@ paths: description: Response content: application/json: - schema: &414 + schema: &422 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59983,8 +60613,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *413 - deployment: &718 + items: *421 + deployment: &726 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60271,9 +60901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *338 - - *339 - - &415 + - *346 + - *347 + - &423 name: check_run_id description: The unique identifier of the check run. in: path @@ -60285,9 +60915,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *422 examples: - default: &416 + default: &424 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60387,9 +61017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 requestBody: required: true content: @@ -60629,9 +61259,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *422 examples: - default: *416 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60651,9 +61281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 - *17 - *19 responses: @@ -60765,15 +61395,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *338 - - *339 - - *415 + - *346 + - *347 + - *423 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -60811,8 +61441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -60834,7 +61464,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &418 + schema: &426 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60916,12 +61546,12 @@ paths: type: - array - 'null' - items: *413 + items: *421 app: anyOf: - type: 'null' - *5 - repository: *183 + repository: *186 created_at: type: - string @@ -60932,7 +61562,7 @@ paths: - string - 'null' format: date-time - head_commit: *417 + head_commit: *425 latest_check_runs_count: type: integer check_runs_url: @@ -60960,7 +61590,7 @@ paths: - check_runs_url - pull_requests examples: - default: &419 + default: &427 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61251,9 +61881,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *418 + schema: *426 examples: - default: *419 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61272,8 +61902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -61334,7 +61964,7 @@ paths: required: - app_id - setting - repository: *183 + repository: *186 examples: default: value: @@ -61582,9 +62212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *338 - - *339 - - &420 + - *346 + - *347 + - &428 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61596,9 +62226,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *426 examples: - default: *419 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61621,17 +62251,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: - - *338 - - *339 - - *420 - - &466 + - *346 + - *347 + - *428 + - &474 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &467 + - &475 name: status description: Returns check runs with the specified `status`. in: query @@ -61670,9 +62300,9 @@ paths: type: integer check_runs: type: array - items: *414 + items: *422 examples: - default: &468 + default: &476 value: total_count: 1 check_runs: @@ -61774,15 +62404,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *338 - - *339 - - *420 + - *346 + - *347 + - *428 responses: '201': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -61809,21 +62439,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: - - *338 - - *339 - - *206 - - *207 + - *346 + - *347 + - *209 + - *210 - *19 - *17 - - &436 + - &444 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: *421 - - &437 + schema: *429 + - &445 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61848,13 +62478,13 @@ paths: be returned. in: query required: false - schema: *208 + schema: *211 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *430 responses: '200': description: Response @@ -61870,7 +62500,7 @@ paths: updated_at: *101 url: *98 html_url: *99 - instances_url: *423 + instances_url: *431 state: *85 fixed_at: *103 dismissed_by: @@ -61878,11 +62508,11 @@ paths: - type: 'null' - *4 dismissed_at: *102 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_reason: *432 + dismissed_comment: *433 + rule: *434 + tool: *435 + most_recent_instance: *436 required: - number - created_at @@ -61998,14 +62628,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &429 + '403': &437 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62025,9 +62655,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: - - *338 - - *339 - - &430 + - *346 + - *347 + - &438 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62041,7 +62671,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &439 type: object properties: number: *94 @@ -62049,7 +62679,7 @@ paths: updated_at: *101 url: *98 html_url: *99 - instances_url: *423 + instances_url: *431 state: *85 fixed_at: *103 dismissed_by: @@ -62057,8 +62687,8 @@ paths: - type: 'null' - *4 dismissed_at: *102 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *432 + dismissed_comment: *433 rule: type: object properties: @@ -62120,8 +62750,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *435 + most_recent_instance: *436 required: - number - created_at @@ -62210,9 +62840,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62230,9 +62860,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: true content: @@ -62247,8 +62877,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *432 + dismissed_comment: *433 required: - state examples: @@ -62263,7 +62893,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *439 examples: default: value: @@ -62338,14 +62968,14 @@ paths: classifications: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances - '403': &435 + '403': &443 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62365,15 +62995,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: Response content: application/json: - schema: &432 + schema: &440 type: object properties: status: @@ -62400,13 +63030,13 @@ paths: - description - started_at examples: - default: &433 + default: &441 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &442 description: Bad Request content: application/json: @@ -62417,9 +63047,9 @@ 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': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62442,29 +63072,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: OK content: application/json: - schema: *432 + schema: *440 examples: - default: *433 + default: *441 '202': description: Accepted content: application/json: - schema: *432 + schema: *440 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *442 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62474,7 +63104,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62496,9 +63126,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: false content: @@ -62544,12 +63174,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *442 + '403': *443 '404': *6 '422': description: Unprocessable Entity - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62569,13 +63199,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 - *19 - *17 - - *436 - - *437 + - *444 + - *445 responses: '200': description: Response @@ -62583,7 +63213,7 @@ paths: application/json: schema: type: array - items: *428 + items: *436 examples: default: value: @@ -62622,9 +63252,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62656,25 +63286,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: - - *338 - - *339 - - *206 - - *207 + - *346 + - *347 + - *209 + - *210 - *19 - *17 - - *437 + - *445 - 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: *421 + schema: *429 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &440 + schema: &448 type: string description: An identifier for the upload. examples: @@ -62696,23 +63326,23 @@ paths: application/json: schema: type: array - items: &441 + items: &449 type: object properties: - ref: *421 - commit_sha: &449 + ref: *429 + commit_sha: &457 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: *438 + analysis_key: *446 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *439 + category: *447 error: type: string examples: @@ -62737,8 +63367,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *440 - tool: *427 + sarif_id: *448 + tool: *435 deletable: type: boolean warning: @@ -62800,9 +63430,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62836,8 +63466,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: - - *338 - - *339 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62850,7 +63480,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *449 examples: response: summary: application/json response @@ -62904,9 +63534,9 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62986,8 +63616,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: - - *338 - - *339 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63043,9 +63673,9 @@ 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': *435 + '403': *443 '404': *6 - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63065,8 +63695,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -63074,7 +63704,7 @@ paths: application/json: schema: type: array - items: &442 + items: &450 title: CodeQL Database description: A CodeQL database. type: object @@ -63186,9 +63816,9 @@ 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': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63215,8 +63845,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: - - *338 - - *339 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -63228,7 +63858,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *450 examples: default: value: @@ -63260,11 +63890,11 @@ 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': &473 + '302': &481 description: Found - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63284,8 +63914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *338 - - *339 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -63295,9 +63925,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *443 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63323,8 +63953,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -63333,7 +63963,7 @@ paths: type: object additionalProperties: false properties: - language: &443 + language: &451 type: string description: The language targeted by the CodeQL query enum: @@ -63411,7 +64041,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &447 + schema: &455 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63421,7 +64051,7 @@ paths: description: The ID of the variant analysis. controller_repo: *92 actor: *4 - query_language: *443 + query_language: *451 query_pack_url: type: string description: The download url for the query pack. @@ -63469,7 +64099,7 @@ paths: items: type: object properties: - repository: &444 + repository: &452 title: Repository Identifier description: Repository Identifier type: object @@ -63511,7 +64141,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &448 + analysis_status: &456 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63543,7 +64173,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &445 + access_mismatch_repos: &453 type: object properties: repository_count: @@ -63558,7 +64188,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: *444 + items: *452 required: - repository_count - repositories @@ -63581,8 +64211,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *445 - over_limit_repos: *445 + no_codeql_db_repos: *453 + over_limit_repos: *453 required: - access_mismatch_repos - not_found_repos @@ -63598,7 +64228,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &446 + value: &454 summary: Default response value: id: 1 @@ -63750,17 +64380,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *446 + value: *454 repository_lists: summary: Response for a successful variant analysis submission - value: *446 + value: *454 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63781,8 +64411,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: - - *338 - - *339 + - *346 + - *347 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63794,11 +64424,11 @@ paths: description: Response content: application/json: - schema: *447 + schema: *455 examples: - default: *446 + default: *454 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63819,7 +64449,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: - - *338 + - *346 - name: repo in: path description: The name of the controller repository. @@ -63854,7 +64484,7 @@ paths: type: object properties: repository: *92 - analysis_status: *448 + analysis_status: *456 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63958,7 +64588,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63979,8 +64609,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64062,9 +64692,9 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *437 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64083,8 +64713,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -64143,7 +64773,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -64168,7 +64798,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *443 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64176,7 +64806,7 @@ paths: content: application/json: schema: *3 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64233,8 +64863,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -64242,7 +64872,7 @@ paths: schema: type: object properties: - commit_sha: *449 + commit_sha: *457 ref: type: string description: |- @@ -64302,7 +64932,7 @@ paths: schema: type: object properties: - id: *440 + id: *448 url: type: string description: The REST API URL for checking the status of the upload. @@ -64316,11 +64946,11 @@ 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': *435 + '403': *443 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64339,8 +64969,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: - - *338 - - *339 + - *346 + - *347 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64388,10 +65018,10 @@ 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': *429 + '403': *437 '404': description: Not Found if the sarif id does not match any upload - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64413,8 +65043,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64467,7 +65097,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': *108 + '204': *111 '304': *35 '403': *27 '404': *6 @@ -64492,8 +65122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *338 - - *339 + - *346 + - *347 - 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 @@ -64621,8 +65251,8 @@ paths: parameters: - *17 - *19 - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -64638,7 +65268,7 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: default: value: @@ -64936,8 +65566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -65001,22 +65631,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65040,8 +65670,8 @@ paths: parameters: - *17 - *19 - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -65105,8 +65735,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: - - *338 - - *339 + - *346 + - *347 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65143,9 +65773,9 @@ paths: type: integer machines: type: array - items: *451 + items: *459 examples: - default: &675 + default: &683 value: total_count: 2 machines: @@ -65185,8 +65815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *338 - - *339 + - *346 + - *347 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65273,8 +65903,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: - - *338 - - *339 + - *346 + - *347 - 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 @@ -65322,7 +65952,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65343,8 +65973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -65362,7 +65992,7 @@ paths: type: integer secrets: type: array - items: &455 + items: &463 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65383,7 +66013,7 @@ paths: - created_at - updated_at examples: - default: *452 + default: *460 headers: Link: *37 x-github: @@ -65406,16 +66036,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *453 + schema: *461 examples: - default: *454 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65435,17 +66065,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *455 + schema: *463 examples: - default: *456 + default: *464 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65465,9 +66095,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -65495,7 +66125,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -65519,9 +66149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -65549,8 +66179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *338 - - *339 + - *346 + - *347 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65588,7 +66218,7 @@ paths: application/json: schema: type: array - items: &457 + items: &465 title: Collaborator description: Collaborator type: object @@ -65781,9 +66411,9 @@ 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: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '204': description: Response if user is a collaborator @@ -65825,9 +66455,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 requestBody: required: false content: @@ -65853,7 +66483,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &521 + schema: &529 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65865,7 +66495,7 @@ paths: format: int64 examples: - 42 - repository: *183 + repository: *186 invitee: anyOf: - type: 'null' @@ -66074,9 +66704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '204': description: No Content when collaborator was removed from the repository. @@ -66105,9 +66735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *338 - - *339 - - *205 + - *346 + - *347 + - *208 responses: '200': description: if user has admin permissions @@ -66127,7 +66757,7 @@ paths: user: anyOf: - type: 'null' - - *457 + - *465 required: - permission - role_name @@ -66181,8 +66811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -66192,7 +66822,7 @@ paths: application/json: schema: type: array - items: &458 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -66233,8 +66863,8 @@ paths: updated_at: type: string format: date-time - author_association: *128 - reactions: *129 + author_association: *131 + reactions: *132 required: - url - html_url @@ -66250,7 +66880,7 @@ paths: - created_at - updated_at examples: - default: &461 + default: &469 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66309,17 +66939,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *458 + schema: *466 examples: - default: &462 + default: &470 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66376,9 +67006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -66400,7 +67030,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *466 examples: default: value: @@ -66451,9 +67081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -66474,9 +67104,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 commit comment. @@ -66502,9 +67132,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -66525,9 +67155,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -66559,16 +67189,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66590,10 +67220,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -66642,8 +67272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *338 - - *339 + - *346 + - *347 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66699,9 +67329,9 @@ paths: application/json: schema: type: array - items: *459 + items: *467 examples: - default: &569 + default: &577 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66795,9 +67425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *338 - - *339 - - &460 + - *346 + - *347 + - &468 name: commit_sha description: The SHA of the commit. in: path @@ -66869,9 +67499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 - *17 - *19 responses: @@ -66881,9 +67511,9 @@ paths: application/json: schema: type: array - items: *458 + items: *466 examples: - default: *461 + default: *469 headers: Link: *37 x-github: @@ -66911,9 +67541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 requestBody: required: true content: @@ -66948,9 +67578,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *466 examples: - default: *462 + default: *470 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66978,9 +67608,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: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 - *17 - *19 responses: @@ -66990,7 +67620,7 @@ paths: application/json: schema: type: array - items: &560 + items: &568 title: Pull Request Simple description: Pull Request Simple type: object @@ -67110,7 +67740,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 active_lock_reason: type: - string @@ -67165,7 +67795,7 @@ paths: type: - array - 'null' - items: *261 + items: *265 head: type: object properties: @@ -67209,7 +67839,7 @@ paths: _links: type: object properties: - comments: &464 + comments: &472 title: Link description: Hypermedia Link type: object @@ -67218,13 +67848,13 @@ paths: type: string required: - href - commits: *464 - statuses: *464 - html: *464 - issue: *464 - review_comments: *464 - review_comment: *464 - self: *464 + commits: *472 + statuses: *472 + html: *472 + issue: *472 + review_comments: *472 + review_comment: *472 + self: *472 required: - comments - commits @@ -67234,8 +67864,8 @@ paths: - review_comments - review_comment - self - author_association: *128 - auto_merge: &562 + author_association: *131 + auto_merge: &570 title: Auto merge description: The status of auto merging a pull request. type: @@ -67300,7 +67930,7 @@ paths: - author_association - auto_merge examples: - default: &561 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67837,11 +68467,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 - - &465 + - &473 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)" @@ -67856,9 +68486,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *467 examples: - default: &548 + default: &556 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67945,7 +68575,7 @@ paths: '422': *15 '404': *6 '500': *93 - '503': *121 + '503': *124 '409': *90 x-github: githubCloudOnly: false @@ -67971,11 +68601,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: - - *338 - - *339 - - *465 - - *466 - - *467 + - *346 + - *347 + - *473 + - *474 + - *475 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68009,9 +68639,9 @@ paths: type: integer check_runs: type: array - items: *414 + items: *422 examples: - default: *468 + default: *476 headers: Link: *37 x-github: @@ -68036,9 +68666,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: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68046,7 +68676,7 @@ paths: schema: type: integer example: 1 - - *466 + - *474 - *17 - *19 responses: @@ -68064,7 +68694,7 @@ paths: type: integer check_suites: type: array - items: *418 + items: *426 examples: default: value: @@ -68264,9 +68894,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: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - *17 - *19 responses: @@ -68337,7 +68967,7 @@ paths: type: string total_count: type: integer - repository: *183 + repository: *186 commit_url: type: string format: uri @@ -68468,9 +69098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *338 - - *339 - - *465 + - *346 + - *347 + - *473 - *17 - *19 responses: @@ -68480,7 +69110,7 @@ paths: application/json: schema: type: array - items: &623 + items: &631 title: Status description: The status of a commit. type: object @@ -68561,7 +69191,7 @@ paths: site_admin: false headers: Link: *37 - '301': *352 + '301': *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68589,8 +69219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -68623,11 +69253,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *469 + - *477 code_of_conduct_file: anyOf: - type: 'null' - - &470 + - &478 title: Community Health File type: object properties: @@ -68643,23 +69273,23 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 contributing: anyOf: - type: 'null' - - *470 + - *478 readme: anyOf: - type: 'null' - - *470 + - *478 issue_template: anyOf: - type: 'null' - - *470 + - *478 pull_request_template: anyOf: - type: 'null' - - *470 + - *478 required: - code_of_conduct - code_of_conduct_file @@ -68788,8 +69418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 - name: basehead @@ -68837,8 +69467,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *459 - merge_base_commit: *459 + base_commit: *467 + merge_base_commit: *467 status: type: string enum: @@ -68862,10 +69492,10 @@ paths: - 6 commits: type: array - items: *459 + items: *467 files: type: array - items: *471 + items: *479 required: - url - html_url @@ -69109,7 +69739,7 @@ paths: module Test" '404': *6 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69151,8 +69781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -69303,7 +69933,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &472 + response-if-content-is-a-file: &480 summary: Response if content is a file value: type: file @@ -69440,7 +70070,7 @@ paths: - size - type - url - - &574 + - &582 title: Content File description: Content File type: object @@ -69658,7 +70288,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *472 + response-if-content-is-a-file: *480 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69727,7 +70357,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *473 + '302': *481 '304': *35 x-github: githubCloudOnly: false @@ -69750,8 +70380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -69846,7 +70476,7 @@ paths: description: Response content: application/json: - schema: &474 + schema: &482 title: File Commit description: File Commit type: object @@ -70002,7 +70632,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *482 examples: example-for-creating-a-file: value: @@ -70056,7 +70686,7 @@ paths: schema: oneOf: - *3 - - &503 + - &511 description: Repository rule violation was detected type: object properties: @@ -70077,7 +70707,7 @@ paths: items: type: object properties: - placeholder_id: &615 + placeholder_id: &623 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70109,8 +70739,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *338 - - *339 + - *346 + - *347 - name: path description: path parameter in: path @@ -70171,7 +70801,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *482 examples: default: value: @@ -70206,7 +70836,7 @@ paths: '422': *15 '404': *6 '409': *90 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70226,8 +70856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *338 - - *339 + - *346 + - *347 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70351,20 +70981,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *338 - - *339 - - *225 - - *226 - - *227 + - *346 + - *347 - *228 + - *229 + - *230 + - *231 - 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 - - *229 - - *230 + - *232 + - *233 + - *234 - *82 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -70384,8 +71015,8 @@ paths: default: 30 - *80 - *81 - - *231 - - *232 + - *235 + - *236 responses: '200': description: Response @@ -70393,7 +71024,7 @@ paths: application/json: schema: type: array - items: &477 + items: &485 type: object description: A Dependabot alert. properties: @@ -70428,7 +71059,7 @@ paths: - development - runtime - - security_advisory: *475 + security_advisory: *483 security_vulnerability: *97 url: *98 html_url: *99 @@ -70459,7 +71090,7 @@ paths: dismissal. maxLength: 280 fixed_at: *103 - auto_dismissed_at: *476 + auto_dismissed_at: *484 required: - number - state @@ -70686,9 +71317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *338 - - *339 - - &478 + - *346 + - *347 + - &486 name: alert_number in: path description: |- @@ -70703,7 +71334,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *485 examples: default: value: @@ -70813,9 +71444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *338 - - *339 - - *478 + - *346 + - *347 + - *486 requestBody: required: true content: @@ -70860,7 +71491,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *485 examples: default: value: @@ -70989,8 +71620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -71008,7 +71639,7 @@ paths: type: integer secrets: type: array - items: &481 + items: &489 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71062,16 +71693,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *479 + schema: *487 examples: - default: *480 + default: *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71091,15 +71722,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '200': description: Response content: application/json: - schema: *481 + schema: *489 examples: default: value: @@ -71125,9 +71756,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 requestBody: required: true content: @@ -71155,7 +71786,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -71179,9 +71810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *338 - - *339 - - *193 + - *346 + - *347 + - *196 responses: '204': description: Response @@ -71203,8 +71834,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: - - *338 - - *339 + - *346 + - *347 - 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 @@ -71378,8 +72009,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -71639,8 +72270,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -71723,7 +72354,7 @@ paths: - version - url additionalProperties: false - metadata: &482 + metadata: &490 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71762,7 +72393,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *482 + metadata: *490 resolved: type: object description: A collection of resolved package dependencies. @@ -71776,7 +72407,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *482 + metadata: *490 relationship: type: string description: A notation of whether a dependency is requested @@ -71909,8 +72540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *338 - - *339 + - *346 + - *347 - name: sha description: The SHA recorded at creation time. in: query @@ -71951,9 +72582,9 @@ paths: application/json: schema: type: array - items: *483 + items: *491 examples: - default: *484 + default: *492 headers: Link: *37 x-github: @@ -72019,8 +72650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -72102,7 +72733,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *491 examples: simple-example: summary: Simple example @@ -72175,9 +72806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *338 - - *339 - - &485 + - *346 + - *347 + - &493 name: deployment_id description: deployment_id parameter in: path @@ -72189,7 +72820,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *491 examples: default: value: @@ -72254,9 +72885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 responses: '204': description: Response @@ -72278,9 +72909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 - *17 - *19 responses: @@ -72290,7 +72921,7 @@ paths: application/json: schema: type: array - items: &486 + items: &494 title: Deployment Status description: The status of a deployment. type: object @@ -72454,9 +73085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 requestBody: required: true content: @@ -72531,9 +73162,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *494 examples: - default: &487 + default: &495 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72589,9 +73220,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *338 - - *339 - - *485 + - *346 + - *347 + - *493 - name: status_id in: path required: true @@ -72602,9 +73233,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *494 examples: - default: *487 + default: *495 '404': *6 x-github: githubCloudOnly: false @@ -72629,8 +73260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -72687,8 +73318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -72706,7 +73337,7 @@ paths: - 5 environments: type: array - items: &489 + items: &497 title: Environment description: Details of a deployment environment type: object @@ -72768,7 +73399,7 @@ paths: type: string examples: - wait_timer - wait_timer: &491 + wait_timer: &499 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72810,11 +73441,11 @@ paths: items: type: object properties: - type: *488 + type: *496 reviewer: anyOf: - *4 - - *261 + - *265 required: - id - node_id @@ -72837,7 +73468,7 @@ paths: - id - node_id - type - deployment_branch_policy: &492 + deployment_branch_policy: &500 type: - object - 'null' @@ -72954,9 +73585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *338 - - *339 - - &490 + - *346 + - *347 + - &498 name: environment_name in: path required: true @@ -72969,9 +73600,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *497 examples: - default: &493 + default: &501 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73055,9 +73686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: false content: @@ -73067,7 +73698,7 @@ paths: - object - 'null' properties: - wait_timer: *491 + wait_timer: *499 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -73086,14 +73717,14 @@ paths: items: type: object properties: - type: *488 + type: *496 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *492 + deployment_branch_policy: *500 additionalProperties: false examples: default: @@ -73113,9 +73744,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *497 examples: - default: *493 + default: *501 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73139,9 +73770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 responses: '204': description: Default response @@ -73166,9 +73797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 - *17 - *19 responses: @@ -73187,7 +73818,7 @@ paths: - 2 branch_policies: type: array - items: &494 + items: &502 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73248,9 +73879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: true content: @@ -73298,9 +73929,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - example-wildcard: &495 + example-wildcard: &503 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73342,10 +73973,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - &496 + - *346 + - *347 + - *498 + - &504 name: branch_policy_id in: path required: true @@ -73357,9 +73988,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - default: *495 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73378,10 +74009,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - *496 + - *346 + - *347 + - *498 + - *504 requestBody: required: true content: @@ -73410,9 +74041,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *502 examples: - default: *495 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73431,10 +74062,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *338 - - *339 - - *490 - - *496 + - *346 + - *347 + - *498 + - *504 responses: '204': description: Response @@ -73459,9 +74090,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 responses: '200': description: List of deployment protection rules @@ -73478,7 +74109,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &497 + items: &505 title: Deployment protection rule description: Deployment protection rule type: object @@ -73500,7 +74131,7 @@ paths: for the environment. examples: - true - app: &498 + app: &506 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73603,9 +74234,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 requestBody: content: application/json: @@ -73626,9 +74257,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *497 + schema: *505 examples: - default: &499 + default: &507 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73663,9 +74294,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: - - *490 - - *339 - - *338 + - *498 + - *347 + - *346 - *19 - *17 responses: @@ -73685,7 +74316,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *498 + items: *506 examples: default: value: @@ -73720,10 +74351,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: - - *338 - - *339 - - *490 - - &500 + - *346 + - *347 + - *498 + - &508 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73735,9 +74366,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *505 examples: - default: *499 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73758,10 +74389,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: - - *490 - - *339 - - *338 - - *500 + - *498 + - *347 + - *346 + - *508 responses: '204': description: Response @@ -73787,9 +74418,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 - *17 - *19 responses: @@ -73807,9 +74438,9 @@ paths: type: integer secrets: type: array - items: *375 + items: *383 examples: - default: *376 + default: *384 headers: Link: *37 x-github: @@ -73834,17 +74465,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 responses: '200': description: Response content: application/json: - schema: *377 + schema: *385 examples: - default: *378 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73866,18 +74497,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 responses: '200': description: Response content: application/json: - schema: *375 + schema: *383 examples: - default: *501 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73899,10 +74530,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 requestBody: required: true content: @@ -73933,7 +74564,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -73959,10 +74590,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *338 - - *339 - - *490 - - *193 + - *346 + - *347 + - *498 + - *196 responses: '204': description: Default response @@ -73987,10 +74618,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *338 - - *339 - - *490 - - *362 + - *346 + - *347 + - *498 + - *370 - *19 responses: '200': @@ -74007,9 +74638,9 @@ paths: type: integer variables: type: array - items: *379 + items: *387 examples: - default: *380 + default: *388 headers: Link: *37 x-github: @@ -74032,9 +74663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *338 - - *339 - - *490 + - *346 + - *347 + - *498 requestBody: required: true content: @@ -74061,7 +74692,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -74086,18 +74717,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *338 - - *339 - - *490 - - *196 + - *346 + - *347 + - *498 + - *199 responses: '200': description: Response content: application/json: - schema: *379 + schema: *387 examples: - default: *502 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74118,10 +74749,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *338 - - *339 - - *196 - - *490 + - *346 + - *347 + - *199 + - *498 requestBody: required: true content: @@ -74163,10 +74794,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *338 - - *339 - - *196 - - *490 + - *346 + - *347 + - *199 + - *498 responses: '204': description: Response @@ -74188,8 +74819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -74199,7 +74830,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: 200-response: value: @@ -74266,8 +74897,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *338 - - *339 + - *346 + - *347 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74289,7 +74920,7 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: default: value: @@ -74426,8 +75057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -74460,9 +75091,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 '400': *14 '422': *15 '403': *27 @@ -74483,8 +75114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -74543,8 +75174,8 @@ paths: application/json: schema: oneOf: - - *166 - - *503 + - *169 + - *511 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74569,8 +75200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *338 - - *339 + - *346 + - *347 - name: file_sha in: path required: true @@ -74670,8 +75301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -74780,7 +75411,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &512 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75006,15 +75637,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *338 - - *339 - - *460 + - *346 + - *347 + - *468 responses: '200': description: Response content: application/json: - schema: *504 + schema: *512 examples: default: value: @@ -75070,9 +75701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *338 - - *339 - - &505 + - *346 + - *347 + - &513 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. @@ -75089,7 +75720,7 @@ paths: application/json: schema: type: array - items: &506 + items: &514 title: Git Reference description: Git references within a repository type: object @@ -75165,17 +75796,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 responses: '200': description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: &507 + default: &515 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75204,8 +75835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75234,9 +75865,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: *507 + default: *515 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75262,9 +75893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 requestBody: required: true content: @@ -75293,9 +75924,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *514 examples: - default: *507 + default: *515 '422': *15 '409': *90 x-github: @@ -75313,9 +75944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *338 - - *339 - - *505 + - *346 + - *347 + - *513 responses: '204': description: Response @@ -75368,8 +75999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75436,7 +76067,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &517 title: Git Tag description: Metadata for a Git tag type: object @@ -75492,7 +76123,7 @@ paths: - sha - type - url - verification: *508 + verification: *516 required: - sha - url @@ -75502,7 +76133,7 @@ paths: - tag - message examples: - default: &510 + default: &518 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75575,8 +76206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *338 - - *339 + - *346 + - *347 - name: tag_sha in: path required: true @@ -75587,9 +76218,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *517 examples: - default: *510 + default: *518 '404': *6 '409': *90 x-github: @@ -75613,8 +76244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -75688,7 +76319,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &519 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75806,8 +76437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *338 - - *339 + - *346 + - *347 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75830,7 +76461,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *519 examples: default-response: summary: Default response @@ -75889,8 +76520,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -75900,7 +76531,7 @@ paths: application/json: schema: type: array - items: &512 + items: &520 title: Webhook description: Webhooks for repositories. type: object @@ -75963,7 +76594,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &749 + last_response: &757 title: Hook Response type: object properties: @@ -76040,8 +76671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -76094,9 +76725,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: &513 + default: &521 value: type: Repository id: 12345678 @@ -76144,17 +76775,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '200': description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: *513 + default: *521 '404': *6 x-github: githubCloudOnly: false @@ -76174,9 +76805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 requestBody: required: true content: @@ -76221,9 +76852,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *520 examples: - default: *513 + default: *521 '422': *15 '404': *6 x-github: @@ -76244,9 +76875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76270,9 +76901,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '200': description: Response @@ -76299,9 +76930,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 requestBody: required: false content: @@ -76345,11 +76976,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *17 - - *239 + - *243 responses: '200': description: Response @@ -76357,9 +76988,9 @@ paths: application/json: schema: type: array - items: *240 + items: *244 examples: - default: *241 + default: *245 '400': *14 '422': *15 x-github: @@ -76378,18 +77009,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *16 responses: '200': description: Response content: application/json: - schema: *242 + schema: *246 examples: - default: *243 + default: *247 '400': *14 '422': *15 x-github: @@ -76408,9 +77039,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: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 - *16 responses: '202': *91 @@ -76433,9 +77064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76460,9 +77091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *338 - - *339 - - *238 + - *346 + - *347 + - *242 responses: '204': description: Response @@ -76520,14 +77151,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &514 + schema: &522 title: Import description: A repository import from an external source. type: object @@ -76634,7 +77265,7 @@ paths: - html_url - authors_url examples: - default: &517 + default: &525 value: vcs: subversion use_lfs: true @@ -76650,7 +77281,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &515 + '503': &523 description: Unavailable due to service under maintenance. content: application/json: @@ -76679,8 +77310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -76728,7 +77359,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: default: value: @@ -76753,7 +77384,7 @@ paths: type: string '422': *15 '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76781,8 +77412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -76834,7 +77465,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: example-1: summary: Example 1 @@ -76882,7 +77513,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76905,12 +77536,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76936,9 +77567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *338 - - *339 - - &698 + - *346 + - *347 + - &706 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76952,7 +77583,7 @@ paths: application/json: schema: type: array - items: &516 + items: &524 title: Porter Author description: Porter Author type: object @@ -77006,7 +77637,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77031,8 +77662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *338 - - *339 + - *346 + - *347 - name: author_id in: path required: true @@ -77062,7 +77693,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *524 examples: default: value: @@ -77075,7 +77706,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77099,8 +77730,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77141,7 +77772,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77169,8 +77800,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -77197,11 +77828,11 @@ paths: description: Response content: application/json: - schema: *514 + schema: *522 examples: - default: *517 + default: *525 '422': *15 - '503': *515 + '503': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77224,8 +77855,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77233,8 +77864,8 @@ paths: application/json: schema: *20 examples: - default: *518 - '301': *352 + default: *526 + '301': *360 '404': *6 x-github: githubCloudOnly: false @@ -77254,8 +77885,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -77263,12 +77894,12 @@ paths: application/json: schema: anyOf: - - *256 + - *260 - type: object properties: {} additionalProperties: false examples: - default: &520 + default: &528 value: limit: collaborators_only origin: repository @@ -77293,13 +77924,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *519 + schema: *527 examples: default: summary: Example request body @@ -77311,9 +77942,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: - default: *520 + default: *528 '409': description: Response x-github: @@ -77335,8 +77966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -77359,8 +77990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -77370,9 +78001,9 @@ paths: application/json: schema: type: array - items: *521 + items: *529 examples: - default: &691 + default: &699 value: - id: 1 repository: @@ -77503,9 +78134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *338 - - *339 - - *260 + - *346 + - *347 + - *264 requestBody: required: false content: @@ -77534,7 +78165,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *529 examples: default: value: @@ -77665,9 +78296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *338 - - *339 - - *260 + - *346 + - *347 + - *264 responses: '204': description: Response @@ -77698,8 +78329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *338 - - *339 + - *346 + - *347 - 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 @@ -77739,7 +78370,7 @@ paths: required: false schema: type: string - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -77752,7 +78383,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -77762,9 +78393,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: &530 + default: &538 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77912,7 +78543,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *352 + '301': *360 '422': *15 '404': *6 x-github: @@ -77941,8 +78572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -78023,9 +78654,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: &525 + default: &533 value: id: 1 node_id: MDU6SXNzdWUx @@ -78179,9 +78810,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *121 + '503': *124 '404': *6 - '410': *349 + '410': *357 x-github: triggersNotification: true githubCloudOnly: false @@ -78209,9 +78840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *338 - - *339 - - *150 + - *346 + - *347 + - *153 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -78221,7 +78852,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -78231,9 +78862,9 @@ paths: application/json: schema: type: array - items: *522 + items: *530 examples: - default: &527 + default: &535 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78291,17 +78922,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: &523 + default: &531 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78355,9 +78986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -78379,9 +79010,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: *523 + default: *531 '422': *15 x-github: githubCloudOnly: false @@ -78399,9 +79030,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -78421,9 +79052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 comment. @@ -78449,9 +79080,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -78472,9 +79103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -78506,16 +79137,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -78537,10 +79168,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -78560,8 +79191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -78571,7 +79202,7 @@ paths: application/json: schema: type: array - items: &524 + items: &532 title: Issue Event description: Issue Event type: object @@ -78618,7 +79249,7 @@ paths: issue: anyOf: - type: 'null' - - *141 + - *144 label: title: Issue Event Label description: Issue Event Label @@ -78651,7 +79282,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *261 + requested_team: *265 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78718,7 +79349,7 @@ paths: required: - from - to - author_association: *128 + author_association: *131 lock_reason: type: - string @@ -78910,8 +79541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *338 - - *339 + - *346 + - *347 - name: event_id in: path required: true @@ -78922,7 +79553,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *532 examples: default: value: @@ -79115,7 +79746,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *349 + '410': *357 '403': *27 x-github: githubCloudOnly: false @@ -79149,9 +79780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *338 - - *339 - - &526 + - *346 + - *347 + - &534 name: issue_number description: The number that identifies the issue. in: path @@ -79163,12 +79794,12 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 - '301': *352 + default: *533 + '301': *360 '404': *6 - '410': *349 + '410': *357 '304': *35 x-github: githubCloudOnly: false @@ -79193,9 +79824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -79303,15 +79934,15 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 '422': *15 - '503': *121 + '503': *124 '403': *27 - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79329,9 +79960,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -79357,9 +79988,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79375,9 +80006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: content: application/json: @@ -79402,9 +80033,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79426,9 +80057,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: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - name: assignee in: path required: true @@ -79468,10 +80099,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *338 - - *339 - - *526 - - *131 + - *346 + - *347 + - *534 + - *134 - *17 - *19 responses: @@ -79481,13 +80112,13 @@ paths: application/json: schema: type: array - items: *522 + items: *530 examples: - default: *527 + default: *535 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79516,9 +80147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -79540,16 +80171,16 @@ paths: description: Response content: application/json: - schema: *522 + schema: *530 examples: - default: *523 + default: *531 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *349 + '410': *357 '422': *15 '404': *6 x-github: @@ -79569,9 +80200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -79585,7 +80216,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &531 + - &539 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79634,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &540 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79762,7 +80393,7 @@ paths: - performed_via_github_app - assignee - assigner - - &533 + - &541 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79808,7 +80439,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &542 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79854,7 +80485,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &543 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79903,7 +80534,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &544 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79932,7 +80563,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *261 + requested_team: *265 requested_reviewer: *4 required: - review_requester @@ -79945,7 +80576,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &545 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79974,7 +80605,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *261 + requested_team: *265 requested_reviewer: *4 required: - review_requester @@ -79987,7 +80618,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &546 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80043,7 +80674,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &547 title: Locked Issue Event description: Locked Issue Event type: object @@ -80088,7 +80719,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &548 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80149,7 +80780,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &549 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80210,7 +80841,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &550 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80271,7 +80902,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &551 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80364,7 +80995,7 @@ paths: color: red headers: Link: *37 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80381,9 +81012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -80393,7 +81024,7 @@ paths: application/json: schema: type: array - items: &528 + items: &536 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80448,7 +81079,7 @@ paths: - color - default examples: - default: &529 + default: &537 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80466,9 +81097,9 @@ paths: default: false headers: Link: *37 - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80485,9 +81116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80546,12 +81177,12 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 - '301': *352 + default: *537 + '301': *360 '404': *6 - '410': *349 + '410': *357 '422': *15 x-github: githubCloudOnly: false @@ -80568,9 +81199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80630,12 +81261,12 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 - '301': *352 + default: *537 + '301': *360 '404': *6 - '410': *349 + '410': *357 '422': *15 x-github: githubCloudOnly: false @@ -80652,15 +81283,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 responses: '204': description: Response - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80679,9 +81310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - name: name in: path required: true @@ -80694,7 +81325,7 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: default: value: @@ -80705,9 +81336,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *352 + '301': *360 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80727,9 +81358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: false content: @@ -80758,7 +81389,7 @@ paths: '204': description: Response '403': *27 - '410': *349 + '410': *357 '404': *6 '422': *15 x-github: @@ -80776,9 +81407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 responses: '204': description: Response @@ -80800,9 +81431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - 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. @@ -80828,13 +81459,13 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80852,9 +81483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -80886,16 +81517,16 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -80917,10 +81548,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: + - *346 + - *347 + - *534 - *338 - - *339 - - *526 - - *330 responses: '204': description: Response @@ -80949,9 +81580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -80961,7 +81592,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -80973,9 +81604,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81008,9 +81639,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -81020,13 +81651,13 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *530 + default: *538 headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81054,9 +81685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -81066,7 +81697,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -81082,16 +81714,16 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *349 + '410': *357 '422': *15 '404': *6 x-github: @@ -81111,9 +81743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 requestBody: required: true content: @@ -81144,13 +81776,13 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *525 + default: *533 '403': *27 '404': *6 '422': *7 - '503': *121 + '503': *124 x-github: triggersNotification: true githubCloudOnly: false @@ -81168,9 +81800,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *338 - - *339 - - *526 + - *346 + - *347 + - *534 - *17 - *19 responses: @@ -81185,19 +81817,19 @@ paths: description: Timeline Event type: object anyOf: - - *531 - - *532 - - *533 - - *534 - - *535 - - *536 - - *537 - - *538 - *539 - *540 - *541 - *542 - *543 + - *544 + - *545 + - *546 + - *547 + - *548 + - *549 + - *550 + - *551 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81245,12 +81877,12 @@ paths: issue_url: type: string format: uri - author_association: *128 + author_association: *131 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - event - actor @@ -81281,7 +81913,7 @@ paths: properties: type: type: string - issue: *141 + issue: *144 required: - event - created_at @@ -81497,7 +82129,7 @@ paths: type: string body_text: type: string - author_association: *128 + author_association: *131 required: - event - id @@ -81520,7 +82152,7 @@ paths: type: string comments: type: array - items: &563 + items: &571 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81625,7 +82257,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *128 + author_association: *131 _links: type: object properties: @@ -81720,7 +82352,7 @@ paths: enum: - line - file - reactions: *129 + reactions: *132 body_html: type: string examples: @@ -81758,7 +82390,7 @@ paths: type: string comments: type: array - items: *458 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82033,7 +82665,7 @@ paths: headers: Link: *37 '404': *6 - '410': *349 + '410': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82050,8 +82682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -82061,7 +82693,7 @@ paths: application/json: schema: type: array - items: &544 + items: &552 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82128,8 +82760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82165,9 +82797,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *552 examples: - default: &545 + default: &553 value: id: 1 key: ssh-rsa AAA... @@ -82201,9 +82833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *338 - - *339 - - &546 + - *346 + - *347 + - &554 name: key_id description: The unique identifier of the key. in: path @@ -82215,9 +82847,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *552 examples: - default: *545 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -82235,9 +82867,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *338 - - *339 - - *546 + - *346 + - *347 + - *554 responses: '204': description: Response @@ -82257,8 +82889,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -82268,9 +82900,9 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 + default: *537 headers: Link: *37 '404': *6 @@ -82291,8 +82923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82328,9 +82960,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: - default: &547 + default: &555 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82362,8 +82994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82374,9 +83006,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: - default: *547 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -82393,8 +83025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82433,7 +83065,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *536 examples: default: value: @@ -82459,8 +83091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *338 - - *339 + - *346 + - *347 - name: name in: path required: true @@ -82486,8 +83118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -82523,8 +83155,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '202': *91 '403': @@ -82552,8 +83184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -82579,9 +83211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *338 - - *339 - - *436 + - *346 + - *347 + - *444 responses: '200': description: Response @@ -82647,7 +83279,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 required: - _links - git_url @@ -82728,8 +83360,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82794,8 +83426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82829,9 +83461,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *459 + schema: *467 examples: - default: *548 + default: *556 '204': description: Response when already merged '404': @@ -82856,8 +83488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82898,7 +83530,7 @@ paths: application/json: schema: type: array - items: *463 + items: *471 examples: default: value: @@ -82954,8 +83586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -82995,9 +83627,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: &549 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83056,9 +83688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *338 - - *339 - - &550 + - *346 + - *347 + - &558 name: milestone_number description: The number that identifies the milestone. in: path @@ -83070,9 +83702,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: *549 + default: *557 '404': *6 x-github: githubCloudOnly: false @@ -83089,9 +83721,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 requestBody: required: false content: @@ -83129,9 +83761,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *471 examples: - default: *549 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83147,9 +83779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 responses: '204': description: Response @@ -83170,9 +83802,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: - - *338 - - *339 - - *550 + - *346 + - *347 + - *558 - *17 - *19 responses: @@ -83182,9 +83814,9 @@ paths: application/json: schema: type: array - items: *528 + items: *536 examples: - default: *529 + default: *537 headers: Link: *37 x-github: @@ -83203,12 +83835,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: - - *338 - - *339 - - *551 - - *552 - - *131 - - *553 + - *346 + - *347 + - *559 + - *560 + - *134 + - *561 - *17 - *19 responses: @@ -83218,9 +83850,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *554 + default: *562 headers: Link: *37 x-github: @@ -83244,8 +83876,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -83303,14 +83935,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &555 + schema: &563 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83454,7 +84086,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &564 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83495,8 +84127,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -83551,9 +84183,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *563 examples: - default: *556 + default: *564 '422': *15 '409': *90 x-github: @@ -83576,8 +84208,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -83685,8 +84317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -83712,8 +84344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -83723,7 +84355,7 @@ paths: application/json: schema: type: array - items: &557 + items: &565 title: Page Build description: Page Build type: object @@ -83815,8 +84447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *338 - - *339 + - *346 + - *347 responses: '201': description: Response @@ -83863,16 +84495,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *557 + schema: *565 examples: - default: &558 + default: &566 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83920,8 +84552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *338 - - *339 + - *346 + - *347 - name: build_id in: path required: true @@ -83932,9 +84564,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *565 examples: - default: *558 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83954,8 +84586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84064,9 +84696,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: - - *338 - - *339 - - &559 + - *346 + - *347 + - &567 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84124,11 +84756,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *338 - - *339 - - *559 + - *346 + - *347 + - *567 responses: - '204': *108 + '204': *111 '404': *6 x-github: githubCloudOnly: false @@ -84153,8 +84785,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -84422,7 +85054,7 @@ paths: description: Empty response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -84449,8 +85081,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Private vulnerability reporting status @@ -84487,10 +85119,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: - '204': *108 + '204': *111 '422': *14 x-github: githubCloudOnly: false @@ -84509,10 +85141,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *338 - - *339 + - *346 + - *347 responses: - '204': *108 + '204': *111 '422': *14 x-github: githubCloudOnly: false @@ -84533,8 +85165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: Indicates the state of the projects to return. in: query @@ -84555,7 +85187,7 @@ paths: application/json: schema: type: array - items: *291 + items: *295 examples: default: value: @@ -84595,7 +85227,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -84615,8 +85247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84642,13 +85274,13 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: - default: *348 + default: *356 '401': *23 '403': *27 '404': *6 - '410': *349 + '410': *357 '422': *7 x-github: githubCloudOnly: false @@ -84668,8 +85300,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -84677,7 +85309,7 @@ paths: application/json: schema: type: array - items: *293 + items: *297 examples: default: value: @@ -84708,8 +85340,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84721,7 +85353,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *293 + items: *297 required: - properties examples: @@ -84771,8 +85403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *338 - - *339 + - *346 + - *347 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84832,9 +85464,9 @@ paths: application/json: schema: type: array - items: *560 + items: *568 examples: - default: *561 + default: *569 headers: Link: *37 '304': *35 @@ -84866,8 +85498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -84934,7 +85566,7 @@ paths: description: Response content: application/json: - schema: &565 + schema: &573 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85063,7 +85695,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 active_lock_reason: type: - string @@ -85118,7 +85750,7 @@ paths: type: - array - 'null' - items: *274 + items: *278 head: type: object properties: @@ -85156,14 +85788,14 @@ paths: _links: type: object properties: - comments: *464 - commits: *464 - statuses: *464 - html: *464 - issue: *464 - review_comments: *464 - review_comment: *464 - self: *464 + comments: *472 + commits: *472 + statuses: *472 + html: *472 + issue: *472 + review_comments: *472 + review_comment: *472 + self: *472 required: - comments - commits @@ -85173,8 +85805,8 @@ paths: - review_comments - review_comment - self - author_association: *128 - auto_merge: *562 + author_association: *131 + auto_merge: *570 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85276,7 +85908,7 @@ paths: - merged_by - review_comments examples: - default: &566 + default: &574 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85803,8 +86435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *338 - - *339 + - *346 + - *347 - name: sort in: query required: false @@ -85823,7 +86455,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -85833,9 +86465,9 @@ paths: application/json: schema: type: array - items: *563 + items: *571 examples: - default: &568 + default: &576 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85912,17 +86544,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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '200': description: Response content: application/json: - schema: *563 + schema: *571 examples: - default: &564 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85997,9 +86629,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -86021,9 +86653,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: - default: *564 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86039,9 +86671,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 responses: '204': description: Response @@ -86062,9 +86694,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 - 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 pull request review comment. @@ -86090,9 +86722,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -86113,9 +86745,9 @@ 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: - - *338 - - *339 - - *140 + - *346 + - *347 + - *143 requestBody: required: true content: @@ -86147,16 +86779,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -86178,10 +86810,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: + - *346 + - *347 + - *143 - *338 - - *339 - - *140 - - *330 responses: '204': description: Response @@ -86224,9 +86856,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *338 - - *339 - - &567 + - *346 + - *347 + - &575 name: pull_number description: The number that identifies the pull request. in: path @@ -86239,9 +86871,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *565 + schema: *573 examples: - default: *566 + default: *574 '304': *35 '404': *6 '406': @@ -86250,7 +86882,7 @@ paths: application/json: schema: *3 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86276,9 +86908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -86320,9 +86952,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *573 examples: - default: *566 + default: *574 '422': *15 '403': *27 x-github: @@ -86344,9 +86976,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -86407,21 +87039,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86447,10 +87079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *338 - - *339 - - *567 - - *150 + - *346 + - *347 + - *575 + - *153 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -86460,7 +87092,7 @@ paths: enum: - asc - desc - - *131 + - *134 - *17 - *19 responses: @@ -86470,9 +87102,9 @@ paths: application/json: schema: type: array - items: *563 + items: *571 examples: - default: *568 + default: *576 headers: Link: *37 x-github: @@ -86505,9 +87137,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -86613,7 +87245,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: example-for-a-multi-line-comment: value: @@ -86701,10 +87333,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *338 - - *339 - - *567 - - *140 + - *346 + - *347 + - *575 + - *143 requestBody: required: true content: @@ -86726,7 +87358,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *571 examples: default: value: @@ -86812,9 +87444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -86824,9 +87456,9 @@ paths: application/json: schema: type: array - items: *459 + items: *467 examples: - default: *569 + default: *577 headers: Link: *37 x-github: @@ -86856,9 +87488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -86868,7 +87500,7 @@ paths: application/json: schema: type: array - items: *471 + items: *479 examples: default: value: @@ -86887,7 +87519,7 @@ paths: Link: *37 '422': *15 '500': *93 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86906,9 +87538,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 responses: '204': description: Response if pull request has been merged @@ -86931,9 +87563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -87045,9 +87677,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 responses: '200': description: Response @@ -87063,7 +87695,7 @@ paths: items: *4 teams: type: array - items: *261 + items: *265 required: - users - teams @@ -87122,9 +87754,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -87161,7 +87793,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *568 examples: default: value: @@ -87697,9 +88329,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: true content: @@ -87733,7 +88365,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *568 examples: default: value: @@ -88238,9 +88870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 - *17 - *19 responses: @@ -88250,7 +88882,7 @@ paths: application/json: schema: type: array - items: &570 + items: &578 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88324,7 +88956,7 @@ paths: type: string body_text: type: string - author_association: *128 + author_association: *131 required: - id - node_id @@ -88406,9 +89038,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: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -88498,9 +89130,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: &572 + default: &580 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88563,10 +89195,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: - - *338 - - *339 - - *567 - - &571 + - *346 + - *347 + - *575 + - &579 name: review_id description: The unique identifier of the review. in: path @@ -88578,9 +89210,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: &573 + default: &581 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88639,10 +89271,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -88665,7 +89297,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: default: value: @@ -88727,18 +89359,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 responses: '200': description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: *572 + default: *580 '422': *7 '404': *6 x-github: @@ -88765,10 +89397,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 - *17 - *19 responses: @@ -88862,13 +89494,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *128 + author_association: *131 _links: type: object properties: - self: *464 - html: *464 - pull_request: *464 + self: *472 + html: *472 + pull_request: *472 required: - self - html @@ -88877,7 +89509,7 @@ paths: type: string body_html: type: string - reactions: *129 + reactions: *132 side: description: The side of the first line of the range for a multi-line comment. @@ -89019,10 +89651,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -89051,7 +89683,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: default: value: @@ -89114,10 +89746,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: - - *338 - - *339 - - *567 - - *571 + - *346 + - *347 + - *575 + - *579 requestBody: required: true content: @@ -89152,9 +89784,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *578 examples: - default: *573 + default: *581 '404': *6 '422': *7 '403': *27 @@ -89176,9 +89808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *338 - - *339 - - *567 + - *346 + - *347 + - *575 requestBody: required: false content: @@ -89242,8 +89874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *338 - - *339 + - *346 + - *347 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89256,9 +89888,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *582 examples: - default: &575 + default: &583 value: type: file encoding: base64 @@ -89300,8 +89932,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: - - *338 - - *339 + - *346 + - *347 - name: dir description: The alternate path to look for a README file in: path @@ -89321,9 +89953,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *582 examples: - default: *575 + default: *583 '404': *6 '422': *15 x-github: @@ -89345,8 +89977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -89356,7 +89988,7 @@ paths: application/json: schema: type: array - items: &576 + items: &584 title: Release description: A release. type: object @@ -89428,7 +90060,7 @@ paths: author: *4 assets: type: array - items: &577 + items: &585 title: Release Asset description: Data related to a release. type: object @@ -89498,7 +90130,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *129 + reactions: *132 required: - assets_url - upload_url @@ -89608,8 +90240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -89685,9 +90317,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: &580 + default: &588 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89790,9 +90422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *338 - - *339 - - &578 + - *346 + - *347 + - &586 name: asset_id description: The unique identifier of the asset. in: path @@ -89804,9 +90436,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *585 examples: - default: &579 + default: &587 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 @@ -89840,7 +90472,7 @@ paths: type: User site_admin: false '404': *6 - '302': *473 + '302': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89856,9 +90488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *338 - - *339 - - *578 + - *346 + - *347 + - *586 requestBody: required: false content: @@ -89887,9 +90519,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *585 examples: - default: *579 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89905,9 +90537,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *338 - - *339 - - *578 + - *346 + - *347 + - *586 responses: '204': description: Response @@ -89931,8 +90563,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -90018,16 +90650,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90044,8 +90676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *338 - - *339 + - *346 + - *347 - name: tag description: tag parameter in: path @@ -90058,9 +90690,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 '404': *6 x-github: githubCloudOnly: false @@ -90082,9 +90714,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *338 - - *339 - - &581 + - *346 + - *347 + - &589 name: release_id description: The unique identifier of the release. in: path @@ -90098,9 +90730,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: *576 + schema: *584 examples: - default: *580 + default: *588 '401': description: Unauthorized x-github: @@ -90118,9 +90750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 requestBody: required: false content: @@ -90184,9 +90816,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *584 examples: - default: *580 + default: *588 '404': description: Not Found if the discussion category name is invalid content: @@ -90207,9 +90839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 responses: '204': description: Response @@ -90229,9 +90861,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - *17 - *19 responses: @@ -90241,7 +90873,7 @@ paths: application/json: schema: type: array - items: *577 + items: *585 examples: default: value: @@ -90322,9 +90954,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: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - name: name in: query required: true @@ -90350,7 +90982,7 @@ paths: description: Response for successful upload content: application/json: - schema: *577 + schema: *585 examples: response-for-successful-upload: value: @@ -90404,9 +91036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 - 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. @@ -90430,9 +91062,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 '404': *6 @@ -90453,9 +91085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *338 - - *339 - - *581 + - *346 + - *347 + - *589 requestBody: required: true content: @@ -90485,16 +91117,16 @@ paths: description: Reaction exists content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '201': description: Reaction created content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -90516,10 +91148,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: + - *346 + - *347 + - *589 - *338 - - *339 - - *581 - - *330 responses: '204': description: Response @@ -90543,9 +91175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *338 - - *339 - - *397 + - *346 + - *347 + - *405 - *17 - *19 responses: @@ -90561,8 +91193,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *582 - - &584 + - *590 + - &592 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90581,54 +91213,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *583 - - *584 - - allOf: - - *585 - - *584 - - allOf: - - *586 - - *584 - - allOf: - - *587 - - *584 - - allOf: - - *588 - - *584 - - allOf: - - *589 - - *584 - - allOf: - - *590 - - *584 - allOf: - *591 - - *584 - - allOf: - *592 - - *584 - allOf: - *593 - - *584 + - *592 - allOf: - *594 - - *584 + - *592 - allOf: - *595 - - *584 + - *592 - allOf: - *596 - - *584 + - *592 - allOf: - *597 - - *584 + - *592 - allOf: - *598 - - *584 + - *592 - allOf: - *599 - - *584 + - *592 + - allOf: + - *600 + - *592 + - allOf: + - *601 + - *592 + - allOf: + - *602 + - *592 + - allOf: + - *603 + - *592 + - allOf: + - *604 + - *592 + - allOf: + - *605 + - *592 + - allOf: + - *606 + - *592 + - allOf: + - *607 + - *592 examples: default: value: @@ -90667,8 +91299,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 - name: includes_parents @@ -90679,7 +91311,7 @@ paths: schema: type: boolean default: true - - *600 + - *608 responses: '200': description: Response @@ -90687,7 +91319,7 @@ paths: application/json: schema: type: array - items: *118 + items: *121 examples: default: value: @@ -90734,8 +91366,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 requestBody: description: Request body required: true @@ -90755,16 +91387,16 @@ paths: - tag - push default: branch - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *111 + items: *119 + conditions: *114 rules: type: array description: An array of rules within the ruleset. - items: *117 + items: *120 required: - name - enforcement @@ -90795,9 +91427,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: &609 + default: &617 value: id: 42 name: super cool ruleset @@ -90844,12 +91476,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *338 - - *339 - - *601 - - *299 - - *602 - - *603 + - *346 + - *347 + - *609 + - *303 + - *610 + - *611 - *17 - *19 responses: @@ -90857,9 +91489,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *612 examples: - default: *605 + default: *613 '404': *6 '500': *93 x-github: @@ -90880,17 +91512,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *338 - - *339 - - *606 + - *346 + - *347 + - *614 responses: '200': description: Response content: application/json: - schema: *607 + schema: *615 examples: - default: *608 + default: *616 '404': *6 '500': *93 x-github: @@ -90918,8 +91550,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90939,9 +91571,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *609 + default: *617 '404': *6 '500': *93 put: @@ -90959,8 +91591,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90985,16 +91617,16 @@ paths: - branch - tag - push - enforcement: *115 + enforcement: *118 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *116 - conditions: *111 + items: *119 + conditions: *114 rules: description: An array of rules within the ruleset. type: array - items: *117 + items: *120 examples: default: value: @@ -91022,9 +91654,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *121 examples: - default: *609 + default: *617 '404': *6 '500': *93 delete: @@ -91042,8 +91674,8 @@ paths: category: repos subcategory: rules parameters: - - *338 - - *339 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91071,20 +91703,20 @@ 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: - - *338 - - *339 - - *301 - - *302 - - *303 - - *304 - - *82 - - *19 - - *17 - - *610 - - *611 + - *346 + - *347 - *305 - *306 - *307 + - *308 + - *82 + - *19 + - *17 + - *618 + - *619 + - *309 + - *310 + - *311 responses: '200': description: Response @@ -91092,7 +91724,7 @@ paths: application/json: schema: type: array - items: &614 + items: &622 type: object properties: number: *94 @@ -91108,8 +91740,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *612 - resolution: *613 + state: *620 + resolution: *621 resolved_at: type: - string @@ -91300,7 +91932,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91322,15 +91954,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 responses: '200': description: Response content: application/json: - schema: *614 + schema: *622 examples: default: value: @@ -91361,7 +91993,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91382,9 +92014,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 requestBody: required: true content: @@ -91392,8 +92024,8 @@ paths: schema: type: object properties: - state: *612 - resolution: *613 + state: *620 + resolution: *621 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -91412,7 +92044,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *622 examples: default: value: @@ -91465,7 +92097,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91487,9 +92119,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: - - *338 - - *339 - - *430 + - *346 + - *347 + - *438 - *19 - *17 responses: @@ -91500,7 +92132,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &770 + items: &778 type: object properties: type: @@ -91857,7 +92489,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91879,8 +92511,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -91888,14 +92520,14 @@ paths: schema: type: object properties: - reason: &616 + reason: &624 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *615 + placeholder_id: *623 required: - reason - placeholder_id @@ -91912,7 +92544,7 @@ paths: schema: type: object properties: - reason: *616 + reason: *624 expire_at: type: - string @@ -91936,7 +92568,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *121 + '503': *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91956,13 +92588,13 @@ 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: - - *338 - - *339 + - *346 + - *347 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *121 + '503': *124 '200': description: Response content: @@ -91972,7 +92604,7 @@ paths: properties: incremental_scans: type: array - items: &617 + items: &625 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92000,15 +92632,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *617 + items: *625 backfill_scans: type: array - items: *617 + items: *625 custom_pattern_backfill_scans: type: array items: allOf: - - *617 + - *625 - type: object properties: pattern_name: @@ -92078,8 +92710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *338 - - *339 + - *346 + - *347 - *82 - name: sort description: The property to sort the results by. @@ -92123,9 +92755,9 @@ paths: application/json: schema: type: array - items: *618 + items: *626 examples: - default: *619 + default: *627 '400': *14 '404': *6 x-github: @@ -92148,8 +92780,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -92229,7 +92861,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 required: - login - type @@ -92319,9 +92951,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: &621 + default: &629 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92554,8 +93186,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -92668,7 +93300,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: default: value: @@ -92815,17 +93447,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '200': description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: *621 + default: *629 '403': *27 '404': *6 x-github: @@ -92849,9 +93481,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 requestBody: required: true content: @@ -92931,7 +93563,7 @@ paths: login: type: string description: The username of the user credited. - type: *310 + type: *314 required: - login - type @@ -93022,17 +93654,17 @@ paths: description: Response content: application/json: - schema: *618 + schema: *626 examples: - default: *621 - add_credit: *621 + default: *629 + add_credit: *629 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *166 + schema: *169 examples: invalid_state_transition: value: @@ -93063,9 +93695,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '202': *91 '400': *14 @@ -93092,17 +93724,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: - - *338 - - *339 - - *620 + - *346 + - *347 + - *628 responses: '202': description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 '400': *14 '422': *15 '403': *27 @@ -93128,8 +93760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -93225,8 +93857,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93235,7 +93867,7 @@ paths: application/json: schema: type: array - items: &622 + items: &630 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93248,7 +93880,7 @@ paths: - 1124 - -435 '202': *91 - '204': *108 + '204': *111 '422': description: Repository contains more than 10,000 commits x-github: @@ -93268,8 +93900,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -93320,7 +93952,7 @@ paths: total: 89 week: 1336280400 '202': *91 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93347,8 +93979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -93420,7 +94052,7 @@ paths: d: 77 c: 10 '202': *91 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93442,8 +94074,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93597,8 +94229,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93608,7 +94240,7 @@ paths: application/json: schema: type: array - items: *622 + items: *630 examples: default: value: @@ -93621,7 +94253,7 @@ paths: - - 0 - 2 - 21 - '204': *108 + '204': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93641,8 +94273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *338 - - *339 + - *346 + - *347 - name: sha in: path required: true @@ -93698,7 +94330,7 @@ paths: description: Response content: application/json: - schema: *623 + schema: *631 examples: default: value: @@ -93752,8 +94384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -93765,7 +94397,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -93785,14 +94417,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &624 + schema: &632 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93865,8 +94497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: false content: @@ -93892,7 +94524,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *632 examples: default: value: @@ -93919,8 +94551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -93940,8 +94572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -94023,8 +94655,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: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94032,7 +94664,7 @@ paths: application/json: schema: type: array - items: &625 + items: &633 title: Tag protection description: Tag protection type: object @@ -94089,8 +94721,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: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94113,7 +94745,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *633 examples: default: value: @@ -94144,8 +94776,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: - - *338 - - *339 + - *346 + - *347 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94182,8 +94814,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *338 - - *339 + - *346 + - *347 - name: ref in: path required: true @@ -94219,8 +94851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *338 - - *339 + - *346 + - *347 - *17 - *19 responses: @@ -94230,9 +94862,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - default: *275 + default: *279 headers: Link: *37 '404': *6 @@ -94252,8 +94884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *338 - - *339 + - *346 + - *347 - *19 - *17 responses: @@ -94261,7 +94893,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &634 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94273,7 +94905,7 @@ paths: required: - names examples: - default: &627 + default: &635 value: names: - octocat @@ -94296,8 +94928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94328,9 +94960,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *634 examples: - default: *627 + default: *635 '404': *6 '422': *7 x-github: @@ -94351,9 +94983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *338 - - *339 - - &628 + - *346 + - *347 + - &636 name: per description: The time frame to display results for. in: query @@ -94384,7 +95016,7 @@ paths: - 128 clones: type: array - items: &629 + items: &637 title: Traffic type: object properties: @@ -94471,8 +95103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94566,8 +95198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *338 - - *339 + - *346 + - *347 responses: '200': description: Response @@ -94630,9 +95262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *338 - - *339 - - *628 + - *346 + - *347 + - *636 responses: '200': description: Response @@ -94653,7 +95285,7 @@ paths: - 3782 views: type: array - items: *629 + items: *637 required: - uniques - count @@ -94730,8 +95362,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *338 - - *339 + - *346 + - *347 requestBody: required: true content: @@ -94767,7 +95399,7 @@ paths: description: Response content: application/json: - schema: *183 + schema: *186 examples: default: value: @@ -95005,8 +95637,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -95029,8 +95661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -95052,8 +95684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -95079,8 +95711,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *338 - - *339 + - *346 + - *347 - name: ref in: path required: true @@ -95172,9 +95804,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95215,7 +95847,7 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: default: value: @@ -95325,7 +95957,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &637 + - &645 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -95335,7 +95967,7 @@ paths: type: string examples: - members - - &642 + - &650 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -95347,7 +95979,7 @@ paths: format: int32 examples: - 1 - - &643 + - &651 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -95391,7 +96023,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &631 + items: &639 allOf: - type: object required: @@ -95473,7 +96105,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: &644 + meta: &652 type: object description: The metadata associated with the creation/updates to the user. @@ -95538,31 +96170,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &632 + '400': &640 description: Bad request content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '401': &633 + schema: *638 + '401': &641 description: Authorization failure - '403': &634 + '403': &642 description: Permission denied - '429': &635 + '429': &643 description: Too many requests content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '500': &636 + schema: *638 + '500': &644 description: Internal server error content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 + schema: *638 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95586,7 +96218,7 @@ paths: required: true content: application/json: - schema: &640 + schema: &648 type: object required: - schemas @@ -95646,9 +96278,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *631 + schema: *639 examples: - group: &638 + group: &646 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -95667,13 +96299,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': *632 - '401': *633 - '403': *634 - '409': &641 + '400': *640 + '401': *641 + '403': *642 + '409': &649 description: Duplicate record detected - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95690,7 +96322,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: - - &639 + - &647 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -95699,22 +96331,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *637 + - *645 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *631 + schema: *639 examples: - default: *638 - '400': *632 - '401': *633 - '403': *634 + default: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95733,13 +96365,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: - - *639 + - *647 - *38 requestBody: required: true content: application/json: - schema: *640 + schema: *648 examples: group: summary: Group @@ -95765,17 +96397,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *631 + schema: *639 examples: - group: *638 - groupWithMembers: *638 - '400': *632 - '401': *633 - '403': *634 + group: *646 + groupWithMembers: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95799,13 +96431,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: - - *639 + - *647 - *38 requestBody: required: true content: application/json: - schema: &651 + schema: &659 type: object required: - Operations @@ -95865,17 +96497,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *631 + schema: *639 examples: - updateGroup: *638 - addMembers: *638 - '400': *632 - '401': *633 - '403': *634 + updateGroup: *646 + addMembers: *646 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95891,17 +96523,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: - - *639 + - *647 - *38 responses: '204': description: Group was deleted, no content - '400': *632 - '401': *633 - '403': *634 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95935,8 +96567,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *642 - - *643 + - *650 + - *651 - *38 responses: '200': @@ -95970,7 +96602,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &646 + items: &654 allOf: - type: object required: @@ -96062,7 +96694,7 @@ paths: address. examples: - true - roles: &645 + roles: &653 type: array description: The roles assigned to the user. items: @@ -96121,7 +96753,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *644 + meta: *652 startIndex: type: integer description: A starting index for the returned page @@ -96160,11 +96792,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *632 - '401': *633 - '403': *634 - '429': *635 - '500': *636 + '400': *640 + '401': *641 + '403': *642 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96188,7 +96820,7 @@ paths: required: true content: application/json: - schema: &649 + schema: &657 type: object required: - schemas @@ -96281,9 +96913,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *645 + roles: *653 examples: - user: &650 + user: &658 summary: User value: schemas: @@ -96330,9 +96962,9 @@ paths: description: User has been created content: application/scim+json: - schema: *646 + schema: *654 examples: - user: &647 + user: &655 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96358,13 +96990,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: *647 - '400': *632 - '401': *633 - '403': *634 - '409': *641 - '429': *635 - '500': *636 + enterpriseOwner: *655 + '400': *640 + '401': *641 + '403': *642 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96381,7 +97013,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: - - &648 + - &656 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -96394,15 +97026,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *646 + schema: *654 examples: - default: *647 - '400': *632 - '401': *633 - '403': *634 + default: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96424,30 +97056,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: - - *648 + - *656 - *38 requestBody: required: true content: application/json: - schema: *649 + schema: *657 examples: - user: *650 + user: *658 responses: '200': description: User was updated content: application/scim+json: - schema: *646 + schema: *654 examples: - user: *647 - '400': *632 - '401': *633 - '403': *634 + user: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96482,13 +97114,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: - - *648 + - *656 - *38 requestBody: required: true content: application/json: - schema: *651 + schema: *659 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -96528,18 +97160,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *646 - examples: - userMultiValuedProperties: *647 - userSingleValuedProperties: *647 - disableUser: *647 - '400': *632 - '401': *633 - '403': *634 + schema: *654 + examples: + userMultiValuedProperties: *655 + userSingleValuedProperties: *655 + disableUser: *655 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '409': *641 - '429': *635 - '500': *636 + '409': *649 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96559,17 +97191,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: - - *648 + - *656 - *38 responses: '204': description: User was deleted, no content - '400': *632 - '401': *633 - '403': *634 + '400': *640 + '401': *641 + '403': *642 '404': *6 - '429': *635 - '500': *636 + '429': *643 + '500': *644 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96602,7 +97234,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *163 + - *166 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -96660,7 +97292,7 @@ paths: - 1 Resources: type: array - items: &652 + items: &660 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -96907,22 +97539,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &653 + '404': &661 description: Resource not found content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '403': &654 + schema: *638 + '403': &662 description: Forbidden content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '400': *632 - '429': *635 + schema: *638 + '400': *640 + '429': *643 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -96942,15 +97574,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *163 + - *166 responses: '201': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: &655 + default: &663 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96973,17 +97605,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *653 - '403': *654 - '500': *636 + '404': *661 + '403': *662 + '500': *644 '409': description: Conflict content: application/json: - schema: *630 + schema: *638 application/scim+json: - schema: *630 - '400': *632 + schema: *638 + '400': *640 requestBody: required: true content: @@ -97077,18 +97709,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 - '404': *653 - '403': *654 + default: *663 + '404': *661 + '403': *662 '304': *35 x-github: githubCloudOnly: true @@ -97111,19 +97743,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 + default: *663 '304': *35 - '404': *653 - '403': *654 + '404': *661 + '403': *662 requestBody: required: true content: @@ -97233,20 +97865,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *163 - - *648 + - *166 + - *656 responses: '200': description: Response content: application/scim+json: - schema: *652 + schema: *660 examples: - default: *655 + default: *663 '304': *35 - '404': *653 - '403': *654 - '400': *632 + '404': *661 + '403': *662 + '400': *640 '429': description: Response content: @@ -97341,13 +97973,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *163 - - *648 + - *166 + - *656 responses: '204': description: Response - '404': *653 - '403': *654 + '404': *661 + '403': *662 '304': *35 x-github: githubCloudOnly: true @@ -97462,7 +98094,7 @@ paths: html_url: type: string format: uri - repository: *183 + repository: *186 score: type: number file_size: @@ -97481,7 +98113,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &656 + text_matches: &664 title: Search Result Text Matches type: array items: @@ -97596,7 +98228,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *121 + '503': *124 '422': *15 '403': *27 x-github: @@ -97645,7 +98277,7 @@ paths: enum: - author-date - committer-date - - &657 + - &665 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 @@ -97714,7 +98346,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 comment_count: type: integer message: @@ -97733,7 +98365,7 @@ paths: url: type: string format: uri - verification: *508 + verification: *516 required: - author - committer @@ -97748,7 +98380,7 @@ paths: committer: anyOf: - type: 'null' - - *395 + - *403 parents: type: array items: @@ -97760,12 +98392,12 @@ paths: type: string sha: type: string - repository: *183 + repository: *186 score: type: number node_id: type: string - text_matches: *656 + text_matches: *664 required: - sha - node_id @@ -97958,7 +98590,7 @@ paths: - interactions - created - updated - - *657 + - *665 - *17 - *19 responses: @@ -98074,7 +98706,7 @@ paths: milestone: anyOf: - type: 'null' - - *463 + - *471 comments: type: integer created_at: @@ -98088,7 +98720,7 @@ paths: - string - 'null' format: date-time - text_matches: *656 + text_matches: *664 pull_request: type: object properties: @@ -98126,7 +98758,7 @@ paths: type: string score: type: number - author_association: *128 + author_association: *131 draft: type: boolean repository: *61 @@ -98141,7 +98773,7 @@ paths: anyOf: - type: 'null' - *5 - reactions: *129 + reactions: *132 required: - assignee - closed_at @@ -98257,7 +98889,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *121 + '503': *124 '422': *15 '304': *35 '403': *27 @@ -98310,7 +98942,7 @@ paths: enum: - created - updated - - *657 + - *665 - *17 - *19 responses: @@ -98355,7 +98987,7 @@ paths: - 'null' score: type: number - text_matches: *656 + text_matches: *664 required: - id - node_id @@ -98441,7 +99073,7 @@ paths: - forks - help-wanted-issues - updated - - *657 + - *665 - *17 - *19 responses: @@ -98660,7 +99292,7 @@ paths: license: anyOf: - type: 'null' - - *142 + - *145 permissions: type: object properties: @@ -98678,7 +99310,7 @@ paths: - admin - pull - push - text_matches: *656 + text_matches: *664 temp_clone_token: type: string allow_merge_commit: @@ -98881,7 +99513,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *121 + '503': *124 '422': *15 '304': *35 x-github: @@ -98987,7 +99619,7 @@ paths: - string - 'null' format: uri - text_matches: *656 + text_matches: *664 related: type: - array @@ -99182,7 +99814,7 @@ paths: - followers - repositories - joined - - *657 + - *665 - *17 - *19 responses: @@ -99292,7 +99924,7 @@ paths: type: - boolean - 'null' - text_matches: *656 + text_matches: *664 blog: type: - string @@ -99354,7 +99986,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *121 + '503': *124 '422': *15 x-github: githubCloudOnly: false @@ -99374,7 +100006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &658 + - &666 name: team_id description: The unique identifier of the team. in: path @@ -99386,9 +100018,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 x-github: githubCloudOnly: false @@ -99415,7 +100047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *658 + - *666 requestBody: required: true content: @@ -99479,16 +100111,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '201': description: Response content: application/json: - schema: *319 + schema: *327 examples: - default: *320 + default: *328 '404': *6 '422': *15 '403': *27 @@ -99516,7 +100148,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *658 + - *666 responses: '204': description: Response @@ -99547,7 +100179,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *658 + - *666 - *82 - *17 - *19 @@ -99558,9 +100190,9 @@ paths: application/json: schema: type: array - items: *321 + items: *329 examples: - default: *659 + default: *667 headers: Link: *37 x-github: @@ -99589,7 +100221,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *658 + - *666 requestBody: required: true content: @@ -99623,9 +100255,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: triggersNotification: true githubCloudOnly: false @@ -99652,16 +100284,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 responses: '200': description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *322 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99686,8 +100318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 requestBody: required: false content: @@ -99710,9 +100342,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *329 examples: - default: *660 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99737,8 +100369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *658 - - *323 + - *666 + - *331 responses: '204': description: Response @@ -99767,8 +100399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *658 - - *323 + - *666 + - *331 - *82 - *17 - *19 @@ -99779,9 +100411,9 @@ paths: application/json: schema: type: array - items: *324 + items: *332 examples: - default: *661 + default: *669 headers: Link: *37 x-github: @@ -99810,8 +100442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *658 - - *323 + - *666 + - *331 requestBody: required: true content: @@ -99833,9 +100465,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: triggersNotification: true githubCloudOnly: false @@ -99862,17 +100494,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 responses: '200': description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *325 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99897,9 +100529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 requestBody: required: true content: @@ -99921,9 +100553,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *332 examples: - default: *662 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99948,9 +100580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 responses: '204': description: Response @@ -99979,9 +100611,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: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 - 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. @@ -100007,9 +100639,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -100038,9 +100670,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: - - *658 - - *323 - - *326 + - *666 + - *331 + - *334 requestBody: required: true content: @@ -100072,9 +100704,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100100,8 +100732,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: - - *658 - - *323 + - *666 + - *331 - 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. @@ -100127,9 +100759,9 @@ paths: application/json: schema: type: array - items: *327 + items: *335 examples: - default: *329 + default: *337 headers: Link: *37 x-github: @@ -100158,8 +100790,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: - - *658 - - *323 + - *666 + - *331 requestBody: required: true content: @@ -100191,9 +100823,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *335 examples: - default: *328 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100217,7 +100849,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100227,9 +100859,9 @@ paths: application/json: schema: type: array - items: *258 + items: *262 examples: - default: *259 + default: *263 headers: Link: *37 x-github: @@ -100255,7 +100887,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *658 + - *666 - name: role description: Filters members returned by their role in the team. in: query @@ -100278,7 +100910,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '404': *6 @@ -100306,8 +100938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: if user is a member @@ -100343,8 +100975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100383,8 +101015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100420,16 +101052,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: - - *658 - - *205 + - *666 + - *208 responses: '200': description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *671 '404': *6 x-github: githubCloudOnly: false @@ -100462,8 +101094,8 @@ 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: - - *658 - - *205 + - *666 + - *208 requestBody: required: false content: @@ -100488,9 +101120,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *672 '403': description: Forbidden if team synchronization is set up '422': @@ -100524,8 +101156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *658 - - *205 + - *666 + - *208 responses: '204': description: Response @@ -100554,7 +101186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100564,9 +101196,9 @@ paths: application/json: schema: type: array - items: *336 + items: *344 examples: - default: *665 + default: *673 headers: Link: *37 '404': *6 @@ -100593,16 +101225,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: - - *658 - - *337 + - *666 + - *345 responses: '200': description: Response content: application/json: - schema: *336 + schema: *344 examples: - default: *666 + default: *674 '404': description: Not Found if project is not managed by this team x-github: @@ -100627,8 +101259,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: - - *658 - - *337 + - *666 + - *345 requestBody: required: false content: @@ -100696,8 +101328,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: - - *658 - - *337 + - *666 + - *345 responses: '204': description: Response @@ -100724,7 +101356,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -100734,9 +101366,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '404': *6 @@ -100766,15 +101398,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *667 + schema: *675 examples: alternative-response-with-extra-repository-information: value: @@ -100925,9 +101557,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 requestBody: required: false content: @@ -100977,9 +101609,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: - - *658 - - *338 - - *339 + - *666 + - *346 + - *347 responses: '204': description: Response @@ -101008,15 +101640,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: - - *658 + - *666 responses: '200': description: Response content: application/json: - schema: *340 + schema: *348 examples: - default: *341 + default: *349 '403': *27 '404': *6 x-github: @@ -101043,7 +101675,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: - - *658 + - *666 requestBody: required: true content: @@ -101104,7 +101736,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *348 examples: default: value: @@ -101135,7 +101767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *658 + - *666 - *17 - *19 responses: @@ -101145,9 +101777,9 @@ paths: application/json: schema: type: array - items: *261 + items: *265 examples: - response-if-child-teams-exist: *668 + response-if-child-teams-exist: *676 headers: Link: *37 '404': *6 @@ -101180,7 +101812,7 @@ paths: application/json: schema: oneOf: - - &670 + - &678 title: Private User description: Private User type: object @@ -101430,7 +102062,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *669 + - *677 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101590,7 +102222,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *678 examples: default: value: @@ -101669,7 +102301,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 '304': *35 '404': *6 '403': *27 @@ -101692,7 +102324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *205 + - *208 responses: '204': description: If the user is blocked @@ -101720,7 +102352,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -101744,7 +102376,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -101793,9 +102425,9 @@ paths: type: integer codespaces: type: array - items: *265 + items: *269 examples: - default: *266 + default: *270 '304': *35 '500': *93 '401': *23 @@ -101934,21 +102566,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 - '503': *121 + '503': *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101988,7 +102620,7 @@ paths: type: integer secrets: type: array - items: &671 + items: &679 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102030,7 +102662,7 @@ paths: - visibility - selected_repositories_url examples: - default: *452 + default: *460 headers: Link: *37 x-github: @@ -102102,13 +102734,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 responses: '200': description: Response content: application/json: - schema: *671 + schema: *679 examples: default: value: @@ -102138,7 +102770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 requestBody: required: true content: @@ -102183,7 +102815,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -102211,7 +102843,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *193 + - *196 responses: '204': description: Response @@ -102236,7 +102868,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *193 + - *196 responses: '200': description: Response @@ -102252,9 +102884,9 @@ paths: type: integer repositories: type: array - items: *183 + items: *186 examples: - default: *672 + default: *680 '401': *23 '403': *27 '404': *6 @@ -102279,7 +102911,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *193 + - *196 requestBody: required: true content: @@ -102333,7 +102965,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *193 + - *196 - name: repository_id in: path required: true @@ -102366,7 +102998,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *193 + - *196 - name: repository_id in: path required: true @@ -102398,15 +103030,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '304': *35 '500': *93 '401': *23 @@ -102432,7 +103064,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: - - *267 + - *271 requestBody: required: false content: @@ -102462,9 +103094,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '401': *23 '403': *27 '404': *6 @@ -102486,7 +103118,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: - - *267 + - *271 responses: '202': *91 '304': *35 @@ -102515,13 +103147,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: - - *267 + - *271 responses: '202': description: Response content: application/json: - schema: &673 + schema: &681 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102574,7 +103206,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &674 + default: &682 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102606,7 +103238,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *267 + - *271 - name: export_id in: path required: true @@ -102619,9 +103251,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *681 examples: - default: *674 + default: *682 '404': *6 x-github: githubCloudOnly: false @@ -102642,7 +103274,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *267 + - *271 responses: '200': description: Response @@ -102658,9 +103290,9 @@ paths: type: integer machines: type: array - items: *451 + items: *459 examples: - default: *675 + default: *683 '304': *35 '500': *93 '401': *23 @@ -102689,7 +103321,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: - - *267 + - *271 requestBody: required: true content: @@ -102745,11 +103377,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *351 + repository: *359 machine: anyOf: - type: 'null' - - *451 + - *459 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -103546,15 +104178,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '304': *35 '500': *93 '400': *14 @@ -103586,15 +104218,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: - - *267 + - *271 responses: '200': description: Response content: application/json: - schema: *265 + schema: *269 examples: - default: *450 + default: *458 '500': *93 '401': *23 '403': *27 @@ -103624,9 +104256,9 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: &688 + default: &696 value: - id: 197 name: hello_docker @@ -103727,7 +104359,7 @@ paths: application/json: schema: type: array - items: &676 + items: &684 title: Email description: Email type: object @@ -103797,9 +104429,9 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: - default: &690 + default: &698 value: - email: octocat@github.com verified: true @@ -103876,7 +104508,7 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: default: value: @@ -103988,7 +104620,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '304': *35 @@ -104021,7 +104653,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 '304': *35 @@ -104043,7 +104675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *205 + - *208 responses: '204': description: if the person is followed by the authenticated user @@ -104073,7 +104705,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -104098,7 +104730,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *205 + - *208 responses: '204': description: Response @@ -104134,7 +104766,7 @@ paths: application/json: schema: type: array - items: &677 + items: &685 title: GPG Key description: A unique encryption key type: object @@ -104279,7 +104911,7 @@ paths: - subkeys - revoked examples: - default: &701 + default: &709 value: - id: 3 name: Octocat's GPG Key @@ -104364,9 +104996,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *685 examples: - default: &678 + default: &686 value: id: 3 name: Octocat's GPG Key @@ -104423,7 +105055,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: - - &679 + - &687 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104435,9 +105067,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *685 examples: - default: *678 + default: *686 '404': *6 '304': *35 '403': *27 @@ -104460,7 +105092,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: - - *679 + - *687 responses: '204': description: Response @@ -104651,7 +105283,7 @@ paths: type: array items: *61 examples: - default: *680 + default: *688 headers: Link: *37 '404': *6 @@ -104676,7 +105308,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *178 + - *181 responses: '204': description: Response @@ -104702,7 +105334,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *178 + - *181 responses: '204': description: Response @@ -104736,12 +105368,12 @@ paths: application/json: schema: anyOf: - - *256 + - *260 - type: object properties: {} additionalProperties: false examples: - default: *257 + default: *261 '204': description: Response when there are no restrictions x-github: @@ -104765,7 +105397,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *527 examples: default: value: @@ -104776,7 +105408,7 @@ paths: description: Response content: application/json: - schema: *256 + schema: *260 examples: default: value: @@ -104857,7 +105489,7 @@ paths: - closed - all default: open - - *262 + - *266 - name: sort description: What to sort results by. in: query @@ -104870,7 +105502,7 @@ paths: - comments default: created - *82 - - *131 + - *134 - *17 - *19 responses: @@ -104880,9 +105512,9 @@ paths: application/json: schema: type: array - items: *141 + items: *144 examples: - default: *263 + default: *267 headers: Link: *37 '404': *6 @@ -104915,7 +105547,7 @@ paths: application/json: schema: type: array - items: &681 + items: &689 title: Key description: Key type: object @@ -105013,9 +105645,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *689 examples: - default: &682 + default: &690 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105048,15 +105680,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: - - *546 + - *554 responses: '200': description: Response content: application/json: - schema: *681 + schema: *689 examples: - default: *682 + default: *690 '404': *6 '304': *35 '403': *27 @@ -105079,7 +105711,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: - - *546 + - *554 responses: '204': description: Response @@ -105112,7 +105744,7 @@ paths: application/json: schema: type: array - items: &683 + items: &691 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105180,7 +105812,7 @@ paths: - id - type - login - plan: *144 + plan: *147 required: - billing_cycle - next_billing_date @@ -105191,7 +105823,7 @@ paths: - account - plan examples: - default: &684 + default: &692 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105253,9 +105885,9 @@ paths: application/json: schema: type: array - items: *683 + items: *691 examples: - default: *684 + default: *692 headers: Link: *37 '304': *35 @@ -105295,7 +105927,7 @@ paths: application/json: schema: type: array - items: *268 + items: *272 examples: default: value: @@ -105397,13 +106029,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *163 + - *166 responses: '200': description: Response content: application/json: - schema: *268 + schema: *272 examples: default: value: @@ -105461,7 +106093,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *163 + - *166 requestBody: required: true content: @@ -105486,7 +106118,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *272 examples: default: value: @@ -105554,7 +106186,7 @@ paths: application/json: schema: type: array - items: *270 + items: *274 examples: default: value: @@ -105816,7 +106448,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -105996,7 +106628,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *271 + - *275 - name: exclude in: query required: false @@ -106009,7 +106641,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *274 examples: default: value: @@ -106203,7 +106835,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *271 + - *275 responses: '302': description: Response @@ -106229,7 +106861,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *271 + - *275 responses: '204': description: Response @@ -106258,8 +106890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *271 - - *685 + - *275 + - *693 responses: '204': description: Response @@ -106283,7 +106915,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *271 + - *275 - *17 - *19 responses: @@ -106293,9 +106925,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '404': *6 @@ -106332,7 +106964,7 @@ paths: type: array items: *56 examples: - default: *686 + default: *694 headers: Link: *37 '304': *35 @@ -106374,7 +107006,7 @@ paths: - docker - nuget - container - - *687 + - *695 - *19 - *17 responses: @@ -106384,10 +107016,10 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 - '400': *689 + default: *696 + '400': *697 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106407,16 +107039,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: - - *278 - - *279 + - *282 + - *283 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: - default: &702 + default: &710 value: id: 40201 name: octo-name @@ -106529,8 +107161,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: - - *278 - - *279 + - *282 + - *283 responses: '204': description: Response @@ -106560,8 +107192,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: - - *278 - - *279 + - *282 + - *283 - name: token description: package token schema: @@ -106593,8 +107225,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: - - *278 - - *279 + - *282 + - *283 - *19 - *17 - name: state @@ -106614,7 +107246,7 @@ paths: application/json: schema: type: array - items: *280 + items: *284 examples: default: value: @@ -106663,15 +107295,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '200': description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -106707,9 +107339,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '204': description: Response @@ -106739,9 +107371,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: - - *278 - - *279 - - *281 + - *282 + - *283 + - *285 responses: '204': description: Response @@ -106799,7 +107431,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *295 examples: default: value: @@ -106868,9 +107500,9 @@ paths: application/json: schema: type: array - items: *676 + items: *684 examples: - default: *690 + default: *698 headers: Link: *37 '304': *35 @@ -106983,7 +107615,7 @@ paths: type: array items: *61 examples: - default: &697 + default: &705 summary: Default response value: - id: 1296269 @@ -107299,9 +107931,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *359 examples: - default: *353 + default: *361 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107339,9 +107971,9 @@ paths: application/json: schema: type: array - items: *521 + items: *529 examples: - default: *691 + default: *699 headers: Link: *37 '304': *35 @@ -107364,7 +107996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *260 + - *264 responses: '204': description: Response @@ -107387,7 +108019,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *260 + - *264 responses: '204': description: Response @@ -107420,7 +108052,7 @@ paths: application/json: schema: type: array - items: &692 + items: &700 title: Social account description: Social media account type: object @@ -107437,7 +108069,7 @@ paths: - provider - url examples: - default: &693 + default: &701 value: - provider: twitter url: https://twitter.com/github @@ -107500,9 +108132,9 @@ paths: application/json: schema: type: array - items: *692 + items: *700 examples: - default: *693 + default: *701 '422': *15 '304': *35 '404': *6 @@ -107590,7 +108222,7 @@ paths: application/json: schema: type: array - items: &694 + items: &702 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107610,7 +108242,7 @@ paths: - title - created_at examples: - default: &703 + default: &711 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107677,9 +108309,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *702 examples: - default: &695 + default: &703 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107710,7 +108342,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: - - &696 + - &704 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107722,9 +108354,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *702 examples: - default: *695 + default: *703 '404': *6 '304': *35 '403': *27 @@ -107747,7 +108379,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: - - *696 + - *704 responses: '204': description: Response @@ -107776,7 +108408,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: - - &704 + - &712 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 @@ -107801,11 +108433,11 @@ paths: type: array items: *61 examples: - default-response: *697 + default-response: *705 application/vnd.github.v3.star+json: schema: type: array - items: &705 + items: &713 title: Starred Repository description: Starred Repository type: object @@ -107961,8 +108593,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response if this repository is starred by you @@ -107990,8 +108622,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -108015,8 +108647,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: - - *338 - - *339 + - *346 + - *347 responses: '204': description: Response @@ -108049,9 +108681,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 '304': *35 @@ -108088,7 +108720,7 @@ paths: application/json: schema: type: array - items: *319 + items: *327 examples: default: value: @@ -108166,7 +108798,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *146 + - *149 responses: '200': description: Response @@ -108174,10 +108806,10 @@ paths: application/json: schema: oneOf: - - *670 - - *669 + - *678 + - *677 examples: - default-response: &699 + default-response: &707 summary: Default response value: login: octocat @@ -108212,7 +108844,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &700 + response-with-git-hub-plan-information: &708 summary: Response with GitHub plan information value: login: octocat @@ -108272,7 +108904,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *698 + - *706 - *17 responses: '200': @@ -108283,7 +108915,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: example: ; rel="next" @@ -108313,7 +108945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *205 + - *208 responses: '200': description: Response @@ -108321,11 +108953,11 @@ paths: application/json: schema: oneOf: - - *670 - - *669 + - *678 + - *677 examples: - default-response: *699 - response-with-git-hub-plan-information: *700 + default-response: *707 + response-with-git-hub-plan-information: *708 '404': *6 x-github: githubCloudOnly: false @@ -108351,7 +108983,7 @@ paths: - *17 - *80 - *81 - - *205 + - *208 - name: subject_digest description: Subject Digest in: path @@ -108455,7 +109087,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -108481,7 +109113,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *205 + - *208 responses: '200': description: Response @@ -108489,9 +109121,9 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 + default: *696 '403': *27 '401': *23 x-github: @@ -108514,7 +109146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108524,7 +109156,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108595,8 +109227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *205 - - *163 + - *208 + - *166 - *17 - *19 responses: @@ -108606,7 +109238,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108685,7 +109317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108695,7 +109327,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -108762,7 +109394,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108774,7 +109406,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -108793,7 +109425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108805,7 +109437,7 @@ paths: type: array items: *4 examples: - default: *264 + default: *268 headers: Link: *37 x-github: @@ -108824,7 +109456,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *205 + - *208 - name: target_user in: path required: true @@ -108851,8 +109483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *205 - - *131 + - *208 + - *134 - *17 - *19 responses: @@ -108862,9 +109494,9 @@ paths: application/json: schema: type: array - items: *132 + items: *135 examples: - default: *133 + default: *136 headers: Link: *37 '422': *15 @@ -108885,7 +109517,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -108895,9 +109527,9 @@ paths: application/json: schema: type: array - items: *677 + items: *685 examples: - default: *701 + default: *709 headers: Link: *37 x-github: @@ -108921,7 +109553,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *205 + - *208 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -108993,7 +109625,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *205 + - *208 responses: '200': description: Response @@ -109001,7 +109633,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109019,7 +109651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109067,7 +109699,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109079,7 +109711,7 @@ paths: type: array items: *56 examples: - default: *686 + default: *694 headers: Link: *37 x-github: @@ -109118,8 +109750,8 @@ paths: - docker - nuget - container - - *687 - - *205 + - *695 + - *208 - *19 - *17 responses: @@ -109129,12 +109761,12 @@ paths: application/json: schema: type: array - items: *276 + items: *280 examples: - default: *688 + default: *696 '403': *27 '401': *23 - '400': *689 + '400': *697 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109154,17 +109786,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '200': description: Response content: application/json: - schema: *276 + schema: *280 examples: - default: *702 + default: *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109185,9 +109817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '204': description: Response @@ -109219,9 +109851,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 - name: token description: package token schema: @@ -109253,9 +109885,9 @@ 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: - - *278 - - *279 - - *205 + - *282 + - *283 + - *208 responses: '200': description: Response @@ -109263,7 +109895,7 @@ paths: application/json: schema: type: array - items: *280 + items: *284 examples: default: value: @@ -109321,16 +109953,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: - - *278 - - *279 - - *281 - - *205 + - *282 + - *283 + - *285 + - *208 responses: '200': description: Response content: application/json: - schema: *280 + schema: *284 examples: default: value: @@ -109365,10 +109997,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *278 - - *279 - - *205 - - *281 + - *282 + - *283 + - *208 + - *285 responses: '204': description: Response @@ -109400,10 +110032,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *278 - - *279 - - *205 - - *281 + - *282 + - *283 + - *208 + - *285 responses: '204': description: Response @@ -109426,7 +110058,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-user-projects parameters: - - *205 + - *208 - name: state description: Indicates the state of the projects to return. in: query @@ -109447,7 +110079,7 @@ paths: application/json: schema: type: array - items: *291 + items: *295 examples: default: value: @@ -109506,7 +110138,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109516,7 +110148,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -109595,7 +110227,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109605,7 +110237,7 @@ paths: application/json: schema: type: array - items: *152 + items: *155 examples: default: value: @@ -109682,7 +110314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *205 + - *208 - name: type description: Limit results to repositories of the specified type. in: query @@ -109725,9 +110357,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -109751,15 +110383,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *311 + schema: *315 examples: - default: *312 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109781,15 +110413,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *315 + schema: *319 examples: - default: *316 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109811,15 +110443,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *205 + - *208 responses: '200': description: Response content: application/json: - schema: *317 + schema: *321 examples: - default: *318 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109837,7 +110469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109847,9 +110479,9 @@ paths: application/json: schema: type: array - items: *692 + items: *700 examples: - default: *693 + default: *701 headers: Link: *37 x-github: @@ -109869,7 +110501,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109879,9 +110511,9 @@ paths: application/json: schema: type: array - items: *694 + items: *702 examples: - default: *703 + default: *711 headers: Link: *37 x-github: @@ -109905,8 +110537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *205 - - *704 + - *208 + - *712 - *82 - *17 - *19 @@ -109918,11 +110550,11 @@ paths: schema: anyOf: - type: array - items: *705 + items: *713 - type: array items: *61 examples: - default-response: *697 + default-response: *705 headers: Link: *37 x-github: @@ -109941,7 +110573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *205 + - *208 - *17 - *19 responses: @@ -109951,9 +110583,9 @@ paths: application/json: schema: type: array - items: *183 + items: *186 examples: - default: *282 + default: *286 headers: Link: *37 x-github: @@ -110082,7 +110714,7 @@ webhooks: type: string enum: - disabled - enterprise: &706 + enterprise: &714 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110151,7 +110783,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &707 + installation: &715 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110172,7 +110804,7 @@ webhooks: required: - id - node_id - organization: &708 + organization: &716 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -110245,7 +110877,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &709 + repository: &717 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -110274,7 +110906,7 @@ webhooks: license: anyOf: - type: 'null' - - *142 + - *145 organization: anyOf: - type: 'null' @@ -111158,10 +111790,10 @@ webhooks: type: string enum: - enabled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -111237,11 +111869,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: &710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: &718 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) @@ -111464,11 +112096,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: *710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: *718 sender: *4 required: - action @@ -111656,11 +112288,11 @@ webhooks: - everyone required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - rule: *710 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + rule: *718 sender: *4 required: - action @@ -111733,7 +112365,7 @@ webhooks: required: true content: application/json: - schema: &713 + schema: &721 title: Exemption request cancellation event type: object properties: @@ -111741,11 +112373,11 @@ webhooks: type: string enum: - cancelled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: &711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: &719 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -111899,7 +112531,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &712 + items: &720 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -112011,7 +112643,7 @@ webhooks: required: true content: application/json: - schema: &714 + schema: &722 title: Exemption request completed event type: object properties: @@ -112019,11 +112651,11 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 sender: *4 required: - action @@ -112095,7 +112727,7 @@ webhooks: required: true content: application/json: - schema: &715 + schema: &723 title: Exemption request created event type: object properties: @@ -112103,11 +112735,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 sender: *4 required: - action @@ -112179,7 +112811,7 @@ webhooks: required: true content: application/json: - schema: &716 + schema: &724 title: Exemption response dismissed event type: object properties: @@ -112187,12 +112819,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 - exemption_response: *712 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 + exemption_response: *720 sender: *4 required: - action @@ -112266,7 +112898,7 @@ webhooks: required: true content: application/json: - schema: &717 + schema: &725 title: Exemption response submitted event type: object properties: @@ -112274,12 +112906,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - exemption_request: *711 - exemption_response: *712 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + exemption_request: *719 + exemption_response: *720 sender: *4 required: - action @@ -112352,7 +112984,7 @@ webhooks: required: true content: application/json: - schema: *713 + schema: *721 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112419,7 +113051,7 @@ webhooks: required: true content: application/json: - schema: *714 + schema: *722 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112486,7 +113118,7 @@ webhooks: required: true content: application/json: - schema: *715 + schema: *723 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112553,7 +113185,7 @@ webhooks: required: true content: application/json: - schema: *716 + schema: *724 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112621,7 +113253,7 @@ webhooks: required: true content: application/json: - schema: *717 + schema: *725 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112699,7 +113331,7 @@ webhooks: type: string enum: - completed - check_run: &719 + check_run: &727 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112767,8 +113399,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *413 - repository: *183 + items: *421 + repository: *186 status: type: string enum: @@ -112812,7 +113444,7 @@ webhooks: - examples: - neutral - deployment: *718 + deployment: *726 details_url: type: string examples: @@ -112872,7 +113504,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *413 + items: *421 started_at: type: string format: date-time @@ -112910,9 +113542,9 @@ webhooks: - output - app - pull_requests - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -113305,10 +113937,10 @@ webhooks: type: string enum: - created - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -113704,10 +114336,10 @@ webhooks: type: string enum: - requested_action - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 requested_action: description: The action requested by the user. type: object @@ -114112,10 +114744,10 @@ webhooks: type: string enum: - rerequested - check_run: *719 - installation: *707 - organization: *708 - repository: *709 + check_run: *727 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - check_run @@ -115107,10 +115739,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -115795,10 +116427,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -116477,10 +117109,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -116646,7 +117278,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116798,20 +117430,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &720 + commit_oid: &728 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: *706 - installation: *707 - organization: *708 - ref: &721 + enterprise: *714 + installation: *715 + organization: *716 + ref: &729 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: *709 + repository: *717 sender: *4 required: - action @@ -116975,7 +117607,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117145,12 +117777,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117248,7 +117880,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117427,12 +118059,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117598,7 +118230,7 @@ webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117775,12 +118407,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -117880,7 +118512,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118060,9 +118692,9 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -118070,7 +118702,7 @@ webhooks: type: - string - 'null' - repository: *709 + repository: *717 sender: *4 required: - action @@ -118166,7 +118798,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *425 + dismissed_comment: *433 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118313,12 +118945,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *706 - installation: *707 - organization: *708 - ref: *721 - repository: *709 + commit_oid: *728 + enterprise: *714 + installation: *715 + organization: *716 + ref: *729 + repository: *717 sender: *4 required: - action @@ -118580,10 +119212,10 @@ webhooks: - updated_at - author_association - body - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -118664,18 +119296,18 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *708 - pusher_type: &722 + organization: *716 + pusher_type: &730 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &723 + ref: &731 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -118685,7 +119317,7 @@ webhooks: enum: - tag - branch - repository: *709 + repository: *717 sender: *4 required: - ref @@ -118767,10 +119399,10 @@ webhooks: type: string enum: - created - definition: *104 - enterprise: *706 - installation: *707 - organization: *708 + definition: *107 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -118855,9 +119487,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -118934,10 +119566,10 @@ webhooks: type: string enum: - updated - definition: *104 - enterprise: *706 - installation: *707 - organization: *708 + definition: *107 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -119014,19 +119646,19 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - repository: *709 - organization: *708 + enterprise: *714 + installation: *715 + repository: *717 + organization: *716 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *293 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *293 + items: *297 required: - action - repository @@ -119102,18 +119734,18 @@ webhooks: title: delete event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - pusher_type: *722 - ref: *723 + enterprise: *714 + installation: *715 + organization: *716 + pusher_type: *730 + ref: *731 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *709 + repository: *717 sender: *4 required: - ref @@ -119197,11 +119829,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119285,11 +119917,11 @@ webhooks: type: string enum: - auto_reopened - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119373,11 +120005,11 @@ webhooks: type: string enum: - created - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119459,11 +120091,11 @@ webhooks: type: string enum: - dismissed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119545,11 +120177,11 @@ webhooks: type: string enum: - fixed - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119632,11 +120264,11 @@ webhooks: type: string enum: - reintroduced - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119718,11 +120350,11 @@ webhooks: type: string enum: - reopened - alert: *477 - installation: *707 - organization: *708 - enterprise: *706 - repository: *709 + alert: *485 + installation: *715 + organization: *716 + enterprise: *714 + repository: *717 sender: *4 required: - action @@ -119799,9 +120431,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - key: &724 + enterprise: *714 + installation: *715 + key: &732 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119839,8 +120471,8 @@ webhooks: - verified - created_at - read_only - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -119917,11 +120549,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - key: *724 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + key: *732 + organization: *716 + repository: *717 sender: *4 required: - action @@ -120493,12 +121125,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: &728 + workflow: &736 title: Workflow type: - object @@ -121236,13 +121868,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *483 + deployment: *491 pull_requests: type: array - items: *565 - repository: *709 - organization: *708 - installation: *707 + items: *573 + repository: *717 + organization: *716 + installation: *715 sender: *4 responses: '200': @@ -121313,7 +121945,7 @@ webhooks: type: string enum: - approved - approver: &725 + approver: &733 type: object properties: avatar_url: @@ -121356,11 +121988,11 @@ webhooks: type: string comment: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - reviewers: &726 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + reviewers: &734 type: array items: type: object @@ -121441,7 +122073,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &727 + workflow_job_run: &735 type: object properties: conclusion: @@ -122187,18 +122819,18 @@ webhooks: type: string enum: - rejected - approver: *725 + approver: *733 comment: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - reviewers: *726 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + reviewers: *734 sender: *4 since: type: string - workflow_job_run: *727 + workflow_job_run: *735 workflow_job_runs: type: array items: @@ -122915,13 +123547,13 @@ webhooks: type: string enum: - requested - enterprise: *706 + enterprise: *714 environment: type: string - installation: *707 - organization: *708 - repository: *709 - requestor: &733 + installation: *715 + organization: *716 + repository: *717 + requestor: &741 title: User type: - object @@ -124864,12 +125496,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Deployment Workflow Run type: @@ -125560,7 +126192,7 @@ webhooks: type: string enum: - answered - answer: &731 + answer: &739 type: object properties: author_association: @@ -125720,7 +126352,7 @@ webhooks: - created_at - updated_at - body - discussion: &729 + discussion: &737 title: Discussion description: A Discussion in a repository. type: object @@ -126016,7 +126648,7 @@ webhooks: - id labels: type: array - items: *528 + items: *536 required: - repository_url - category @@ -126038,10 +126670,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126168,11 +126800,11 @@ webhooks: - from required: - category - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126255,11 +126887,11 @@ webhooks: type: string enum: - closed - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126341,7 +126973,7 @@ webhooks: type: string enum: - created - comment: &730 + comment: &738 type: object properties: author_association: @@ -126501,11 +127133,11 @@ webhooks: - updated_at - body - reactions - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126588,12 +127220,12 @@ webhooks: type: string enum: - deleted - comment: *730 - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + comment: *738 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126688,12 +127320,12 @@ webhooks: - from required: - body - comment: *730 - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + comment: *738 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126777,11 +127409,11 @@ webhooks: type: string enum: - created - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126863,11 +127495,11 @@ webhooks: type: string enum: - deleted - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -126967,11 +127599,11 @@ webhooks: type: string required: - from - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127053,10 +127685,10 @@ webhooks: type: string enum: - labeled - discussion: *729 - enterprise: *706 - installation: *707 - label: &732 + discussion: *737 + enterprise: *714 + installation: *715 + label: &740 title: Label type: object properties: @@ -127089,8 +127721,8 @@ webhooks: - color - default - description - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127173,11 +127805,11 @@ webhooks: type: string enum: - locked - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127259,11 +127891,11 @@ webhooks: type: string enum: - pinned - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127345,11 +127977,11 @@ webhooks: type: string enum: - reopened - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127434,16 +128066,16 @@ webhooks: changes: type: object properties: - new_discussion: *729 - new_repository: *709 + new_discussion: *737 + new_repository: *717 required: - new_discussion - new_repository - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127526,10 +128158,10 @@ webhooks: type: string enum: - unanswered - discussion: *729 - old_answer: *731 - organization: *708 - repository: *709 + discussion: *737 + old_answer: *739 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127611,12 +128243,12 @@ webhooks: type: string enum: - unlabeled - discussion: *729 - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127699,11 +128331,11 @@ webhooks: type: string enum: - unlocked - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127785,11 +128417,11 @@ webhooks: type: string enum: - unpinned - discussion: *729 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + discussion: *737 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -127862,7 +128494,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *706 + enterprise: *714 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -128540,9 +129172,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - forkee @@ -128688,9 +129320,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pages: description: The pages that were updated. type: array @@ -128728,7 +129360,7 @@ webhooks: - action - sha - html_url - repository: *709 + repository: *717 sender: *4 required: - pages @@ -128804,10 +129436,10 @@ webhooks: type: string enum: - created - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: &734 + organization: *716 + repositories: &742 description: An array of repository objects that the installation can access. type: array @@ -128833,8 +129465,8 @@ webhooks: - name - full_name - private - repository: *709 - requester: *733 + repository: *717 + requester: *741 sender: *4 required: - action @@ -128909,11 +129541,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -128990,11 +129622,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129071,10 +129703,10 @@ webhooks: type: string enum: - added - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories_added: &735 + organization: *716 + repositories_added: &743 description: An array of repository objects, which were added to the installation. type: array @@ -129120,15 +129752,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *709 - repository_selection: &736 + repository: *717 + repository_selection: &744 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *733 + requester: *741 sender: *4 required: - action @@ -129207,10 +129839,10 @@ webhooks: type: string enum: - removed - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories_added: *735 + organization: *716 + repositories_added: *743 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129237,9 +129869,9 @@ webhooks: - name - full_name - private - repository: *709 - repository_selection: *736 - requester: *733 + repository: *717 + repository_selection: *744 + requester: *741 sender: *4 required: - action @@ -129318,11 +129950,11 @@ webhooks: type: string enum: - suspend - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129505,10 +130137,10 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 target_type: type: string @@ -129587,11 +130219,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *706 + enterprise: *714 installation: *20 - organization: *708 - repositories: *734 - repository: *709 + organization: *716 + repositories: *742 + repository: *717 requester: type: - 'null' @@ -129839,8 +130471,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -131030,8 +131662,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -131111,7 +131743,7 @@ webhooks: type: string enum: - deleted - comment: &737 + comment: &745 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -131278,8 +131910,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -132467,8 +133099,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -132548,7 +133180,7 @@ webhooks: type: string enum: - edited - changes: &762 + changes: &770 description: The changes to the comment. type: object properties: @@ -132560,9 +133192,9 @@ webhooks: type: string required: - from - comment: *737 - enterprise: *706 - installation: *707 + comment: *745 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133751,8 +134383,8 @@ webhooks: - state - locked - assignee - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -133834,10 +134466,10 @@ webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *706 - installation: *707 - issue: &740 + assignee: *741 + enterprise: *714 + installation: *715 + issue: &748 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -134781,8 +135413,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -134862,8 +135494,8 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -135955,8 +136587,8 @@ webhooks: required: - state - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -136035,8 +136667,8 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136973,8 +137605,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -137053,8 +137685,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137995,7 +138627,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &738 + milestone: &746 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138138,8 +138770,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -138238,8 +138870,8 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139183,9 +139815,9 @@ webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *708 - repository: *709 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -139265,8 +139897,8 @@ webhooks: type: string enum: - labeled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140209,9 +140841,9 @@ webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *708 - repository: *709 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -140291,8 +140923,8 @@ webhooks: type: string enum: - locked - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141237,8 +141869,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -141317,8 +141949,8 @@ webhooks: type: string enum: - milestoned - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142257,9 +142889,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *738 - organization: *708 - repository: *709 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -143759,8 +144391,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144703,8 +145335,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -144784,9 +145416,9 @@ webhooks: type: string enum: - pinned - enterprise: *706 - installation: *707 - issue: &739 + enterprise: *714 + installation: *715 + issue: &747 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -145723,8 +146355,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -145803,8 +146435,8 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146748,8 +147380,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148249,11 +148881,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *706 - installation: *707 - issue: *739 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *747 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148334,7 +148966,7 @@ webhooks: type: string enum: - unassigned - assignee: &765 + assignee: &773 title: User type: - object @@ -148406,11 +149038,11 @@ webhooks: required: - login - id - enterprise: *706 - installation: *707 - issue: *740 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *748 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148489,12 +149121,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *706 - installation: *707 - issue: *740 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *748 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -148574,8 +149206,8 @@ webhooks: type: string enum: - unlocked - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149518,8 +150150,8 @@ webhooks: format: uri user_view_type: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149599,11 +150231,11 @@ webhooks: type: string enum: - unpinned - enterprise: *706 - installation: *707 - issue: *739 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + issue: *747 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149682,11 +150314,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149764,11 +150396,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149878,11 +150510,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - label: *732 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + label: *740 + organization: *716 + repository: *717 sender: *4 required: - action @@ -149964,9 +150596,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: &741 + enterprise: *714 + installation: *715 + marketplace_purchase: &749 title: Marketplace Purchase type: object required: @@ -150054,8 +150686,8 @@ webhooks: type: integer unit_count: type: integer - organization: *708 - previous_marketplace_purchase: &742 + organization: *716 + previous_marketplace_purchase: &750 title: Marketplace Purchase type: object properties: @@ -150139,7 +150771,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150219,10 +150851,10 @@ webhooks: - changed effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150310,7 +150942,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150392,10 +151024,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150481,7 +151113,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *709 + repository: *717 sender: *4 required: - action @@ -150562,8 +151194,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 marketplace_purchase: title: Marketplace Purchase type: object @@ -150649,9 +151281,9 @@ webhooks: type: integer unit_count: type: integer - organization: *708 - previous_marketplace_purchase: *742 - repository: *709 + organization: *716 + previous_marketplace_purchase: *750 + repository: *717 sender: *4 required: - action @@ -150731,12 +151363,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *706 - installation: *707 - marketplace_purchase: *741 - organization: *708 - previous_marketplace_purchase: *742 - repository: *709 + enterprise: *714 + installation: *715 + marketplace_purchase: *749 + organization: *716 + previous_marketplace_purchase: *750 + repository: *717 sender: *4 required: - action @@ -150838,11 +151470,11 @@ webhooks: type: string required: - to - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -150944,11 +151576,11 @@ webhooks: type: - string - 'null' - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151027,11 +151659,11 @@ webhooks: type: string enum: - removed - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151109,11 +151741,11 @@ webhooks: type: string enum: - added - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151191,7 +151823,7 @@ webhooks: required: - login - id - team: &743 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151384,11 +152016,11 @@ webhooks: type: string enum: - removed - enterprise: *706 - installation: *707 - member: *733 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + member: *741 + organization: *716 + repository: *717 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151467,7 +152099,7 @@ webhooks: required: - login - id - team: *743 + team: *751 required: - action - scope @@ -151549,8 +152181,8 @@ webhooks: type: string enum: - checks_requested - installation: *707 - merge_group: &744 + installation: *715 + merge_group: &752 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -151569,15 +152201,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *417 + head_commit: *425 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151663,10 +152295,10 @@ webhooks: - merged - invalidated - dequeued - installation: *707 - merge_group: *744 - organization: *708 - repository: *709 + installation: *715 + merge_group: *752 + organization: *716 + repository: *717 sender: *4 required: - action @@ -151739,7 +152371,7 @@ webhooks: type: string enum: - deleted - enterprise: *706 + enterprise: *714 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151847,12 +152479,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *707 - organization: *708 + installation: *715 + organization: *716 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -151932,11 +152564,11 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152015,9 +152647,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - milestone: &745 + enterprise: *714 + installation: *715 + milestone: &753 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152159,8 +152791,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152239,11 +152871,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152353,11 +152985,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - milestone: *738 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *746 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152437,11 +153069,11 @@ webhooks: type: string enum: - opened - enterprise: *706 - installation: *707 - milestone: *745 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + milestone: *753 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152520,11 +153152,11 @@ webhooks: type: string enum: - blocked - blocked_user: *733 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + blocked_user: *741 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152603,11 +153235,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *733 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + blocked_user: *741 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152686,9 +153318,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - membership: &746 + enterprise: *714 + installation: *715 + membership: &754 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -152782,8 +153414,8 @@ webhooks: - role - organization_url - user - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152861,11 +153493,11 @@ webhooks: type: string enum: - member_added - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -152944,8 +153576,8 @@ webhooks: type: string enum: - member_invited - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153067,10 +153699,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 - user: *733 + user: *741 required: - action - invitation @@ -153148,11 +153780,11 @@ webhooks: type: string enum: - member_removed - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -153239,11 +153871,11 @@ webhooks: properties: from: type: string - enterprise: *706 - installation: *707 - membership: *746 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + membership: *754 + organization: *716 + repository: *717 sender: *4 required: - action @@ -153319,9 +153951,9 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 package: description: Information about the package. type: object @@ -153844,7 +154476,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &747 + items: &755 title: Ruby Gems metadata type: object properties: @@ -153941,7 +154573,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -154017,9 +154649,9 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 package: description: Information about the package. type: object @@ -154381,7 +155013,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *747 + items: *755 source_url: type: string format: uri @@ -154452,7 +155084,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -154633,12 +155265,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *706 + enterprise: *714 id: type: integer - installation: *707 - organization: *708 - repository: *709 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - id @@ -154718,7 +155350,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &748 + personal_access_token_request: &756 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154868,10 +155500,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *706 - organization: *708 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -154950,11 +155582,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *748 - enterprise: *706 - organization: *708 + personal_access_token_request: *756 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155032,11 +155664,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *748 - enterprise: *706 - organization: *708 + personal_access_token_request: *756 + enterprise: *714 + organization: *716 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155113,11 +155745,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *748 - organization: *708 - enterprise: *706 + personal_access_token_request: *756 + organization: *716 + enterprise: *714 sender: *4 - installation: *707 + installation: *715 required: - action - personal_access_token_request @@ -155221,7 +155853,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *749 + last_response: *757 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155253,8 +155885,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 zen: description: Random string of GitHub zen. @@ -155499,10 +156131,10 @@ webhooks: - from required: - note - enterprise: *706 - installation: *707 - organization: *708 - project_card: &750 + enterprise: *714 + installation: *715 + organization: *716 + project_card: &758 title: Project Card type: object properties: @@ -155625,7 +156257,7 @@ webhooks: - creator - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -155706,11 +156338,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project_card: *750 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_card: *758 + repository: *717 sender: *4 required: - action @@ -155790,9 +156422,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 project_card: title: Project Card type: object @@ -155922,7 +156554,7 @@ webhooks: repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -156016,11 +156648,11 @@ webhooks: - from required: - note - enterprise: *706 - installation: *707 - organization: *708 - project_card: *750 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_card: *758 + repository: *717 sender: *4 required: - action @@ -156114,9 +156746,9 @@ webhooks: - from required: - column_id - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 project_card: allOf: - title: Project Card @@ -156313,7 +156945,7 @@ webhooks: type: string required: - after_id - repository: *709 + repository: *717 sender: *4 required: - action @@ -156393,10 +157025,10 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - organization: *708 - project: &752 + enterprise: *714 + installation: *715 + organization: *716 + project: &760 title: Project type: object properties: @@ -156523,7 +157155,7 @@ webhooks: - creator - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -156603,10 +157235,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project_column: &751 + enterprise: *714 + installation: *715 + organization: *716 + project_column: &759 title: Project Column type: object properties: @@ -156646,7 +157278,7 @@ webhooks: - name - created_at - updated_at - repository: *709 + repository: *717 sender: *4 required: - action @@ -156725,14 +157357,14 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -156821,11 +157453,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 + repository: *717 sender: *4 required: - action @@ -156905,11 +157537,11 @@ webhooks: type: string enum: - moved - enterprise: *706 - installation: *707 - organization: *708 - project_column: *751 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project_column: *759 + repository: *717 sender: *4 required: - action @@ -156989,11 +157621,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157073,14 +157705,14 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - project: *752 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 repository: anyOf: - type: 'null' - - *709 + - *717 sender: *4 required: - action @@ -157181,11 +157813,11 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157264,11 +157896,11 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 - organization: *708 - project: *752 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + project: *760 + repository: *717 sender: *4 required: - action @@ -157349,9 +157981,9 @@ webhooks: type: string enum: - closed - installation: *707 - organization: *708 - projects_v2: &753 + installation: *715 + organization: *716 + projects_v2: &761 title: Projects v2 Project description: A projects v2 project type: object @@ -157499,9 +158131,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157582,9 +158214,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157705,9 +158337,9 @@ webhooks: type: string to: type: string - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -157790,7 +158422,7 @@ webhooks: type: string enum: - archived - changes: &757 + changes: &765 type: object properties: archived_at: @@ -157806,9 +158438,9 @@ webhooks: - string - 'null' format: date-time - installation: *707 - organization: *708 - projects_v2_item: &754 + installation: *715 + organization: *716 + projects_v2_item: &762 title: Projects v2 Item description: An item belonging to a project type: object @@ -157947,9 +158579,9 @@ webhooks: - 'null' to: type: string - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158031,9 +158663,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158114,9 +158746,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158221,7 +158853,7 @@ webhooks: oneOf: - type: string - type: integer - - &755 + - &763 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158241,7 +158873,7 @@ webhooks: required: - id - name - - &756 + - &764 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158270,8 +158902,8 @@ webhooks: oneOf: - type: string - type: integer - - *755 - - *756 + - *763 + - *764 type: - 'null' - string @@ -158294,9 +158926,9 @@ webhooks: - 'null' required: - body - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158393,9 +159025,9 @@ webhooks: type: - string - 'null' - installation: *707 - organization: *708 - projects_v2_item: *754 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158478,10 +159110,10 @@ webhooks: type: string enum: - restored - changes: *757 - installation: *707 - organization: *708 - projects_v2_item: *754 + changes: *765 + installation: *715 + organization: *716 + projects_v2_item: *762 sender: *4 required: - action @@ -158563,9 +159195,9 @@ webhooks: type: string enum: - reopened - installation: *707 - organization: *708 - projects_v2: *753 + installation: *715 + organization: *716 + projects_v2: *761 sender: *4 required: - action @@ -158646,9 +159278,9 @@ webhooks: type: string enum: - created - installation: *707 - organization: *708 - projects_v2_status_update: &758 + installation: *715 + organization: *716 + projects_v2_status_update: &766 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -158783,9 +159415,9 @@ webhooks: type: string enum: - deleted - installation: *707 - organization: *708 - projects_v2_status_update: *758 + installation: *715 + organization: *716 + projects_v2_status_update: *766 sender: *4 required: - action @@ -158931,9 +159563,9 @@ webhooks: - string - 'null' format: date - installation: *707 - organization: *708 - projects_v2_status_update: *758 + installation: *715 + organization: *716 + projects_v2_status_update: *766 sender: *4 required: - action @@ -159004,10 +159636,10 @@ webhooks: title: public event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - repository @@ -159084,13 +159716,13 @@ webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *706 - installation: *707 - number: &759 + assignee: *741 + enterprise: *714 + installation: *715 + number: &767 description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -161439,7 +162071,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -161521,11 +162153,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -163867,7 +164499,7 @@ webhooks: - draft reason: type: string - repository: *709 + repository: *717 sender: *4 required: - action @@ -163949,11 +164581,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -166295,7 +166927,7 @@ webhooks: - draft reason: type: string - repository: *709 + repository: *717 sender: *4 required: - action @@ -166377,13 +167009,13 @@ webhooks: type: string enum: - closed - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: &760 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: &768 allOf: - - *565 + - *573 - type: object properties: allow_auto_merge: @@ -166445,7 +167077,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *709 + repository: *717 sender: *4 required: - action @@ -166526,12 +167158,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -166611,11 +167243,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *706 - milestone: *463 - number: *759 - organization: *708 - pull_request: &761 + enterprise: *714 + milestone: *471 + number: *767 + organization: *716 + pull_request: &769 title: Pull Request type: object properties: @@ -168942,7 +169574,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -169021,11 +169653,11 @@ webhooks: type: string enum: - dequeued - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -171371,7 +172003,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *709 + repository: *717 sender: *4 required: - action @@ -171495,12 +172127,12 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -171580,11 +172212,11 @@ webhooks: type: string enum: - enqueued - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -173915,7 +174547,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -173995,11 +174627,11 @@ webhooks: type: string enum: - labeled - enterprise: *706 - installation: *707 - label: *732 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + label: *740 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -176347,7 +176979,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -176428,10 +177060,10 @@ webhooks: type: string enum: - locked - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -178777,7 +179409,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -178857,12 +179489,12 @@ webhooks: type: string enum: - milestoned - enterprise: *706 - milestone: *463 - number: *759 - organization: *708 - pull_request: *761 - repository: *709 + enterprise: *714 + milestone: *471 + number: *767 + organization: *716 + pull_request: *769 + repository: *717 sender: *4 required: - action @@ -178941,12 +179573,12 @@ webhooks: type: string enum: - opened - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179027,12 +179659,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179112,12 +179744,12 @@ webhooks: type: string enum: - reopened - enterprise: *706 - installation: *707 - number: *759 - organization: *708 - pull_request: *760 - repository: *709 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 + pull_request: *768 + repository: *717 sender: *4 required: - action @@ -179492,9 +180124,9 @@ webhooks: - start_side - side - reactions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -181724,7 +182356,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -181804,7 +182436,7 @@ webhooks: type: string enum: - deleted - comment: &763 + comment: &771 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. @@ -182097,9 +182729,9 @@ webhooks: - start_side - side - reactions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -184317,7 +184949,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -184397,11 +185029,11 @@ webhooks: type: string enum: - edited - changes: *762 - comment: *763 - enterprise: *706 - installation: *707 - organization: *708 + changes: *770 + comment: *771 + enterprise: *714 + installation: *715 + organization: *716 pull_request: type: object properties: @@ -186622,7 +187254,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *709 + repository: *717 sender: *4 required: - action @@ -186703,9 +187335,9 @@ webhooks: type: string enum: - dismissed - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -188938,7 +189570,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 review: description: The review that was affected. type: object @@ -189184,9 +189816,9 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -191300,8 +191932,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 - review: &764 + repository: *717 + review: &772 description: The review that was affected. type: object properties: @@ -191534,12 +192166,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -193886,7 +194518,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_reviewer: title: User type: @@ -193972,12 +194604,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -196331,7 +196963,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196526,12 +197158,12 @@ webhooks: type: string enum: - review_requested - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -198880,7 +199512,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_reviewer: title: User type: @@ -198967,12 +199599,12 @@ webhooks: type: string enum: - review_requested - enterprise: *706 - installation: *707 + enterprise: *714 + installation: *715 number: description: The pull request number. type: integer - organization: *708 + organization: *716 pull_request: title: Pull Request type: object @@ -201312,7 +201944,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201496,9 +202128,9 @@ webhooks: type: string enum: - submitted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -203734,8 +204366,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 - review: *764 + repository: *717 + review: *772 sender: *4 required: - action @@ -203815,9 +204447,9 @@ webhooks: type: string enum: - resolved - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -205948,7 +206580,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 sender: *4 thread: type: object @@ -206340,9 +206972,9 @@ webhooks: type: string enum: - unresolved - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 pull_request: title: Simple Pull Request type: object @@ -208456,7 +209088,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *709 + repository: *717 sender: *4 thread: type: object @@ -208850,10 +209482,10 @@ webhooks: type: string before: type: string - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -211188,7 +211820,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -211270,11 +211902,11 @@ webhooks: type: string enum: - unassigned - assignee: *765 - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + assignee: *773 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -213624,7 +214256,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -213703,11 +214335,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *706 - installation: *707 - label: *732 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + label: *740 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -216046,7 +216678,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -216127,10 +216759,10 @@ webhooks: type: string enum: - unlocked - enterprise: *706 - installation: *707 - number: *759 - organization: *708 + enterprise: *714 + installation: *715 + number: *767 + organization: *716 pull_request: title: Pull Request type: object @@ -218459,7 +219091,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *709 + repository: *717 sender: *4 required: - action @@ -218662,7 +219294,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *706 + enterprise: *714 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -218757,8 +219389,8 @@ webhooks: - url - author - committer - installation: *707 - organization: *708 + installation: *715 + organization: *716 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -219346,9 +219978,9 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 registry_package: type: object properties: @@ -219825,7 +220457,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *747 + items: *755 summary: type: string tag_name: @@ -219881,7 +220513,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -219959,9 +220591,9 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 registry_package: type: object properties: @@ -220273,7 +220905,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *747 + items: *755 summary: type: string tag_name: @@ -220323,7 +220955,7 @@ webhooks: - owner - package_version - registry - repository: *709 + repository: *717 sender: *4 required: - action @@ -220400,10 +221032,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - release: &766 + enterprise: *714 + installation: *715 + organization: *716 + release: &774 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -220719,7 +221351,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *709 + repository: *717 sender: *4 required: - action @@ -220796,11 +221428,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -220908,11 +221540,11 @@ webhooks: type: boolean required: - to - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -220990,9 +221622,9 @@ webhooks: type: string enum: - prereleased - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -221313,7 +221945,7 @@ webhooks: - string - 'null' format: uri - repository: *709 + repository: *717 sender: *4 required: - action @@ -221389,10 +222021,10 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - release: &767 + enterprise: *714 + installation: *715 + organization: *716 + release: &775 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -221710,7 +222342,7 @@ webhooks: - string - 'null' format: uri - repository: *709 + repository: *717 sender: *4 required: - action @@ -221786,11 +222418,11 @@ webhooks: type: string enum: - released - enterprise: *706 - installation: *707 - organization: *708 - release: *766 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *774 + repository: *717 sender: *4 required: - action @@ -221866,11 +222498,11 @@ webhooks: type: string enum: - unpublished - enterprise: *706 - installation: *707 - organization: *708 - release: *767 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + release: *775 + repository: *717 sender: *4 required: - action @@ -221946,11 +222578,11 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_advisory: *618 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_advisory: *626 sender: *4 required: - action @@ -222026,11 +222658,11 @@ webhooks: type: string enum: - reported - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_advisory: *618 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_advisory: *626 sender: *4 required: - action @@ -222106,10 +222738,10 @@ webhooks: type: string enum: - archived - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222186,10 +222818,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222267,10 +222899,10 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222355,10 +222987,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222473,10 +223105,10 @@ webhooks: - 'null' items: type: string - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222548,10 +223180,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 status: type: string @@ -222632,10 +223264,10 @@ webhooks: type: string enum: - privatized - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222712,10 +223344,10 @@ webhooks: type: string enum: - publicized - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222809,10 +223441,10 @@ webhooks: - name required: - repository - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -222892,11 +223524,11 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 sender: *4 required: - action @@ -222974,11 +223606,11 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 sender: *4 required: - action @@ -223056,11 +223688,11 @@ webhooks: type: string enum: - edited - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - repository_ruleset: *118 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + repository_ruleset: *121 changes: type: object properties: @@ -223079,16 +223711,16 @@ webhooks: properties: added: type: array - items: *111 + items: *114 deleted: type: array - items: *111 + items: *114 updated: type: array items: type: object properties: - condition: *111 + condition: *114 changes: type: object properties: @@ -223121,16 +223753,16 @@ webhooks: properties: added: type: array - items: *117 + items: *120 deleted: type: array - items: *117 + items: *120 updated: type: array items: type: object properties: - rule: *117 + rule: *120 changes: type: object properties: @@ -223367,10 +223999,10 @@ webhooks: - from required: - owner - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223448,10 +224080,10 @@ webhooks: type: string enum: - unarchived - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223529,7 +224161,7 @@ webhooks: type: string enum: - create - alert: &768 + alert: &776 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -223653,10 +224285,10 @@ webhooks: type: string enum: - open - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223866,10 +224498,10 @@ webhooks: type: string enum: - dismissed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -223947,11 +224579,11 @@ webhooks: type: string enum: - reopen - alert: *768 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *776 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224153,10 +224785,10 @@ webhooks: enum: - fixed - open - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224234,7 +224866,7 @@ webhooks: type: string enum: - created - alert: &769 + alert: &777 type: object properties: number: *94 @@ -224344,10 +224976,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224428,11 +225060,11 @@ webhooks: type: string enum: - created - alert: *769 - installation: *707 - location: *770 - organization: *708 - repository: *709 + alert: *777 + installation: *715 + location: *778 + organization: *716 + repository: *717 sender: *4 required: - location @@ -224670,11 +225302,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224752,11 +225384,11 @@ webhooks: type: string enum: - reopened - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224834,11 +225466,11 @@ webhooks: type: string enum: - resolved - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -224916,11 +225548,11 @@ webhooks: type: string enum: - validated - alert: *769 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + alert: *777 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -225050,10 +225682,10 @@ webhooks: - organization - enterprise - - repository: *709 - enterprise: *706 - installation: *707 - organization: *708 + repository: *717 + enterprise: *714 + installation: *715 + organization: *716 sender: *4 required: - action @@ -225131,11 +225763,11 @@ webhooks: type: string enum: - published - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - security_advisory: &771 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + security_advisory: &779 description: The details of the security advisory, including summary, description, and severity. type: object @@ -225321,11 +225953,11 @@ webhooks: type: string enum: - updated - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 - security_advisory: *771 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 + security_advisory: *779 sender: *4 required: - action @@ -225398,10 +226030,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -225587,11 +226219,11 @@ webhooks: from: type: object properties: - security_and_analysis: *294 - enterprise: *706 - installation: *707 - organization: *708 - repository: *351 + security_and_analysis: *298 + enterprise: *714 + installation: *715 + organization: *716 + repository: *359 sender: *4 required: - changes @@ -225669,12 +226301,12 @@ webhooks: type: string enum: - cancelled - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: &772 + sponsorship: &780 type: object properties: created_at: @@ -225979,12 +226611,12 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - sponsorship @@ -226072,12 +226704,12 @@ webhooks: type: string required: - from - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226154,17 +226786,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &773 + effective_date: &781 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: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - sponsorship @@ -226238,7 +226870,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &774 + changes: &782 type: object properties: tier: @@ -226282,13 +226914,13 @@ webhooks: - from required: - tier - effective_date: *773 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + effective_date: *781 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226365,13 +226997,13 @@ webhooks: type: string enum: - tier_changed - changes: *774 - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + changes: *782 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - sponsorship: *772 + sponsorship: *780 required: - action - changes @@ -226445,10 +227077,10 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226532,10 +227164,10 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226968,15 +227600,15 @@ webhooks: type: - string - 'null' - enterprise: *706 + enterprise: *714 id: description: The unique identifier of the status. type: integer - installation: *707 + installation: *715 name: type: string - organization: *708 - repository: *709 + organization: *716 + repository: *717 sender: *4 sha: description: The Commit SHA. @@ -227086,15 +227718,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 + parent_issue: *144 parent_issue_repo: *61 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 - installation: *707 - organization: *708 - repository: *709 + sub_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227178,15 +227810,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 + parent_issue: *144 parent_issue_repo: *61 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 - installation: *707 - organization: *708 - repository: *709 + sub_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227270,15 +227902,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 + sub_issue: *144 sub_issue_repo: *61 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 - installation: *707 - organization: *708 - repository: *709 + parent_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227362,15 +227994,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *141 + sub_issue: *144 sub_issue_repo: *61 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *141 - installation: *707 - organization: *708 - repository: *709 + parent_issue: *144 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -227447,12 +228079,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - team: &775 + team: &783 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -227645,9 +228277,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -228117,7 +228749,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -228193,9 +228825,9 @@ webhooks: type: string enum: - created - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -228665,7 +229297,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -228742,9 +229374,9 @@ webhooks: type: string enum: - deleted - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -229214,7 +229846,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -229358,9 +229990,9 @@ webhooks: - from required: - permissions - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -229830,7 +230462,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - changes @@ -229908,9 +230540,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *706 - installation: *707 - organization: *708 + enterprise: *714 + installation: *715 + organization: *716 repository: title: Repository description: A git repository @@ -230380,7 +231012,7 @@ webhooks: - topics - visibility sender: *4 - team: *775 + team: *783 required: - action - team @@ -230456,10 +231088,10 @@ webhooks: type: string enum: - started - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 required: - action @@ -230532,17 +231164,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *706 + enterprise: *714 inputs: type: - object - 'null' additionalProperties: true - installation: *707 - organization: *708 + installation: *715 + organization: *716 ref: type: string - repository: *709 + repository: *717 sender: *4 workflow: type: string @@ -230624,10 +231256,10 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: allOf: @@ -230883,7 +231515,7 @@ webhooks: type: string required: - conclusion - deployment: *483 + deployment: *491 required: - action - repository @@ -230962,10 +231594,10 @@ webhooks: type: string enum: - in_progress - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: allOf: @@ -231247,7 +231879,7 @@ webhooks: required: - status - steps - deployment: *483 + deployment: *491 required: - action - repository @@ -231326,10 +231958,10 @@ webhooks: type: string enum: - queued - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: type: object @@ -231475,7 +232107,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *491 required: - action - repository @@ -231554,10 +232186,10 @@ webhooks: type: string enum: - waiting - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 workflow_job: type: object @@ -231704,7 +232336,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *491 required: - action - repository @@ -231784,12 +232416,12 @@ webhooks: type: string enum: - completed - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -232808,12 +233440,12 @@ webhooks: type: string enum: - in_progress - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -233817,12 +234449,12 @@ webhooks: type: string enum: - requested - enterprise: *706 - installation: *707 - organization: *708 - repository: *709 + enterprise: *714 + installation: *715 + organization: *716 + repository: *717 sender: *4 - workflow: *728 + workflow: *736 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 07bbe77fa..facac1653 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -191,6 +191,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -6823,6 +6827,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -6936,6 +6943,386 @@ } } }, + "/enterprises/{enterprise}/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an enterprise", + "description": "Lists all hosted compute network configurations configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an enterprise", + "description": "Creates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an enterprise", + "description": "Gets a hosted compute network configuration configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an enterprise", + "description": "Updates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an enterprise", + "description": "Deletes a hosted compute network configuration from an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an enterprise", + "description": "Gets a hosted compute network settings resource configured for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, "/enterprises/{enterprise}/properties/schema": { "get": { "summary": "Get custom properties for an enterprise", @@ -19583,6 +19970,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -28140,6 +28530,380 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team-sync/groups": { "get": { "summary": "List IdP groups for an organization", @@ -46901,6 +47665,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -55387,7 +56154,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -55542,7 +56309,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", @@ -111418,6 +112185,110 @@ } } }, + "network-configuration": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "network-settings": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, "custom-property": { "title": "Organization Custom Property", "description": "Custom property defined on an organization", @@ -292931,6 +293802,54 @@ ] } }, + "network-configurations-paginated": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + }, + "network-configuration": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + }, + "network-settings": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + }, "custom-properties": { "value": [ { @@ -320931,6 +321850,14 @@ "type": "string" } }, + "dependabot-alert-comma-separated-epss": { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, "dependabot-alert-scope": { "name": "scope", "in": "query", @@ -320980,6 +321907,24 @@ "maximum": 100 } }, + "network-configuration-id": { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + "network-settings-id": { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "custom-property-name": { "name": "custom_property_name", "description": "The custom property name", diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index 2f45ea5fb..cd060666b 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -101,6 +101,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -4891,6 +4893,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -4958,6 +4961,260 @@ paths: previews: [] category: enterprise-admin subcategory: license + "/enterprises/{enterprise}/network-configurations": + get: + summary: List hosted compute network configurations for an enterprise + description: Lists all hosted compute network configurations configured in an + enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an enterprise + description: Creates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an enterprise + description: Gets a hosted compute network configuration configured in an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an enterprise + description: Updates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an enterprise + description: Deletes a hosted compute network configuration from an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an enterprise + description: Gets a hosted compute network settings resource configured for + an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-settings-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations "/enterprises/{enterprise}/properties/schema": get: summary: Get custom properties for an enterprise @@ -14272,6 +14529,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -20416,6 +20674,270 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team-sync/groups": get: summary: List IdP groups for an organization @@ -34116,6 +34638,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -40262,7 +40785,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -40376,7 +40899,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -80788,6 +81312,85 @@ components: type: string error: type: string + network-configuration: + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration was created, in + ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + network-settings: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that is using this + settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings resource is + configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region custom-property: title: Organization Custom Property description: Custom property defined on an organization @@ -215747,6 +216350,40 @@ components: date: '2020-01-01T00:00:00Z' status: success error: '' + network-configurations-paginated: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + network-configuration: + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + network-settings: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus custom-properties: value: - property_name: environment @@ -239828,6 +240465,18 @@ components: for these packages will be returned. schema: type: string + dependabot-alert-comma-separated-epss: + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string dependabot-alert-scope: name: scope in: query @@ -239878,6 +240527,20 @@ components: type: integer minimum: 1 maximum: 100 + network-configuration-id: + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + network-settings-id: + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string custom-property-name: name: custom_property_name description: The custom property name diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 07bbe77fa..facac1653 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -191,6 +191,10 @@ { "name": "private-registries", "description": "Manage private registry configurations." + }, + { + "name": "hosted-compute", + "description": "Manage hosted compute networking resources." } ], "servers": [ @@ -6823,6 +6827,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -6936,6 +6943,386 @@ } } }, + "/enterprises/{enterprise}/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an enterprise", + "description": "Lists all hosted compute network configurations configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an enterprise", + "description": "Creates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an enterprise", + "description": "Gets a hosted compute network configuration configured in an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an enterprise", + "description": "Updates a hosted compute network configuration for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, `.`, `-`, and `_`.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an enterprise", + "description": "Deletes a hosted compute network configuration from an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, + "/enterprises/{enterprise}/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an enterprise", + "description": "Gets a hosted compute network settings resource configured for an enterprise.", + "tags": [ + "enterprise-admin", + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "network-configurations" + } + } + }, "/enterprises/{enterprise}/properties/schema": { "get": { "summary": "Get custom properties for an enterprise", @@ -19583,6 +19970,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -28140,6 +28530,380 @@ } } }, + "/orgs/{org}/settings/network-configurations": { + "get": { + "summary": "List hosted compute network configurations for an organization", + "description": "Lists all hosted compute network configurations configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/list-network-configurations-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "network_configurations" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "network_configurations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/network-configuration" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configurations-paginated" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "post": { + "summary": "Create a hosted compute network configuration for an organization", + "description": "Creates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/create-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 1, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "network_settings_ids" + ] + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": { + "get": { + "summary": "Get a hosted compute network configuration for an organization", + "description": "Gets a hosted compute network configuration configured in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "patch": { + "summary": "Update a hosted compute network configuration for an organization", + "description": "Updates a hosted compute network configuration for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/update-network-configuration-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.", + "type": "string" + }, + "compute_service": { + "description": "The hosted compute service to use for the network configuration.", + "type": "string", + "enum": [ + "none", + "actions" + ] + }, + "network_settings_ids": { + "type": "array", + "minItems": 0, + "maxItems": 1, + "description": "The identifier of the network settings to use for the network configuration. Exactly one network settings must be specified.", + "items": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "my-network-configuration", + "network_settings_ids": [ + "23456789ABDCEF1" + ], + "compute_service": "actions" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-configuration" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-configuration" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + }, + "delete": { + "summary": "Delete a hosted compute network configuration from an organization", + "description": "Deletes a hosted compute network configuration from an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/delete-network-configuration-from-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-configuration-id" + } + ], + "responses": { + "204": { + "description": "Response" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, + "/orgs/{org}/settings/network-settings/{network_settings_id}": { + "get": { + "summary": "Get a hosted compute network settings resource for an organization", + "description": "Gets a hosted compute network settings resource configured for an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint.", + "tags": [ + "hosted-compute" + ], + "operationId": "hosted-compute/get-network-settings-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/network-settings-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/network-settings" + }, + "examples": { + "default": { + "$ref": "#/components/examples/network-settings" + } + } + } + }, + "headers": { + "Link": { + "$ref": "#/components/headers/link" + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "settings", + "subcategory": "network-configurations" + } + } + }, "/orgs/{org}/team-sync/groups": { "get": { "summary": "List IdP groups for an organization", @@ -46901,6 +47665,9 @@ { "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" + }, { "$ref": "#/components/parameters/dependabot-alert-scope" }, @@ -55387,7 +56154,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to remove" + "description": "The id of the sub-issue to remove" } }, "required": [ @@ -55542,7 +56309,7 @@ "properties": { "sub_issue_id": { "type": "integer", - "description": "The sub-issue to add" + "description": "The id of the sub-issue to add. The sub-issue must belong to the same repository as the parent issue" }, "replace_parent": { "type": "boolean", @@ -111418,6 +112185,110 @@ } } }, + "network-configuration": { + "title": "Hosted compute network configuration", + "description": "A hosted compute network configuration.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network configuration.", + "type": "string", + "examples": [ + "123ABC456DEF789" + ] + }, + "name": { + "description": "The name of the network configuration.", + "type": "string", + "examples": [ + "my-network-configuration" + ] + }, + "compute_service": { + "description": "The hosted compute service the network configuration supports.", + "type": "string", + "enum": [ + "none", + "actions", + "codespaces" + ] + }, + "network_settings_ids": { + "description": "The unique identifier of each network settings in the configuration.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "123ABC456DEF789" + ] + }, + "created_on": { + "description": "The time at which the network configuration was created, in ISO 8601 format.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2024-04-26T11:31:07Z" + ] + } + }, + "required": [ + "id", + "name", + "created_on" + ] + }, + "network-settings": { + "title": "Hosted compute network settings resource", + "description": "A hosted compute network settings resource.", + "type": "object", + "properties": { + "id": { + "description": "The unique identifier of the network settings resource.", + "type": "string", + "examples": [ + "220F78DACB92BBFBC5E6F22DE1CCF52309D" + ] + }, + "network_configuration_id": { + "description": "The identifier of the network configuration that is using this settings resource.", + "type": "string", + "examples": [ + "934E208B3EE0BD60CF5F752C426BFB53562" + ] + }, + "name": { + "description": "The name of the network settings resource.", + "type": "string", + "examples": [ + "my-network-settings" + ] + }, + "subnet_id": { + "description": "The subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + ] + }, + "region": { + "description": "The location of the subnet this network settings resource is configured for.", + "type": "string", + "examples": [ + "eastus" + ] + } + }, + "required": [ + "id", + "name", + "subnet_id", + "region" + ] + }, "custom-property": { "title": "Organization Custom Property", "description": "Custom property defined on an organization", @@ -292931,6 +293802,54 @@ ] } }, + "network-configurations-paginated": { + "value": { + "total_count": 2, + "network_configurations": [ + { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + }, + { + "id": "456789ABDCEF123", + "name": "My other configuration", + "compute_service": "none", + "network_settings_ids": [ + "56789ABDCEF1234", + "6789ABDCEF12345" + ], + "created_on": "2023-04-26T15:23:37Z" + } + ] + } + }, + "network-configuration": { + "value": { + "id": "123456789ABCDEF", + "name": "My network configuration", + "compute_service": "actions", + "network_settings_ids": [ + "23456789ABDCEF1", + "3456789ABDCEF12" + ], + "created_on": "2022-10-09T23:39:01Z" + } + }, + "network-settings": { + "value": { + "id": "220F78DACB92BBFBC5E6F22DE1CCF52309D", + "network_configuration_id": "934E208B3EE0BD60CF5F752C426BFB53562", + "name": "my_network_settings", + "subnet_id": "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet", + "region": "eastus" + } + }, "custom-properties": { "value": [ { @@ -320931,6 +321850,14 @@ "type": "string" } }, + "dependabot-alert-comma-separated-epss": { + "name": "epss_percentage", + "in": "query", + "description": "CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as:\n- An exact number (`n`)\n- Comparators such as `>n`, `=n`, `<=n`\n- A range like `n..n`, where `n` is a number from 0.0 to 1.0\n\nFilters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned.", + "schema": { + "type": "string" + } + }, "dependabot-alert-scope": { "name": "scope", "in": "query", @@ -320980,6 +321907,24 @@ "maximum": 100 } }, + "network-configuration-id": { + "name": "network_configuration_id", + "description": "Unique identifier of the hosted compute network configuration.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + "network-settings-id": { + "name": "network_settings_id", + "description": "Unique identifier of the hosted compute network settings.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "custom-property-name": { "name": "custom_property_name", "description": "The custom property name", diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index 2f45ea5fb..cd060666b 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -101,6 +101,8 @@ tags: description: Endpoints to manage Code security using the REST API. - name: private-registries description: Manage private registry configurations. +- name: hosted-compute + description: Manage hosted compute networking resources. servers: - url: https://api.github.com externalDocs: @@ -4891,6 +4893,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -4958,6 +4961,260 @@ paths: previews: [] category: enterprise-admin subcategory: license + "/enterprises/{enterprise}/network-configurations": + get: + summary: List hosted compute network configurations for an enterprise + description: Lists all hosted compute network configurations configured in an + enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an enterprise + description: Creates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an enterprise + description: Gets a hosted compute network configuration configured in an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an enterprise + description: Updates a hosted compute network configuration for an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, `.`, `-`, and `_`. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an enterprise + description: Deletes a hosted compute network configuration from an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations + "/enterprises/{enterprise}/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an enterprise + description: Gets a hosted compute network settings resource configured for + an enterprise. + tags: + - enterprise-admin + - hosted-compute + operationId: hosted-compute/get-network-settings-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: network-configurations "/enterprises/{enterprise}/properties/schema": get: summary: Get custom properties for an enterprise @@ -14272,6 +14529,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -20416,6 +20674,270 @@ paths: enabledForGitHubApps: false category: billing subcategory: billing + "/orgs/{org}/settings/network-configurations": + get: + summary: List hosted compute network configurations for an organization + description: |- + Lists all hosted compute network configurations configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/list-network-configurations-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - network_configurations + properties: + total_count: + type: integer + network_configurations: + type: array + items: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configurations-paginated" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + post: + summary: Create a hosted compute network configuration for an organization + description: |- + Creates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/create-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 1 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + required: + - name + - network_settings_ids + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '201': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-configurations/{network_configuration_id}": + get: + summary: Get a hosted compute network configuration for an organization + description: |- + Gets a hosted compute network configuration configured in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + patch: + summary: Update a hosted compute network configuration for an organization + description: |- + Updates a hosted compute network configuration for an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/update-network-configuration-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the network configuration. Must be between + 1 and 100 characters and may only contain upper and lowercase + letters a-z, numbers 0-9, '.', '-', and '_'. + type: string + compute_service: + description: The hosted compute service to use for the network configuration. + type: string + enum: + - none + - actions + network_settings_ids: + type: array + minItems: 0 + maxItems: 1 + description: The identifier of the network settings to use for the + network configuration. Exactly one network settings must be specified. + items: + type: string + examples: + default: + value: + name: my-network-configuration + network_settings_ids: + - 23456789ABDCEF1 + compute_service: actions + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-configuration" + examples: + default: + "$ref": "#/components/examples/network-configuration" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + delete: + summary: Delete a hosted compute network configuration from an organization + description: |- + Deletes a hosted compute network configuration from an organization. + + OAuth app tokens and personal access tokens (classic) need the `write:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/delete-network-configuration-from-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-configuration-id" + responses: + '204': + description: Response + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations + "/orgs/{org}/settings/network-settings/{network_settings_id}": + get: + summary: Get a hosted compute network settings resource for an organization + description: |- + Gets a hosted compute network settings resource configured for an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:network_configurations` scope to use this endpoint. + tags: + - hosted-compute + operationId: hosted-compute/get-network-settings-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/network-settings-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/network-settings" + examples: + default: + "$ref": "#/components/examples/network-settings" + headers: + Link: + "$ref": "#/components/headers/link" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: settings + subcategory: network-configurations "/orgs/{org}/team-sync/groups": get: summary: List IdP groups for an organization @@ -34116,6 +34638,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-packages" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-manifests" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-epss" - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" @@ -40262,7 +40785,7 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to remove + description: The id of the sub-issue to remove required: - sub_issue_id examples: @@ -40376,7 +40899,8 @@ paths: properties: sub_issue_id: type: integer - description: The sub-issue to add + description: The id of the sub-issue to add. The sub-issue must + belong to the same repository as the parent issue replace_parent: type: boolean description: Option that, when true, instructs the operation to @@ -80788,6 +81312,85 @@ components: type: string error: type: string + network-configuration: + title: Hosted compute network configuration + description: A hosted compute network configuration. + type: object + properties: + id: + description: The unique identifier of the network configuration. + type: string + examples: + - 123ABC456DEF789 + name: + description: The name of the network configuration. + type: string + examples: + - my-network-configuration + compute_service: + description: The hosted compute service the network configuration supports. + type: string + enum: + - none + - actions + - codespaces + network_settings_ids: + description: The unique identifier of each network settings in the configuration. + type: array + items: + type: string + examples: + - 123ABC456DEF789 + created_on: + description: The time at which the network configuration was created, in + ISO 8601 format. + type: + - string + - 'null' + format: date-time + examples: + - '2024-04-26T11:31:07Z' + required: + - id + - name + - created_on + network-settings: + title: Hosted compute network settings resource + description: A hosted compute network settings resource. + type: object + properties: + id: + description: The unique identifier of the network settings resource. + type: string + examples: + - 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: + description: The identifier of the network configuration that is using this + settings resource. + type: string + examples: + - 934E208B3EE0BD60CF5F752C426BFB53562 + name: + description: The name of the network settings resource. + type: string + examples: + - my-network-settings + subnet_id: + description: The subnet this network settings resource is configured for. + type: string + examples: + - "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: + description: The location of the subnet this network settings resource is + configured for. + type: string + examples: + - eastus + required: + - id + - name + - subnet_id + - region custom-property: title: Organization Custom Property description: Custom property defined on an organization @@ -215747,6 +216350,40 @@ components: date: '2020-01-01T00:00:00Z' status: success error: '' + network-configurations-paginated: + value: + total_count: 2 + network_configurations: + - id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + - id: 456789ABDCEF123 + name: My other configuration + compute_service: none + network_settings_ids: + - 56789ABDCEF1234 + - 6789ABDCEF12345 + created_on: '2023-04-26T15:23:37Z' + network-configuration: + value: + id: 123456789ABCDEF + name: My network configuration + compute_service: actions + network_settings_ids: + - 23456789ABDCEF1 + - 3456789ABDCEF12 + created_on: '2022-10-09T23:39:01Z' + network-settings: + value: + id: 220F78DACB92BBFBC5E6F22DE1CCF52309D + network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 + name: my_network_settings + subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" + region: eastus custom-properties: value: - property_name: environment @@ -239828,6 +240465,18 @@ components: for these packages will be returned. schema: type: string + dependabot-alert-comma-separated-epss: + name: epss_percentage + in: query + description: |- + CVE Exploit Prediction Scoring System (EPSS) percentage. Can be specified as: + - An exact number (`n`) + - Comparators such as `>n`, `=n`, `<=n` + - A range like `n..n`, where `n` is a number from 0.0 to 1.0 + + Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. + schema: + type: string dependabot-alert-scope: name: scope in: query @@ -239878,6 +240527,20 @@ components: type: integer minimum: 1 maximum: 100 + network-configuration-id: + name: network_configuration_id + description: Unique identifier of the hosted compute network configuration. + in: path + required: true + schema: + type: string + network-settings-id: + name: network_settings_id + description: Unique identifier of the hosted compute network settings. + in: path + required: true + schema: + type: string custom-property-name: name: custom_property_name description: The custom property name diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json index 6b230a7e0..a8422e8bf 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json @@ -40609,13 +40609,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -91475,13 +91474,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -254770,13 +254768,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -254794,67 +254791,6 @@ ], "default": "desc" } - }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "before", - "description": "A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.10/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "after", - "description": "A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.10/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml index 18579aa62..2cd202575 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml @@ -12918,13 +12918,11 @@ paths: The property by which to sort the results. `created` means when the alert was created. `updated` means when the alert's state last changed. - `epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage. schema: type: string enum: - created - updated - - epss_percentage default: created - *9 - *87 @@ -53281,26 +53279,6 @@ paths: - *178 - *179 - *9 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - - name: per_page - description: The number of results per page (max 100). For more information, - see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api)." - deprecated: true - in: query - schema: - type: integer - default: 30 - - *87 - - *88 - - *180 - - *181 responses: '200': description: Response diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.json b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.json index 6b230a7e0..a8422e8bf 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.json +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.json @@ -40609,13 +40609,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -91475,13 +91474,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -254770,13 +254768,12 @@ { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } @@ -254794,67 +254791,6 @@ ], "default": "desc" } - }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "before", - "description": "A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.10/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "after", - "description": "A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.10/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.yaml b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.yaml index 18579aa62..2cd202575 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.yaml +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.deref.yaml @@ -12918,13 +12918,11 @@ paths: The property by which to sort the results. `created` means when the alert was created. `updated` means when the alert's state last changed. - `epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage. schema: type: string enum: - created - updated - - epss_percentage default: created - *9 - *87 @@ -53281,26 +53279,6 @@ paths: - *178 - *179 - *9 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - - name: per_page - description: The number of results per page (max 100). For more information, - see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api)." - deprecated: true - in: query - schema: - type: integer - default: 30 - - *87 - - *88 - - *180 - - *181 responses: '200': description: Response diff --git a/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.json b/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.json index 4687feb3d..ac11e272e 100644 --- a/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.json +++ b/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.json @@ -35597,38 +35597,6 @@ }, { "$ref": "#/components/parameters/direction" - }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "$ref": "#/components/parameters/pagination-before" - }, - { - "$ref": "#/components/parameters/pagination-after" - }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" } ], "responses": { @@ -279890,13 +279858,12 @@ "dependabot-alert-sort": { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } diff --git a/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.yaml b/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.yaml index 2e49ddc0f..87f0913da 100644 --- a/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.yaml +++ b/descriptions-next/ghes-3.10/ghes-3.10.2022-11-28.yaml @@ -25762,26 +25762,6 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - - name: per_page - description: The number of results per page (max 100). For more information, - see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api)." - deprecated: true - in: query - schema: - type: integer - default: 30 - - "$ref": "#/components/parameters/pagination-before" - - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" responses: '200': description: Response @@ -208650,13 +208630,11 @@ components: The property by which to sort the results. `created` means when the alert was created. `updated` means when the alert's state last changed. - `epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage. schema: type: string enum: - created - updated - - epss_percentage default: created pagination-first: name: first diff --git a/descriptions-next/ghes-3.10/ghes-3.10.json b/descriptions-next/ghes-3.10/ghes-3.10.json index 4687feb3d..ac11e272e 100644 --- a/descriptions-next/ghes-3.10/ghes-3.10.json +++ b/descriptions-next/ghes-3.10/ghes-3.10.json @@ -35597,38 +35597,6 @@ }, { "$ref": "#/components/parameters/direction" - }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.10/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "$ref": "#/components/parameters/pagination-before" - }, - { - "$ref": "#/components/parameters/pagination-after" - }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" } ], "responses": { @@ -279890,13 +279858,12 @@ "dependabot-alert-sort": { "name": "sort", "in": "query", - "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.\n`epss_percentage` sorts alerts by the Exploit Prediction Scoring System (EPSS) percentage.", + "description": "The property by which to sort the results.\n`created` means when the alert was created.\n`updated` means when the alert's state last changed.", "schema": { "type": "string", "enum": [ "created", - "updated", - "epss_percentage" + "updated" ], "default": "created" } diff --git a/descriptions-next/ghes-3.10/ghes-3.10.yaml b/descriptions-next/ghes-3.10/ghes-3.10.yaml index 2e49ddc0f..87f0913da 100644 --- a/descriptions-next/ghes-3.10/ghes-3.10.yaml +++ b/descriptions-next/ghes-3.10/ghes-3.10.yaml @@ -25762,26 +25762,6 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - - name: page - description: "**Closing down notice**. Page number of the results to fetch. {"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}