diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 294cccd2c..babe86740 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -11843,6 +11843,69 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-user" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -86977,6 +87040,66 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "$ref": "#/components/parameters/username" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", @@ -121558,6 +121681,117 @@ } } }, + "billing-ai-credit-usage-report-org": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, "budget": { "type": "object", "properties": { @@ -150373,6 +150607,113 @@ "id" ] }, + "billing-ai-credit-usage-report-user": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, "billing-premium-request-usage-report-user": { "type": "object", "properties": { @@ -298653,8 +298994,8 @@ "copilot-usage-metrics-1-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -298662,8 +299003,8 @@ "copilot-usage-metrics-28-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -300796,6 +301137,29 @@ "octocat": { "value": " MMM. .MMM\n MMMMMMMMMMMMMMMMMMM\n MMMMMMMMMMMMMMMMMMM ___________________________________\n MMMMMMMMMMMMMMMMMMMMM | |\n MMMMMMMMMMMMMMMMMMMMMMM | Avoid administrative distraction. |\n MMMMMMMMMMMMMMMMMMMMMMMM |_ _______________________________|\n MMMM::- -:::::::- -::MMMM |/\n MM~:~ 00~:::::~ 00~:~MM\n .. MMMMM::.00:::+:::.00::MMMMM ..\n .MM::::: ._. :::::MM.\n MMMM;:::::;MMMM\n -MM MMMMMMM\n ^ M+ MMMMMMMMM\n MMMMMMM MM MM MM\n MM MM MM MM\n MM MM MM MM\n .~~MM~MM~MM~MM~~.\n ~~~~MM:~MM~~~MM~:MM~~~~\n ~~~~~~==~==~~~==~==~~~~~~\n ~~~~~~==~==~==~==~~~~~~\n :~==~==~==~==~~\n" }, + "billing-ai-credit-usage-report-org": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "get_all_budgets": { "value": { "budgets": [ @@ -327369,6 +327733,29 @@ } ] }, + "billing-ai-credit-usage-report-user": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "billing-premium-request-usage-report-user": { "value": { "timePeriod": { @@ -329492,15 +329879,6 @@ "type": "integer" } }, - "budget": { - "name": "budget_id", - "description": "The ID corresponding to the budget.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, "billing-usage-report-year": { "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, `2025`. Default value is the current year.", @@ -329555,6 +329933,15 @@ "type": "string" } }, + "budget": { + "name": "budget_id", + "description": "The ID corresponding to the budget.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "billing-usage-report-month": { "name": "month", "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the default `year` is used.", @@ -331263,6 +331650,21 @@ } } }, + "billing_ai_credit_usage_report_org": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" + } + } + } + } + }, "get_all_budgets": { "description": "Response when getting all budgets", "content": { @@ -331635,6 +332037,21 @@ } } }, + "billing_ai_credit_usage_report_user": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" + } + } + } + } + }, "billing_premium_request_usage_report_user": { "description": "Response when getting a billing premium request usage report", "content": { diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 9e4a53712..8b6ead047 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -8694,6 +8694,45 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-user" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -63545,6 +63584,44 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - "$ref": "#/components/parameters/username" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -88964,6 +89041,89 @@ components: for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + billing-ai-credit-usage-report-org: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems budget: type: object properties: @@ -111318,6 +111478,86 @@ components: required: - key - id + billing-ai-credit-usage-report-user: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems billing-premium-request-usage-report-user: type: object properties: @@ -223748,14 +223988,14 @@ components: copilot-usage-metrics-1-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' copilot-usage-metrics-28-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' dependabot-alerts-for-organization: @@ -225634,6 +225874,23 @@ components: ~~~~~~==~==~~~==~==~~~~~~ ~~~~~~==~==~==~==~~~~~~ :~==~==~==~==~~ + billing-ai-credit-usage-report-org: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 get_all_budgets: value: budgets: @@ -248345,6 +248602,23 @@ components: pusher_type: user public: false created_at: '2022-06-07T07:50:26Z' + billing-ai-credit-usage-report-user: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 billing-premium-request-usage-report-user: value: timePeriod: @@ -250247,13 +250521,6 @@ components: required: false schema: type: integer - budget: - name: budget_id - description: The ID corresponding to the budget. - in: path - required: true - schema: - type: string billing-usage-report-year: name: year description: If specified, only return results for a single year. The value @@ -250302,6 +250569,13 @@ components: required: false schema: type: string + budget: + name: budget_id + description: The ID corresponding to the budget. + in: path + required: true + schema: + type: string billing-usage-report-month: name: month description: If specified, only return results for a single month. The value @@ -251746,6 +252020,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_org: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" get_all_budgets: description: Response when getting all budgets content: @@ -251984,6 +252267,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_user: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" billing_premium_request_usage_report_user: description: Response when getting a billing premium request usage report content: diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 5cfbfc259..1c00dced5 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -11843,6 +11843,69 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-user" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -86862,6 +86925,66 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "$ref": "#/components/parameters/username" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", @@ -121067,6 +121190,117 @@ } } }, + "billing-ai-credit-usage-report-org": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, "budget": { "type": "object", "properties": { @@ -149993,6 +150227,113 @@ "id" ] }, + "billing-ai-credit-usage-report-user": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, "billing-premium-request-usage-report-user": { "type": "object", "properties": { @@ -297909,8 +298250,8 @@ "copilot-usage-metrics-1-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -297918,8 +298259,8 @@ "copilot-usage-metrics-28-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -300051,6 +300392,29 @@ "octocat": { "value": " MMM. .MMM\n MMMMMMMMMMMMMMMMMMM\n MMMMMMMMMMMMMMMMMMM ___________________________________\n MMMMMMMMMMMMMMMMMMMMM | |\n MMMMMMMMMMMMMMMMMMMMMMM | Avoid administrative distraction. |\n MMMMMMMMMMMMMMMMMMMMMMMM |_ _______________________________|\n MMMM::- -:::::::- -::MMMM |/\n MM~:~ 00~:::::~ 00~:~MM\n .. MMMMM::.00:::+:::.00::MMMMM ..\n .MM::::: ._. :::::MM.\n MMMM;:::::;MMMM\n -MM MMMMMMM\n ^ M+ MMMMMMMMM\n MMMMMMM MM MM MM\n MM MM MM MM\n MM MM MM MM\n .~~MM~MM~MM~MM~~.\n ~~~~MM:~MM~~~MM~:MM~~~~\n ~~~~~~==~==~~~==~==~~~~~~\n ~~~~~~==~==~==~==~~~~~~\n :~==~==~==~==~~\n" }, + "billing-ai-credit-usage-report-org": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "get_all_budgets": { "value": { "budgets": [ @@ -326524,6 +326888,29 @@ } ] }, + "billing-ai-credit-usage-report-user": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "billing-premium-request-usage-report-user": { "value": { "timePeriod": { @@ -328647,15 +329034,6 @@ "type": "integer" } }, - "budget": { - "name": "budget_id", - "description": "The ID corresponding to the budget.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, "billing-usage-report-year": { "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, `2025`. Default value is the current year.", @@ -328710,6 +329088,15 @@ "type": "string" } }, + "budget": { + "name": "budget_id", + "description": "The ID corresponding to the budget.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "billing-usage-report-month": { "name": "month", "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the default `year` is used.", @@ -330418,6 +330805,21 @@ } } }, + "billing_ai_credit_usage_report_org": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" + } + } + } + } + }, "get_all_budgets": { "description": "Response when getting all budgets", "content": { @@ -330790,6 +331192,21 @@ } } }, + "billing_ai_credit_usage_report_user": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" + } + } + } + } + }, "billing_premium_request_usage_report_user": { "description": "Response when getting a billing premium request usage report", "content": { diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index ba996bf6a..3ae62e471 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -8694,6 +8694,45 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-user" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -63447,6 +63486,44 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - "$ref": "#/components/parameters/username" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -88577,6 +88654,89 @@ components: for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + billing-ai-credit-usage-report-org: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems budget: type: object properties: @@ -111010,6 +111170,86 @@ components: required: - key - id + billing-ai-credit-usage-report-user: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems billing-premium-request-usage-report-user: type: object properties: @@ -223077,14 +223317,14 @@ components: copilot-usage-metrics-1-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' copilot-usage-metrics-28-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' dependabot-alerts-for-organization: @@ -224962,6 +225202,23 @@ components: ~~~~~~==~==~~~==~==~~~~~~ ~~~~~~==~==~==~==~~~~~~ :~==~==~==~==~~ + billing-ai-credit-usage-report-org: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 get_all_budgets: value: budgets: @@ -247579,6 +247836,23 @@ components: pusher_type: user public: false created_at: '2022-06-07T07:50:26Z' + billing-ai-credit-usage-report-user: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 billing-premium-request-usage-report-user: value: timePeriod: @@ -249481,13 +249755,6 @@ components: required: false schema: type: integer - budget: - name: budget_id - description: The ID corresponding to the budget. - in: path - required: true - schema: - type: string billing-usage-report-year: name: year description: If specified, only return results for a single year. The value @@ -249536,6 +249803,13 @@ components: required: false schema: type: string + budget: + name: budget_id + description: The ID corresponding to the budget. + in: path + required: true + schema: + type: string billing-usage-report-month: name: month description: If specified, only return results for a single month. The value @@ -250980,6 +251254,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_org: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" get_all_budgets: description: Response when getting all budgets content: @@ -251218,6 +251501,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_user: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" billing_premium_request_usage_report_user: description: Response when getting a billing premium request usage report content: diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 6e950c960..e74b0428e 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -11857,6 +11857,69 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-user" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -87402,6 +87465,66 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "$ref": "#/components/parameters/username" + }, + { + "$ref": "#/components/parameters/billing-usage-report-year" + }, + { + "$ref": "#/components/parameters/billing-usage-report-month-default" + }, + { + "$ref": "#/components/parameters/billing-usage-report-day" + }, + { + "$ref": "#/components/parameters/billing-usage-report-model" + }, + { + "$ref": "#/components/parameters/billing-usage-report-product" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + }, + "400": { + "$ref": "#/components/responses/bad_request" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", @@ -122298,6 +122421,117 @@ } } }, + "billing-ai-credit-usage-report-org": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, "budget": { "type": "object", "properties": { @@ -151722,6 +151956,113 @@ "id" ] }, + "billing-ai-credit-usage-report-user": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, "billing-premium-request-usage-report-user": { "type": "object", "properties": { @@ -300765,8 +301106,8 @@ "copilot-usage-metrics-1-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -300774,8 +301115,8 @@ "copilot-usage-metrics-28-day-report": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -302919,6 +303260,29 @@ "octocat": { "value": " MMM. .MMM\n MMMMMMMMMMMMMMMMMMM\n MMMMMMMMMMMMMMMMMMM ___________________________________\n MMMMMMMMMMMMMMMMMMMMM | |\n MMMMMMMMMMMMMMMMMMMMMMM | Avoid administrative distraction. |\n MMMMMMMMMMMMMMMMMMMMMMMM |_ _______________________________|\n MMMM::- -:::::::- -::MMMM |/\n MM~:~ 00~:::::~ 00~:~MM\n .. MMMMM::.00:::+:::.00::MMMMM ..\n .MM::::: ._. :::::MM.\n MMMM;:::::;MMMM\n -MM MMMMMMM\n ^ M+ MMMMMMMMM\n MMMMMMM MM MM MM\n MM MM MM MM\n MM MM MM MM\n .~~MM~MM~MM~MM~~.\n ~~~~MM:~MM~~~MM~:MM~~~~\n ~~~~~~==~==~~~==~==~~~~~~\n ~~~~~~==~==~==~==~~~~~~\n :~==~==~==~==~~\n" }, + "billing-ai-credit-usage-report-org": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "get_all_budgets": { "value": { "budgets": [ @@ -329680,6 +330044,29 @@ } ] }, + "billing-ai-credit-usage-report-user": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + }, "billing-premium-request-usage-report-user": { "value": { "timePeriod": { @@ -331803,15 +332190,6 @@ "type": "integer" } }, - "budget": { - "name": "budget_id", - "description": "The ID corresponding to the budget.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, "billing-usage-report-year": { "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, `2025`. Default value is the current year.", @@ -331866,6 +332244,15 @@ "type": "string" } }, + "budget": { + "name": "budget_id", + "description": "The ID corresponding to the budget.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, "billing-usage-report-month": { "name": "month", "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the default `year` is used.", @@ -333574,6 +333961,21 @@ } } }, + "billing_ai_credit_usage_report_org": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" + } + } + } + } + }, "get_all_budgets": { "description": "Response when getting all budgets", "content": { @@ -333946,6 +334348,21 @@ } } }, + "billing_ai_credit_usage_report_user": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + }, + "examples": { + "default": { + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" + } + } + } + } + }, "billing_premium_request_usage_report_user": { "description": "Response when getting a billing premium request usage report", "content": { diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index d32c18ad9..a74791e92 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -8702,6 +8702,45 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-user" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_org" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -63795,6 +63834,44 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - "$ref": "#/components/parameters/username" + - "$ref": "#/components/parameters/billing-usage-report-year" + - "$ref": "#/components/parameters/billing-usage-report-month-default" + - "$ref": "#/components/parameters/billing-usage-report-day" + - "$ref": "#/components/parameters/billing-usage-report-model" + - "$ref": "#/components/parameters/billing-usage-report-product" + responses: + '200': + "$ref": "#/components/responses/billing_ai_credit_usage_report_user" + '400': + "$ref": "#/components/responses/bad_request" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -89448,6 +89525,89 @@ components: for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + billing-ai-credit-usage-report-org: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems budget: type: object properties: @@ -112299,6 +112459,86 @@ components: required: - key - id + billing-ai-credit-usage-report-user: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems billing-premium-request-usage-report-user: type: object properties: @@ -225138,14 +225378,14 @@ components: copilot-usage-metrics-1-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' copilot-usage-metrics-28-day-report: value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' dependabot-alerts-for-organization: @@ -227030,6 +227270,23 @@ components: ~~~~~~==~==~~~==~==~~~~~~ ~~~~~~==~==~==~==~~~~~~ :~==~==~==~==~~ + billing-ai-credit-usage-report-org: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 get_all_budgets: value: budgets: @@ -249835,6 +250092,23 @@ components: pusher_type: user public: false created_at: '2022-06-07T07:50:26Z' + billing-ai-credit-usage-report-user: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 billing-premium-request-usage-report-user: value: timePeriod: @@ -251737,13 +252011,6 @@ components: required: false schema: type: integer - budget: - name: budget_id - description: The ID corresponding to the budget. - in: path - required: true - schema: - type: string billing-usage-report-year: name: year description: If specified, only return results for a single year. The value @@ -251792,6 +252059,13 @@ components: required: false schema: type: string + budget: + name: budget_id + description: The ID corresponding to the budget. + in: path + required: true + schema: + type: string billing-usage-report-month: name: month description: If specified, only return results for a single month. The value @@ -253236,6 +253510,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_org: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-org" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-org" get_all_budgets: description: Response when getting all budgets content: @@ -253474,6 +253757,15 @@ components: application/json: schema: "$ref": "#/components/schemas/basic-error" + billing_ai_credit_usage_report_user: + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + "$ref": "#/components/schemas/billing-ai-credit-usage-report-user" + examples: + default: + "$ref": "#/components/examples/billing-ai-credit-usage-report-user" billing_premium_request_usage_report_user: description: Response when getting a billing premium request usage report content: diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 36e91dcdd..47a235f4f 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -25209,8 +25209,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25368,8 +25368,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -25533,8 +25533,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25697,8 +25697,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25856,8 +25856,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -75181,6 +75181,395 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "user", + "description": "The user name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -126389,8 +126778,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -126551,8 +126940,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -126716,8 +127105,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -126883,8 +127272,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -127045,8 +127434,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -737002,6 +737391,382 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "name": "username", + "description": "The handle for the GitHub user account.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 99faf63bf..65d8a7137 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -864,7 +864,7 @@ paths: - subscriptions_url - type - url - type: &343 + type: &345 type: string description: The type of credit the user is receiving. enum: @@ -997,7 +997,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &131 + schema: &133 title: Validation Error Simple description: Validation Error Simple type: object @@ -1030,7 +1030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &677 + - &679 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4112,7 +4112,7 @@ paths: schema: type: integer default: 30 - - &229 + - &231 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 @@ -4121,7 +4121,7 @@ paths: required: false schema: type: string - - &230 + - &232 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4141,7 +4141,7 @@ paths: application/json: schema: type: array - items: &231 + items: &233 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4221,7 +4221,7 @@ paths: - installation_id - repository_id examples: - default: &232 + default: &234 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4280,7 +4280,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &130 + schema: &132 title: Validation Error description: Validation Error type: object @@ -4349,7 +4349,7 @@ paths: description: Response content: application/json: - schema: &233 + schema: &235 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4463,7 +4463,7 @@ paths: - request - response examples: - default: &234 + default: &236 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5451,7 +5451,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &308 + properties: &310 id: description: Unique identifier of the repository example: 42 @@ -5902,7 +5902,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &309 + required: &311 - archive_url - assignees_url - blobs_url @@ -9843,7 +9843,7 @@ paths: required: true content: application/json: - schema: &143 + schema: &145 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -10543,7 +10543,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &199 type: array description: A list of default code security configurations items: @@ -10559,7 +10559,7 @@ paths: default configuration: *49 examples: - default: &198 + default: &200 value: - default_for_new_repos: public configuration: @@ -11021,7 +11021,7 @@ paths: default: value: default_for_new_repos: all - configuration: &196 + configuration: &198 value: id: 1325 target_type: organization @@ -11111,7 +11111,7 @@ paths: application/json: schema: type: array - items: &199 + items: &201 type: object description: Repositories associated with a code security configuration and attachment status @@ -11412,7 +11412,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &200 + repository: &202 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -11544,8 +11544,8 @@ paths: default: &58 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' '500': *55 '403': *29 @@ -11610,8 +11610,8 @@ paths: default: &60 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' '500': *55 @@ -11953,7 +11953,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &210 + - &212 name: classification in: query description: |- @@ -11962,7 +11962,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &211 + - &213 name: state in: query description: |- @@ -11971,7 +11971,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &212 + - &214 name: severity in: query description: |- @@ -11980,7 +11980,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &213 + - &215 name: ecosystem in: query description: |- @@ -11989,14 +11989,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &214 + - &216 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 - - &215 + - &217 name: epss_percentage in: query description: |- @@ -12008,7 +12008,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &507 + - &509 name: has in: query description: |- @@ -12022,7 +12022,7 @@ paths: type: string enum: - patch - - &216 + - &218 name: assignee in: query description: |- @@ -12031,7 +12031,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &217 + - &219 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12041,7 +12041,7 @@ paths: enum: - development - runtime - - &218 + - &220 name: sort in: query description: |- @@ -12067,11 +12067,11 @@ paths: application/json: schema: type: array - items: &219 + items: &221 type: object description: A Dependabot alert. properties: - number: &186 + number: &188 type: integer description: The security alert number. readOnly: true @@ -12134,7 +12134,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &508 + security_advisory: &510 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12344,29 +12344,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *66 - url: &189 + url: &191 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &190 + html_url: &192 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &187 + created_at: &189 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &188 + updated_at: &190 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &192 + dismissed_at: &194 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -12396,21 +12396,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &191 + fixed_at: &193 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &509 + auto_dismissed_at: &511 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &510 + dismissal_request: &512 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12472,7 +12472,7 @@ paths: - repository additionalProperties: false examples: - default: &220 + default: &222 value: - number: 2 state: dismissed @@ -12857,7 +12857,7 @@ paths: description: Response content: application/json: - schema: &221 + schema: &223 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -12883,7 +12883,7 @@ paths: nullable: true additionalProperties: false examples: - default: &222 + default: &224 value: default_level: public accessible_repositories: @@ -13567,7 +13567,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &206 + properties: &208 login: type: string example: github @@ -13608,7 +13608,7 @@ paths: type: string example: A great organization nullable: true - required: &207 + required: &209 - login - url - id @@ -14098,7 +14098,7 @@ paths: properties: action: type: string - discussion: &771 + discussion: &772 title: Discussion description: A Discussion in a repository. type: object @@ -14465,7 +14465,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &560 + properties: &562 id: type: integer format: int64 @@ -14578,7 +14578,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &292 + properties: &294 url: type: string format: uri @@ -14648,7 +14648,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &293 + required: &295 - closed_issues - creator - description @@ -14727,7 +14727,7 @@ paths: timeline_url: type: string format: uri - type: &255 + type: &257 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -14843,7 +14843,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &688 + sub_issues_summary: &690 title: Sub-issues Summary type: object properties: @@ -14930,7 +14930,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &583 + properties: &585 pinned_at: type: string format: date-time @@ -14942,7 +14942,7 @@ paths: properties: *20 required: *21 nullable: true - required: &584 + required: &586 - pinned_at - pinned_by nullable: true @@ -14956,7 +14956,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &689 + issue_dependencies_summary: &691 title: Issue Dependencies Summary type: object properties: @@ -14975,7 +14975,7 @@ paths: - total_blocking issue_field_values: type: array - items: &567 + items: &569 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15036,7 +15036,7 @@ paths: - node_id - data_type - value - required: &561 + required: &563 - assignee - closed_at - comments @@ -15074,7 +15074,7 @@ paths: action: type: string issue: *88 - comment: &556 + comment: &558 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15738,7 +15738,7 @@ paths: type: string release: allOf: - - &617 + - &619 title: Release description: A release. type: object @@ -15809,7 +15809,7 @@ paths: author: *4 assets: type: array - items: &618 + items: &620 title: Release Asset description: Data related to a release. type: object @@ -16400,7 +16400,7 @@ paths: url: type: string format: uri - user: &695 + user: &697 title: Public User description: Public User type: object @@ -18277,7 +18277,7 @@ paths: - closed - all default: open - - &258 + - &260 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18328,7 +18328,7 @@ paths: type: array items: *88 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19713,14 +19713,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &355 + - &357 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &356 + - &358 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19782,7 +19782,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &359 + '301': &361 description: Moved permanently content: application/json: @@ -19804,7 +19804,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &593 + - &595 name: all description: If `true`, show notifications marked as read. in: query @@ -19812,7 +19812,7 @@ paths: schema: type: boolean default: false - - &594 + - &596 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19822,7 +19822,7 @@ paths: type: boolean default: false - *95 - - &595 + - &597 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: @@ -19854,11 +19854,11 @@ paths: properties: id: type: string - repository: &161 + repository: &163 title: Minimal Repository description: Minimal Repository type: object - properties: &224 + properties: &226 id: type: integer format: int64 @@ -20144,7 +20144,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &310 + security_and_analysis: &312 nullable: true type: object properties: @@ -20264,7 +20264,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &225 + required: &227 - archive_url - assignees_url - blobs_url @@ -20352,7 +20352,7 @@ paths: - url - subscription_url examples: - default: &596 + default: &598 value: - id: '1' repository: @@ -21054,6 +21054,185 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - *78 + - &124 + 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, + `2025`. Default value is the current year. + in: query + required: false + schema: + type: integer + - &125 + name: month + description: If specified, only return results for a single month. The value + of `month` is an integer between `1` and `12`. Default value is the current + month. If no year is specified the default `year` is used. + in: query + required: false + schema: + type: integer + - &126 + name: day + description: If specified, only return results for a single day. The value + of `day` is an integer between `1` and `31`. If no `year` or `month` is + specified, the default `year` and `month` are used. + in: query + required: false + schema: + type: integer + - &127 + name: user + description: The user name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &128 + name: model + description: The model name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &129 + name: product + description: The product name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -21601,53 +21780,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *78 - - &124 - 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, - `2025`. Default value is the current year. - in: query - required: false - schema: - type: integer - - &126 - name: month - description: If specified, only return results for a single month. The value - of `month` is an integer between `1` and `12`. Default value is the current - month. If no year is specified the default `year` is used. - in: query - required: false - schema: - type: integer - - &125 - name: day - description: If specified, only return results for a single day. The value - of `day` is an integer between `1` and `31`. If no `year` or `month` is - specified, the default `year` and `month` are used. - in: query - required: false - schema: - type: integer - - name: user - description: The user name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &746 - name: model - description: The model name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &127 - name: product - description: The product name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string + - *124 + - *125 + - *126 + - *127 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -21780,7 +21918,7 @@ paths: parameters: - *78 - *124 - - &747 + - &748 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -21789,7 +21927,7 @@ paths: required: false schema: type: integer - - *125 + - *126 responses: '200': description: Billing usage report response for an organization @@ -21890,17 +22028,17 @@ paths: parameters: - *78 - *124 - - *126 - *125 - - &748 + - *126 + - &749 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *127 - - &749 + - *129 + - &750 name: sku description: The SKU to query for usage. in: query @@ -22043,7 +22181,7 @@ paths: description: Response content: application/json: - schema: &128 + schema: &130 title: Organization Full description: Organization Full type: object @@ -22362,7 +22500,7 @@ paths: - updated_at - archived_at examples: - default-response: &129 + default-response: &131 value: login: github id: 1 @@ -22678,17 +22816,17 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: - default: *129 + default: *131 '422': description: Validation failed content: application/json: schema: oneOf: - - *130 - - *131 + - *132 + - *133 '409': *54 x-github: githubCloudOnly: false @@ -22802,7 +22940,7 @@ paths: type: integer repository_cache_usages: type: array - items: &366 + items: &368 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22875,7 +23013,7 @@ paths: type: integer runners: type: array - items: &132 + items: &134 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -22929,7 +23067,7 @@ paths: - display_name - source nullable: true - machine_size_details: &140 + machine_size_details: &142 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -23025,7 +23163,7 @@ paths: - public_ip_enabled - platform examples: - default: &160 + default: &162 value: total_count: 2 runners: @@ -23162,9 +23300,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: &141 + default: &143 value: id: 5 name: My hosted ubuntu runner @@ -23221,7 +23359,7 @@ paths: type: integer images: type: array - items: &133 + items: &135 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -23272,7 +23410,7 @@ paths: - latest_version - state examples: - default: &135 + default: &137 value: total_count: 2 image_versions: @@ -23304,7 +23442,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *78 - - &134 + - &136 name: image_definition_id description: Image definition ID of custom image in: path @@ -23316,7 +23454,7 @@ paths: description: Response content: application/json: - schema: *133 + schema: *135 examples: default: value: @@ -23347,7 +23485,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *78 - - *134 + - *136 responses: '204': description: Response @@ -23370,7 +23508,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *134 + - *136 - *78 responses: '200': @@ -23387,7 +23525,7 @@ paths: type: integer image_versions: type: array - items: &136 + items: &138 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -23420,7 +23558,7 @@ paths: - created_on - state_details examples: - default: *135 + default: *137 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23441,8 +23579,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - *78 - - *134 - - &137 + - *136 + - &139 name: version description: Version of a custom image in: path @@ -23455,7 +23593,7 @@ paths: description: Response content: application/json: - schema: *136 + schema: *138 examples: default: value: @@ -23482,8 +23620,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *78 - - *134 - - *137 + - *136 + - *139 responses: '204': description: Response @@ -23520,7 +23658,7 @@ paths: type: integer images: type: array - items: &138 + items: &140 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -23556,7 +23694,7 @@ paths: - display_name - source examples: - default: &139 + default: &141 value: id: ubuntu-20.04 platform: linux-x64 @@ -23596,9 +23734,9 @@ paths: type: integer images: type: array - items: *138 + items: *140 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23684,7 +23822,7 @@ paths: type: integer machine_specs: type: array - items: *140 + items: *142 examples: default: value: @@ -23754,7 +23892,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *78 - - &142 + - &144 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -23766,9 +23904,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 headers: Link: *70 x-github: @@ -23789,7 +23927,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 requestBody: required: true content: @@ -23855,9 +23993,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23874,15 +24012,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 responses: '202': description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23940,7 +24078,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *145 examples: default: *46 responses: @@ -24033,7 +24171,7 @@ paths: required: - include_claim_keys examples: - default: &144 + default: &146 value: include_claim_keys: - repo @@ -24078,13 +24216,13 @@ paths: format. type: boolean examples: - default: *144 + default: *146 responses: '201': description: Empty response content: application/json: - schema: &170 + schema: &172 title: Empty Object description: An object without any properties. type: object @@ -24123,7 +24261,7 @@ paths: schema: type: object properties: - enabled_repositories: &145 + enabled_repositories: &147 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -24136,7 +24274,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &146 + allowed_actions: &148 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -24144,12 +24282,12 @@ paths: - all - local_only - selected - selected_actions_url: &371 + selected_actions_url: &373 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` is set to `selected`. - sha_pinning_required: &147 + sha_pinning_required: &149 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -24191,9 +24329,9 @@ paths: schema: type: object properties: - enabled_repositories: *145 - allowed_actions: *146 - sha_pinning_required: *147 + enabled_repositories: *147 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled_repositories examples: @@ -24227,7 +24365,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &377 type: object properties: days: @@ -24269,7 +24407,7 @@ paths: required: true content: application/json: - schema: &376 + schema: &378 type: object properties: days: @@ -24312,7 +24450,7 @@ paths: description: Response content: application/json: - schema: &148 + schema: &150 type: object properties: approval_policy: @@ -24326,7 +24464,7 @@ paths: required: - approval_policy examples: - default: &377 + default: &379 value: approval_policy: first_time_contributors '404': *6 @@ -24357,7 +24495,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -24385,7 +24523,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &380 type: object required: - run_workflows_from_fork_pull_requests @@ -24411,7 +24549,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &149 + default: &151 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -24439,7 +24577,7 @@ paths: required: true content: application/json: - schema: &379 + schema: &381 type: object required: - run_workflows_from_fork_pull_requests @@ -24462,7 +24600,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -24512,7 +24650,7 @@ paths: type: array items: *82 examples: - default: &153 + default: &155 value: total_count: 1 repositories: @@ -24697,7 +24835,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - &150 + - &152 name: repository_id description: The unique identifier of the repository. in: path @@ -24726,7 +24864,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -24755,7 +24893,7 @@ paths: description: Response content: application/json: - schema: &151 + schema: &153 type: object properties: github_owned_allowed: @@ -24777,7 +24915,7 @@ paths: items: type: string examples: - default: &152 + default: &154 value: github_owned_allowed: true verified_allowed: false @@ -24810,9 +24948,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -24944,7 +25082,7 @@ paths: type: array items: *82 examples: - default: *153 + default: *155 '403': *29 '404': *6 x-github: @@ -25013,7 +25151,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -25040,7 +25178,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -25074,17 +25212,17 @@ paths: description: Response content: application/json: - schema: &380 + schema: &382 type: object properties: - default_workflow_permissions: &154 + default_workflow_permissions: &156 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &155 + can_approve_pull_request_reviews: &157 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -25092,7 +25230,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &156 + default: &158 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -25125,13 +25263,13 @@ paths: required: false content: application/json: - schema: &381 + schema: &383 type: object properties: - default_workflow_permissions: *154 - can_approve_pull_request_reviews: *155 + default_workflow_permissions: *156 + can_approve_pull_request_reviews: *157 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25176,7 +25314,7 @@ paths: type: number runner_groups: type: array - items: &157 + items: &159 type: object properties: id: @@ -25364,9 +25502,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &159 + default: &161 value: id: 2 name: octo-runner-group @@ -25402,7 +25540,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - &158 + - &160 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -25414,7 +25552,7 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: default: value: @@ -25451,7 +25589,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25505,9 +25643,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25527,7 +25665,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *78 - - *158 + - *160 responses: '204': description: Response @@ -25551,7 +25689,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -25569,9 +25707,9 @@ paths: type: number runners: type: array - items: *132 + items: *134 examples: - default: *160 + default: *162 headers: Link: *70 x-github: @@ -25594,7 +25732,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 - *19 - *17 responses: @@ -25612,9 +25750,9 @@ paths: type: number repositories: type: array - items: *161 + items: *163 examples: - default: &209 + default: &211 value: total_count: 1 repositories: @@ -25867,7 +26005,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25912,8 +26050,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -25936,8 +26074,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -25961,7 +26099,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -25979,7 +26117,7 @@ paths: type: number runners: type: array - items: &163 + items: &165 title: Self hosted runners description: A self hosted runner type: object @@ -26008,7 +26146,7 @@ paths: type: boolean labels: type: array - items: &166 + items: &168 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -26045,7 +26183,7 @@ paths: - busy - labels examples: - default: &164 + default: &166 value: total_count: 2 runners: @@ -26107,7 +26245,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -26152,8 +26290,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - *78 - - *158 - - &162 + - *160 + - &164 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -26182,8 +26320,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - *78 - - *158 - - *162 + - *160 + - *164 responses: '204': description: Response @@ -26231,9 +26369,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -26265,7 +26403,7 @@ paths: application/json: schema: type: array - items: &382 + items: &384 title: Runner Application description: Runner Application type: object @@ -26290,7 +26428,7 @@ paths: - download_url - filename examples: - default: &383 + default: &385 value: - os: osx architecture: x64 @@ -26376,7 +26514,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &384 + '201': &386 description: Response content: application/json: @@ -26386,7 +26524,7 @@ paths: - runner - encoded_jit_config properties: - runner: *163 + runner: *165 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -26449,7 +26587,7 @@ paths: description: Response content: application/json: - schema: &165 + schema: &167 title: Authentication Token description: Authentication Token type: object @@ -26487,7 +26625,7 @@ paths: - token - expires_at examples: - default: &385 + default: &387 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26524,9 +26662,9 @@ paths: description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: &386 + default: &388 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26552,15 +26690,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &387 + default: &389 value: id: 23 name: MBP @@ -26603,7 +26741,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *78 - - *162 + - *164 responses: '204': description: Response @@ -26630,9 +26768,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &167 + '200': &169 description: Response content: application/json: @@ -26646,7 +26784,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -26686,7 +26824,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -26710,7 +26848,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26735,7 +26873,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -26760,7 +26898,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26785,9 +26923,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &388 + '200': &390 description: Response content: application/json: @@ -26801,7 +26939,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -26843,8 +26981,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 - - &389 + - *164 + - &391 name: name description: The name of a self-hosted runner's custom label. in: path @@ -26852,7 +26990,7 @@ paths: schema: type: string responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26895,7 +27033,7 @@ paths: type: integer secrets: type: array - items: &168 + items: &170 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -26927,7 +27065,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &176 value: total_count: 3 secrets: @@ -26974,7 +27112,7 @@ paths: description: Response content: application/json: - schema: &175 + schema: &177 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27003,7 +27141,7 @@ paths: - key_id - key examples: - default: &176 + default: &178 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27029,7 +27167,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *78 - - &169 + - &171 name: secret_name description: The name of the secret. in: path @@ -27041,9 +27179,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: &177 + default: &179 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -27072,7 +27210,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27129,7 +27267,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27156,7 +27294,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -27183,7 +27321,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -27201,9 +27339,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: &173 + default: &175 value: total_count: 1 repositories: @@ -27296,7 +27434,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27349,7 +27487,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27383,7 +27521,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27416,7 +27554,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *78 - - &178 + - &180 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)." @@ -27440,7 +27578,7 @@ paths: type: integer variables: type: array - items: &171 + items: &173 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -27483,7 +27621,7 @@ paths: - updated_at - visibility examples: - default: &179 + default: &181 value: total_count: 3 variables: @@ -27573,7 +27711,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27599,7 +27737,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *78 - - &172 + - &174 name: name description: The name of the variable. in: path @@ -27611,9 +27749,9 @@ paths: description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: &180 + default: &182 value: name: USERNAME value: octocat @@ -27642,7 +27780,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -27705,7 +27843,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -27732,7 +27870,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -27750,9 +27888,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -27779,7 +27917,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -27829,7 +27967,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -27864,7 +28002,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -27916,9 +28054,9 @@ paths: type: integer secrets: type: array - items: *168 + items: *170 examples: - default: *174 + default: *176 headers: Link: *70 x-github: @@ -27949,9 +28087,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27974,15 +28112,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: *177 + default: *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28005,7 +28143,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -28062,7 +28200,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -28089,7 +28227,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -28116,7 +28254,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -28134,9 +28272,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28160,7 +28298,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -28213,7 +28351,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -28247,7 +28385,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -28281,7 +28419,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *78 - - *178 + - *180 - *19 responses: '200': @@ -28298,9 +28436,9 @@ paths: type: integer variables: type: array - items: *171 + items: *173 examples: - default: *179 + default: *181 headers: Link: *70 x-github: @@ -28371,7 +28509,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -28397,15 +28535,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '200': description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: *180 + default: *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28427,7 +28565,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28490,7 +28628,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -28517,7 +28655,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -28535,9 +28673,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28564,7 +28702,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28614,7 +28752,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28649,7 +28787,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28813,7 +28951,7 @@ paths: type: integer deployment_records: type: array - items: &181 + items: &183 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -28859,7 +28997,7 @@ paths: required: - total_count examples: - default: &182 + default: &184 value: total_count: 1 deployment_records: @@ -29037,11 +29175,11 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 required: - total_count examples: - default: *182 + default: *184 '403': description: Forbidden content: @@ -29280,9 +29418,9 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 examples: - default: *182 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29411,12 +29549,12 @@ paths: required: - subject_digests examples: - default: &727 + default: &729 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &728 + withPredicateType: &730 value: subject_digests: - sha256:abc123 @@ -29474,7 +29612,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &729 + default: &731 value: attestations_subject_digests: - sha256:abc: @@ -29824,7 +29962,7 @@ paths: initiator: type: string examples: - default: &415 + default: &417 value: attestations: - bundle: @@ -30043,7 +30181,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &183 + schema: &185 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -30069,7 +30207,7 @@ paths: application/json: schema: type: array - items: &184 + items: &186 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -30100,7 +30238,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &208 + items: &210 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -30175,7 +30313,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &270 + properties: &272 id: description: Unique identifier of the team type: integer @@ -30247,7 +30385,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &271 + required: &273 - id - node_id - url @@ -30290,7 +30428,7 @@ paths: type: string format: date-time nullable: true - state: *183 + state: *185 contact_link: description: The contact link of the campaign. type: string @@ -30510,9 +30648,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: &185 + default: &187 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -30595,9 +30733,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '404': *6 '422': description: Unprocessable Entity @@ -30674,7 +30812,7 @@ paths: type: string format: uri nullable: true - state: *183 + state: *185 examples: default: value: @@ -30684,9 +30822,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '400': description: Bad Request content: @@ -30753,17 +30891,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *78 - - &440 + - &442 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &193 + schema: &195 type: string description: The name of the tool used to generate the code scanning analysis. - - &441 + - &443 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 @@ -30771,7 +30909,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &194 + schema: &196 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -30786,7 +30924,7 @@ paths: be returned. in: query required: false - schema: &443 + schema: &445 type: string description: State of a code scanning alert. enum: @@ -30809,7 +30947,7 @@ paths: be returned. in: query required: false - schema: &444 + schema: &446 type: string description: Severity of a code scanning alert. enum: @@ -30838,18 +30976,18 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: &445 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: &447 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &195 + state: &197 type: string description: State of a code scanning alert. nullable: true @@ -30857,7 +30995,7 @@ paths: - open - dismissed - fixed - fixed_at: *191 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -30865,8 +31003,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: &446 + dismissed_at: *194 + dismissed_reason: &448 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -30875,13 +31013,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &447 + dismissed_comment: &449 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &448 + rule: &450 type: object properties: id: @@ -30934,42 +31072,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &449 + tool: &451 type: object properties: - name: *193 + name: *195 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *194 - most_recent_instance: &450 + guid: *196 + most_recent_instance: &452 type: object properties: - ref: &442 + ref: &444 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &460 + analysis_key: &462 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &461 + environment: &463 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &462 + category: &464 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *195 + state: *197 commit_sha: type: string message: @@ -30983,7 +31121,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &463 + location: &465 type: object description: Describe a region within a file for the alert. properties: @@ -31004,7 +31142,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &464 + items: &466 type: string description: A classification of the file. For example to identify it as generated. @@ -31643,7 +31781,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31671,9 +31809,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 '304': *37 '403': *29 '404': *6 @@ -31762,7 +31900,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 '304': *37 '403': *29 '404': *6 @@ -32207,7 +32345,7 @@ paths: default: value: default_for_new_repos: all - configuration: *196 + configuration: *198 '403': *29 '404': *6 x-github: @@ -32260,13 +32398,13 @@ paths: application/json: schema: type: array - items: *199 + items: *201 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *200 + repository: *202 '403': *29 '404': *6 x-github: @@ -32306,7 +32444,7 @@ paths: type: integer codespaces: type: array - items: &260 + items: &262 type: object title: Codespace description: A codespace. @@ -32331,12 +32469,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *161 + repository: *163 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &476 + properties: &478 name: type: string description: The name of the machine. @@ -32378,7 +32516,7 @@ paths: - ready - in_progress nullable: true - required: &477 + required: &479 - name - display_name - operating_system @@ -32583,7 +32721,7 @@ paths: - pulls_url - recent_folders examples: - default: &261 + default: &263 value: total_count: 3 codespaces: @@ -33207,7 +33345,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &203 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -33246,7 +33384,7 @@ paths: - updated_at - visibility examples: - default: &478 + default: &480 value: total_count: 2 secrets: @@ -33284,7 +33422,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &481 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33313,7 +33451,7 @@ paths: - key_id - key examples: - default: &480 + default: &482 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33337,15 +33475,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: &482 + default: &484 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33373,7 +33511,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33428,7 +33566,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -33455,7 +33593,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -33481,7 +33619,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -33499,9 +33637,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '404': *6 x-github: githubCloudOnly: false @@ -33524,7 +33662,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33575,7 +33713,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -33609,7 +33747,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -33679,7 +33817,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &202 + items: &204 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -34060,9 +34198,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &203 + default: &205 summary: Example response for an organization copilot space value: id: 84 @@ -34167,9 +34305,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 x-github: @@ -34295,9 +34433,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 '422': *15 @@ -34380,7 +34518,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &204 + items: &206 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -34603,7 +34741,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -34733,7 +34871,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -34884,7 +35022,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &205 + items: &207 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -35027,7 +35165,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35043,7 +35181,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35098,7 +35236,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35167,7 +35305,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35409,7 +35547,7 @@ paths: currently being billed. seats: type: array - items: &263 + items: &265 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -35426,14 +35564,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *206 - required: *207 + properties: *208 + required: *209 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *208 + - *210 - *71 nullable: true pending_cancellation_date: @@ -36040,12 +36178,12 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 required: - total_count - repositories examples: - default: *209 + default: *211 '500': *55 '401': *25 '403': *29 @@ -36131,7 +36269,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -36165,7 +36303,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -36380,7 +36518,7 @@ paths: application/json: schema: type: array - items: &348 + items: &350 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -36687,7 +36825,7 @@ paths: - date additionalProperties: true examples: - default: &349 + default: &351 value: - date: '2024-06-24' total_active_users: 24 @@ -36789,7 +36927,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &350 + '422': &352 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -37008,12 +37146,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *78 - - *210 - - *211 - *212 - *213 - *214 - *215 + - *216 + - *217 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37043,7 +37181,7 @@ paths: enum: - patch - deployment - - *216 + - *218 - name: runtime_risk in: query description: |- @@ -37052,8 +37190,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *217 - - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -37065,9 +37203,9 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: - default: *220 + default: *222 '304': *37 '400': *14 '403': *29 @@ -37116,9 +37254,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *223 examples: - default: *222 + default: *224 '403': *29 '404': *6 x-github: @@ -37281,7 +37419,7 @@ paths: type: integer secrets: type: array - items: &223 + items: &225 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37358,7 +37496,7 @@ paths: description: Response content: application/json: - schema: &513 + schema: &515 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37375,7 +37513,7 @@ paths: - key_id - key examples: - default: &514 + default: &516 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37399,13 +37537,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -37434,7 +37572,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37491,7 +37629,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -37516,7 +37654,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -37541,7 +37679,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -37559,9 +37697,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37583,7 +37721,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37634,7 +37772,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -37666,7 +37804,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -37704,7 +37842,7 @@ paths: application/json: schema: type: array - items: &273 + items: &275 title: Package description: A software package type: object @@ -37754,8 +37892,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *224 - required: *225 + properties: *226 + required: *227 nullable: true created_at: type: string @@ -37774,7 +37912,7 @@ paths: - created_at - updated_at examples: - default: &274 + default: &276 value: - id: 197 name: hello_docker @@ -37944,7 +38082,7 @@ paths: application/json: schema: type: array - items: &249 + items: &251 title: Organization Invitation description: Organization Invitation type: object @@ -37991,7 +38129,7 @@ paths: - invitation_teams_url - node_id examples: - default: &250 + default: &252 value: - id: 1 login: monalisa @@ -38058,7 +38196,7 @@ paths: application/json: schema: type: array - items: &226 + items: &228 title: Org Hook description: Org Hook type: object @@ -38229,9 +38367,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: &227 + default: &229 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38279,7 +38417,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *78 - - &228 + - &230 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. @@ -38292,9 +38430,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: *227 + default: *229 '404': *6 x-github: githubCloudOnly: false @@ -38322,7 +38460,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *78 - - *228 + - *230 requestBody: required: false content: @@ -38367,7 +38505,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -38409,7 +38547,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *78 - - *228 + - *230 responses: '204': description: Response @@ -38437,7 +38575,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *78 - - *228 + - *230 responses: '200': description: Response @@ -38468,7 +38606,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *78 - - *228 + - *230 requestBody: required: false content: @@ -38519,10 +38657,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *78 - - *228 - - *17 - - *229 - *230 + - *17 + - *231 + - *232 responses: '200': description: Response @@ -38530,9 +38668,9 @@ paths: application/json: schema: type: array - items: *231 + items: *233 examples: - default: *232 + default: *234 '400': *14 '422': *15 x-github: @@ -38558,16 +38696,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *78 - - *228 + - *230 - *16 responses: '200': description: Response content: application/json: - schema: *233 + schema: *235 examples: - default: *234 + default: *236 '400': *14 '422': *15 x-github: @@ -38593,7 +38731,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *78 - - *228 + - *230 - *16 responses: '202': *39 @@ -38623,7 +38761,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *78 - - *228 + - *230 responses: '204': description: Response @@ -38646,7 +38784,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *78 - - &239 + - &241 name: actor_type in: path description: The type of the actor @@ -38659,14 +38797,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &240 + - &242 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &235 + - &237 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`.' @@ -38674,7 +38812,7 @@ paths: required: true schema: type: string - - &236 + - &238 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) @@ -38768,12 +38906,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *78 - - *235 - - *236 + - *237 + - *238 - *19 - *17 - *62 - - &245 + - &247 name: sort description: The property to sort the results by. in: query @@ -38851,14 +38989,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *78 - - *235 - - *236 + - *237 + - *238 responses: '200': description: Response content: application/json: - schema: &237 + schema: &239 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -38874,7 +39012,7 @@ paths: type: integer format: int64 examples: - default: &238 + default: &240 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -38895,23 +39033,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *78 - - &241 + - &243 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *235 - - *236 + - *237 + - *238 responses: '200': description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 x-github: enabledForGitHubApps: true category: orgs @@ -38930,18 +39068,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *78 - - *235 - - *236 - - *239 - - *240 + - *237 + - *238 + - *241 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 x-github: enabledForGitHubApps: true category: orgs @@ -38959,9 +39097,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *78 - - *235 - - *236 - - &242 + - *237 + - *238 + - &244 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -38974,7 +39112,7 @@ paths: description: Response content: application/json: - schema: &243 + schema: &245 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -38990,7 +39128,7 @@ paths: type: integer format: int64 examples: - default: &244 + default: &246 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39027,18 +39165,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *78 - - *241 - - *235 - - *236 - - *242 + - *243 + - *237 + - *238 + - *244 responses: '200': description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: *244 + default: *246 x-github: enabledForGitHubApps: true category: orgs @@ -39056,19 +39194,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *78 - - *239 - - *240 - - *235 - - *236 + - *241 - *242 + - *237 + - *238 + - *244 responses: '200': description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: *244 + default: *246 x-github: enabledForGitHubApps: true category: orgs @@ -39086,13 +39224,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *78 - - *241 - - *235 - - *236 + - *243 + - *237 + - *238 - *19 - *17 - *62 - - *245 + - *247 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39173,7 +39311,7 @@ paths: application/json: schema: *22 examples: - default: &551 + default: &553 value: id: 1 account: @@ -39339,12 +39477,12 @@ paths: application/json: schema: anyOf: - - &247 + - &249 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &246 + limit: &248 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -39369,7 +39507,7 @@ paths: properties: {} additionalProperties: false examples: - default: &248 + default: &250 value: limit: collaborators_only origin: organization @@ -39398,13 +39536,13 @@ paths: required: true content: application/json: - schema: &552 + schema: &554 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *246 + limit: *248 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -39428,9 +39566,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *248 + default: *250 '422': *15 x-github: githubCloudOnly: false @@ -39506,9 +39644,9 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 '404': *6 @@ -39585,7 +39723,7 @@ paths: description: Response content: application/json: - schema: *249 + schema: *251 examples: default: value: @@ -39640,7 +39778,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *78 - - &251 + - &253 name: invitation_id description: The unique identifier of the invitation. in: path @@ -39671,7 +39809,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *78 - - *251 + - *253 - *17 - *19 responses: @@ -39681,9 +39819,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: &272 + default: &274 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -39726,7 +39864,7 @@ paths: application/json: schema: type: array - items: &252 + items: &254 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -39959,9 +40097,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: - default: &253 + default: &255 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -40017,7 +40155,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *78 - - &254 + - &256 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -40125,9 +40263,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: - default: *253 + default: *255 '404': *6 '422': *7 x-github: @@ -40152,7 +40290,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *78 - - *254 + - *256 responses: '204': *61 '404': *6 @@ -40182,7 +40320,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -40267,9 +40405,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *257 examples: - default: &256 + default: &258 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -40302,7 +40440,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *78 - - &257 + - &259 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40355,9 +40493,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *257 examples: - default: *256 + default: *258 '404': *6 '422': *7 x-github: @@ -40382,7 +40520,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *78 - - *257 + - *259 responses: '204': description: Response @@ -40445,7 +40583,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: type description: Can be the name of an issue type. in: query @@ -40476,7 +40614,7 @@ paths: type: array items: *88 examples: - default: *259 + default: *261 headers: Link: *70 '404': *6 @@ -40635,9 +40773,9 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '304': *37 '500': *55 '401': *25 @@ -40664,7 +40802,7 @@ paths: parameters: - *78 - *74 - - &262 + - &264 name: codespace_name in: path required: true @@ -40699,15 +40837,15 @@ paths: parameters: - *78 - *74 - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: &475 + default: &477 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -40887,7 +41025,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *263 + schema: *265 examples: default: value: @@ -40963,7 +41101,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &266 title: Org Membership description: Org Membership type: object @@ -41030,7 +41168,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &265 + response-if-user-has-an-active-admin-membership-with-organization: &267 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41131,9 +41269,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - response-if-user-already-had-membership-with-organization: *265 + response-if-user-already-had-membership-with-organization: *267 '422': *15 '403': *29 x-github: @@ -41204,7 +41342,7 @@ paths: application/json: schema: type: array - items: &266 + items: &268 title: Migration description: A migration. type: object @@ -41533,7 +41671,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -41712,7 +41850,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *78 - - &267 + - &269 name: migration_id description: The unique identifier of the migration. in: path @@ -41739,7 +41877,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -41909,7 +42047,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *78 - - *267 + - *269 responses: '302': description: Response @@ -41931,7 +42069,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *78 - - *267 + - *269 responses: '204': description: Response @@ -41955,8 +42093,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *78 - - *267 - - &710 + - *269 + - &712 name: repo_name description: repo_name parameter in: path @@ -41984,7 +42122,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *78 - - *267 + - *269 - *17 - *19 responses: @@ -41994,9 +42132,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: &279 + default: &281 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42151,7 +42289,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &269 + items: &271 title: Organization Role description: Organization roles type: object @@ -42326,7 +42464,7 @@ paths: parameters: - *78 - *80 - - &268 + - &270 name: role_id description: The unique identifier of the role. in: path @@ -42363,7 +42501,7 @@ paths: parameters: - *78 - *80 - - *268 + - *270 responses: '204': description: Response @@ -42416,7 +42554,7 @@ paths: parameters: - *78 - *74 - - *268 + - *270 responses: '204': description: Response @@ -42448,7 +42586,7 @@ paths: parameters: - *78 - *74 - - *268 + - *270 responses: '204': description: Response @@ -42477,13 +42615,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *78 - - *268 + - *270 responses: '200': description: Response content: application/json: - schema: *269 + schema: *271 examples: default: value: @@ -42534,7 +42672,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *78 - - *268 + - *270 - *17 - *19 responses: @@ -42612,8 +42750,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 nullable: true type: description: The ownership type of the team @@ -42645,7 +42783,7 @@ paths: - type - parent examples: - default: *272 + default: *274 headers: Link: *70 '404': @@ -42675,7 +42813,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *78 - - *268 + - *270 - *17 - *19 responses: @@ -42703,13 +42841,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &344 + items: &346 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 name: nullable: true type: string @@ -42997,7 +43135,7 @@ paths: - nuget - container - *78 - - &711 + - &713 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43033,12 +43171,12 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *274 + default: *276 '403': *29 '401': *25 - '400': &713 + '400': &715 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43060,7 +43198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &275 + - &277 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 @@ -43078,7 +43216,7 @@ paths: - docker - nuget - container - - &276 + - &278 name: package_name description: The name of the package. in: path @@ -43091,7 +43229,7 @@ paths: description: Response content: application/json: - schema: *273 + schema: *275 examples: default: value: @@ -43143,8 +43281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 responses: '204': @@ -43177,8 +43315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 - name: token description: package token @@ -43211,8 +43349,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: - - *275 - - *276 + - *277 + - *278 - *78 - *19 - *17 @@ -43233,7 +43371,7 @@ paths: application/json: schema: type: array - items: &277 + items: &279 title: Package Version description: A version of a software package type: object @@ -43358,10 +43496,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 - - &278 + - &280 name: package_version_id description: Unique identifier of the package version. in: path @@ -43373,7 +43511,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -43409,10 +43547,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *275 - - *276 - - *78 + - *277 - *278 + - *78 + - *280 responses: '204': description: Response @@ -43444,10 +43582,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *275 - - *276 - - *78 + - *277 - *278 + - *78 + - *280 responses: '204': description: Response @@ -43477,7 +43615,7 @@ paths: - *78 - *17 - *19 - - &280 + - &282 name: sort description: The property by which to sort the results. in: query @@ -43488,7 +43626,7 @@ paths: - created_at default: created_at - *62 - - &281 + - &283 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43499,7 +43637,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &282 + - &284 name: repository description: The name of the repository to use to filter the results. in: query @@ -43507,7 +43645,7 @@ paths: schema: type: string example: Hello-World - - &283 + - &285 name: permission description: The permission to use to filter the results. in: query @@ -43515,7 +43653,7 @@ paths: schema: type: string example: issues_read - - &284 + - &286 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) @@ -43525,7 +43663,7 @@ paths: schema: type: string format: date-time - - &285 + - &287 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) @@ -43535,7 +43673,7 @@ paths: schema: type: string format: date-time - - &286 + - &288 name: token_id description: The ID of the token in: query @@ -43846,9 +43984,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -43874,14 +44012,14 @@ paths: - *78 - *17 - *19 - - *280 - - *62 - - *281 - *282 + - *62 - *283 - *284 - *285 - *286 + - *287 + - *288 responses: '500': *55 '422': *15 @@ -44161,9 +44299,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -44205,7 +44343,7 @@ paths: type: integer configurations: type: array - items: &287 + items: &289 title: Organization private registry description: Private registry configuration for an organization type: object @@ -44716,7 +44854,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &288 + org-private-registry-with-selected-visibility: &290 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -44806,15 +44944,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *287 + schema: *289 examples: - default: *288 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -44837,7 +44975,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -45025,7 +45163,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -45065,7 +45203,7 @@ paths: application/json: schema: type: array - items: &289 + items: &291 title: Projects v2 Project description: A projects v2 project type: object @@ -45135,7 +45273,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &802 + properties: &803 id: type: number description: The unique identifier of the status update. @@ -45183,7 +45321,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &803 + required: &804 - id - node_id - created_at @@ -45208,7 +45346,7 @@ paths: - deleted_at - deleted_by examples: - default: &290 + default: &292 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -45311,7 +45449,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &291 + - &293 name: project_number description: The project's number. in: path @@ -45324,9 +45462,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -45349,7 +45487,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true description: Details of the draft item to create in the project. @@ -45383,7 +45521,7 @@ paths: description: Response content: application/json: - schema: &297 + schema: &299 title: Projects v2 Item description: An item belonging to a project type: object @@ -45397,7 +45535,7 @@ paths: content: oneOf: - *88 - - &492 + - &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -45503,8 +45641,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true active_lock_reason: type: string @@ -45547,7 +45685,7 @@ paths: items: *4 requested_teams: type: array - items: *208 + items: *210 head: type: object properties: @@ -45597,7 +45735,7 @@ paths: _links: type: object properties: - comments: &294 + comments: &296 title: Link description: Hypermedia Link type: object @@ -45606,13 +45744,13 @@ paths: type: string required: - href - commits: *294 - statuses: *294 - html: *294 - issue: *294 - review_comments: *294 - review_comment: *294 - self: *294 + commits: *296 + statuses: *296 + html: *296 + issue: *296 + review_comments: *296 + review_comment: *296 + self: *296 required: - comments - commits @@ -45623,7 +45761,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &603 + auto_merge: &605 title: Auto merge description: The status of auto merging a pull request. type: object @@ -45725,7 +45863,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &296 + content_type: &298 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -45765,7 +45903,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &298 + draft_issue: &300 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -45839,7 +45977,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *291 + - *293 - *78 - *17 - *47 @@ -45851,7 +45989,7 @@ paths: application/json: schema: type: array - items: &295 + items: &297 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46001,7 +46139,7 @@ paths: - updated_at - project_url examples: - default: &733 + default: &735 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46131,7 +46269,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *291 + - *293 - *78 requestBody: required: true @@ -46178,7 +46316,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &734 + items: &736 type: object properties: name: @@ -46215,7 +46353,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &735 + iteration_configuration: &737 type: object description: The configuration for iteration fields. properties: @@ -46265,7 +46403,7 @@ paths: value: name: Due date data_type: date - single_select_field: &736 + single_select_field: &738 summary: Create a single select field value: name: Priority @@ -46292,7 +46430,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &737 + iteration_field: &739 summary: Create an iteration field value: name: Sprint @@ -46316,9 +46454,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *295 + schema: *297 examples: - text_field: &738 + text_field: &740 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46327,7 +46465,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &739 + number_field: &741 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46336,7 +46474,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &740 + date_field: &742 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46345,7 +46483,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &741 + single_select_field: &743 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46379,7 +46517,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &742 + iteration_field: &744 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46424,8 +46562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *291 - - &743 + - *293 + - &745 name: field_id description: The unique identifier of the field. in: path @@ -46438,9 +46576,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *297 examples: - default: &744 + default: &746 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46496,7 +46634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *291 + - *293 - *78 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -46529,7 +46667,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Projects v2 Item description: An item belonging to a project type: object @@ -46545,7 +46683,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *296 + content_type: *298 content: type: object additionalProperties: true @@ -46588,7 +46726,7 @@ paths: - updated_at - archived_at examples: - default: &300 + default: &302 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -47286,7 +47424,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -47356,22 +47494,22 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *298 + value: *300 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *298 + value: *300 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *298 + value: *300 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *298 + value: *300 '304': *37 '403': *29 '401': *25 @@ -47391,9 +47529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *291 + - *293 - *78 - - &301 + - &303 name: item_id description: The unique identifier of the project item. in: path @@ -47419,9 +47557,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -47442,9 +47580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *291 + - *293 - *78 - - *301 + - *303 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47514,13 +47652,13 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - text_field: *300 - number_field: *300 - date_field: *300 - single_select_field: *300 - iteration_field: *300 + text_field: *302 + number_field: *302 + date_field: *302 + single_select_field: *302 + iteration_field: *302 '401': *25 '403': *29 '404': *6 @@ -47540,9 +47678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *291 + - *293 - *78 - - *301 + - *303 responses: '204': description: Response @@ -47566,7 +47704,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true content: @@ -47637,7 +47775,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &724 + schema: &726 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47735,7 +47873,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &302 + value: &304 value: id: 1 number: 1 @@ -47781,10 +47919,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *302 + value: *304 roadmap_view: summary: Response for creating a roadmap view - value: *302 + value: *304 '304': *37 '403': *29 '401': *25 @@ -47812,9 +47950,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *291 + - *293 - *78 - - &745 + - &747 name: view_number description: The number that identifies the project view. in: path @@ -47846,9 +47984,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -47881,7 +48019,7 @@ paths: application/json: schema: type: array - items: &303 + items: &305 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -47949,7 +48087,7 @@ paths: - property_name - value_type examples: - default: &304 + default: &306 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48009,7 +48147,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *303 + items: *305 minItems: 1 maxItems: 100 required: @@ -48039,9 +48177,9 @@ paths: application/json: schema: type: array - items: *303 + items: *305 examples: - default: *304 + default: *306 '403': *29 '404': *6 x-github: @@ -48063,7 +48201,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *78 - - &305 + - &307 name: custom_property_name description: The custom property name in: path @@ -48075,9 +48213,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *305 examples: - default: &306 + default: &308 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48112,7 +48250,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *78 - - *305 + - *307 requestBody: required: true content: @@ -48183,9 +48321,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *305 examples: - default: *306 + default: *308 '403': *29 '404': *6 x-github: @@ -48209,7 +48347,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *78 - - *305 + - *307 responses: '204': *61 '403': *29 @@ -48270,7 +48408,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &307 + items: &309 title: Custom Property Value description: Custom property name and associated value type: object @@ -48357,7 +48495,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *307 + items: *309 required: - repository_names - properties @@ -48547,9 +48685,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -48751,7 +48889,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &360 title: Full Repository description: Full Repository type: object @@ -49039,8 +49177,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *308 - required: *309 + properties: *310 + required: *311 nullable: true temp_clone_token: type: string @@ -49155,7 +49293,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &497 + properties: &499 url: type: string format: uri @@ -49171,12 +49309,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &498 + required: &500 - url - key - name - html_url - security_and_analysis: *310 + security_and_analysis: *312 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -49260,7 +49398,7 @@ paths: - network_count - subscribers_count examples: - default: &360 + default: &362 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49781,7 +49919,7 @@ paths: - *78 - *17 - *19 - - &625 + - &627 name: targets description: | A comma-separated list of rule targets to filter by. @@ -49799,7 +49937,7 @@ paths: application/json: schema: type: array - items: &337 + items: &339 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -49834,7 +49972,7 @@ paths: source: type: string description: The name of the source - enforcement: &313 + enforcement: &315 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -49847,7 +49985,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &314 + items: &316 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -49918,7 +50056,7 @@ paths: conditions: nullable: true anyOf: - - &311 + - &313 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -49942,7 +50080,7 @@ paths: match. items: type: string - - &315 + - &317 title: Organization ruleset conditions type: object description: |- @@ -49956,7 +50094,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -49990,7 +50128,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -50012,7 +50150,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -50025,7 +50163,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &312 + items: &314 title: Repository ruleset property targeting definition type: object @@ -50058,17 +50196,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *312 + items: *314 required: - repository_property rules: type: array - items: &626 + items: &628 title: Repository Rule type: object description: A repository rule. oneOf: - - &316 + - &318 title: creation description: Only allow users with bypass permission to create matching refs. @@ -50080,7 +50218,7 @@ paths: type: string enum: - creation - - &317 + - &319 title: update description: Only allow users with bypass permission to update matching refs. @@ -50101,7 +50239,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &318 + - &320 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -50113,7 +50251,7 @@ paths: type: string enum: - deletion - - &319 + - &321 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -50125,7 +50263,7 @@ paths: type: string enum: - required_linear_history - - &624 + - &626 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -50203,7 +50341,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &320 + - &322 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -50227,7 +50365,7 @@ paths: type: string required: - required_deployment_environments - - &321 + - &323 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -50239,7 +50377,7 @@ paths: type: string enum: - required_signatures - - &322 + - &324 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -50345,7 +50483,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &323 + - &325 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -50393,7 +50531,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &324 + - &326 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -50405,7 +50543,7 @@ paths: type: string enum: - non_fast_forward - - &325 + - &327 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -50442,7 +50580,7 @@ paths: required: - operator - pattern - - &326 + - &328 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -50479,7 +50617,7 @@ paths: required: - operator - pattern - - &327 + - &329 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -50516,7 +50654,7 @@ paths: required: - operator - pattern - - &328 + - &330 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -50553,7 +50691,7 @@ paths: required: - operator - pattern - - &329 + - &331 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -50590,7 +50728,7 @@ paths: required: - operator - pattern - - &334 + - &336 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -50640,7 +50778,7 @@ paths: - repository_id required: - workflows - - &335 + - &337 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -50701,7 +50839,7 @@ paths: - tool required: - code_scanning_tools - - &336 + - &338 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -50727,7 +50865,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &330 + - &332 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -50752,7 +50890,7 @@ paths: type: string required: - restricted_file_paths - - &331 + - &333 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -50776,7 +50914,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &332 + - &334 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -50799,7 +50937,7 @@ paths: type: string required: - restricted_file_extensions - - &333 + - &335 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -50897,22 +51035,20 @@ paths: - push - repository default: branch - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *315 + items: *316 + conditions: *317 rules: type: array description: An array of rules within the ruleset. - items: &339 + items: &341 title: Repository Rule type: object description: A repository rule. oneOf: - - *316 - - *317 - *318 - *319 - *320 @@ -50932,6 +51068,8 @@ paths: - *334 - *335 - *336 + - *337 + - *338 required: - name - enforcement @@ -50969,9 +51107,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: &338 + default: &340 value: id: 21 name: super cool ruleset @@ -51027,7 +51165,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &627 + - &629 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 @@ -51042,7 +51180,7 @@ paths: in: query schema: type: string - - &628 + - &630 name: time_period description: |- The time period to filter by. @@ -51058,14 +51196,14 @@ paths: - week - month default: day - - &629 + - &631 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 - - &630 + - &632 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51078,7 +51216,7 @@ paths: - bypass - all default: all - - &631 + - &633 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -51101,7 +51239,7 @@ paths: description: Response content: application/json: - schema: &632 + schema: &634 title: Rule Suites description: Response type: array @@ -51156,7 +51294,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &633 + default: &635 value: - id: 21 actor_id: 12 @@ -51200,7 +51338,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &634 + - &636 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51216,7 +51354,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &637 title: Rule Suite description: Response type: object @@ -51315,7 +51453,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &636 + default: &638 value: id: 21 actor_id: 12 @@ -51388,9 +51526,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *6 '500': *55 put: @@ -51434,16 +51572,16 @@ paths: - tag - push - repository - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *315 + items: *316 + conditions: *317 rules: description: An array of rules within the ruleset. type: array - items: *339 + items: *341 examples: default: value: @@ -51478,9 +51616,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *6 '422': *15 '500': *55 @@ -51538,7 +51676,7 @@ paths: application/json: schema: type: array - items: &340 + items: &342 title: Ruleset version type: object description: The historical version of a ruleset @@ -51562,7 +51700,7 @@ paths: type: string format: date-time examples: - default: &638 + default: &640 value: - version_id: 3 actor: @@ -51615,9 +51753,9 @@ paths: description: Response content: application/json: - schema: &639 + schema: &641 allOf: - - *340 + - *342 - type: object required: - state @@ -51687,7 +51825,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &640 + - &642 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51698,7 +51836,7 @@ paths: enum: - open - resolved - - &641 + - &643 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51708,7 +51846,7 @@ paths: required: false schema: type: string - - &642 + - &644 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51719,7 +51857,7 @@ paths: required: false schema: type: string - - &643 + - &645 name: exclude_providers in: query description: |- @@ -51730,7 +51868,7 @@ paths: required: false schema: type: string - - &644 + - &646 name: providers in: query description: |- @@ -51741,7 +51879,7 @@ paths: required: false schema: type: string - - &645 + - &647 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51750,7 +51888,7 @@ paths: required: false schema: type: string - - &646 + - &648 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51769,7 +51907,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &647 + - &649 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. @@ -51784,7 +51922,7 @@ paths: - *62 - *19 - *17 - - &648 + - &650 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 @@ -51794,7 +51932,7 @@ paths: required: false schema: type: string - - &649 + - &651 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 @@ -51804,7 +51942,7 @@ paths: required: false schema: type: string - - &650 + - &652 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51813,7 +51951,7 @@ paths: required: false schema: type: string - - &651 + - &653 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51822,7 +51960,7 @@ paths: schema: type: boolean default: false - - &652 + - &654 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51831,7 +51969,7 @@ paths: schema: type: boolean default: false - - &653 + - &655 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51840,7 +51978,7 @@ paths: schema: type: boolean default: false - - &654 + - &656 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51861,8 +51999,8 @@ paths: items: type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -51870,21 +52008,21 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &655 + state: &657 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: &656 + resolution: &658 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52001,8 +52139,8 @@ paths: pull request. ' - oneOf: &657 - - &659 + oneOf: &659 + - &661 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52060,7 +52198,7 @@ paths: - blob_url - commit_sha - commit_url - - &660 + - &662 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -52115,7 +52253,7 @@ paths: - page_url - commit_sha - commit_url - - &661 + - &663 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52135,7 +52273,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &662 + - &664 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52155,7 +52293,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &663 + - &665 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52175,7 +52313,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &664 + - &666 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52189,7 +52327,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &665 + - &667 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52203,7 +52341,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &666 + - &668 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52217,7 +52355,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &667 + - &669 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -52237,7 +52375,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &668 + - &670 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -52257,7 +52395,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &669 + - &671 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -52277,7 +52415,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &670 + - &672 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -52297,7 +52435,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &671 + - &673 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52560,7 +52698,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &342 + pattern_config_version: &344 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -52569,7 +52707,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &341 + items: &343 type: object properties: token_type: @@ -52635,7 +52773,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *341 + items: *343 examples: default: value: @@ -52692,7 +52830,7 @@ paths: schema: type: object properties: - pattern_config_version: *342 + pattern_config_version: *344 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -52718,7 +52856,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *342 + custom_pattern_version: *344 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -52816,7 +52954,7 @@ paths: application/json: schema: type: array - items: &675 + items: &677 description: A repository security advisory. type: object properties: @@ -53036,7 +53174,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 credits_detailed: type: array nullable: true @@ -53046,7 +53184,7 @@ paths: type: object properties: user: *4 - type: *343 + type: *345 state: type: string description: The state of the user's acceptance of the @@ -53070,7 +53208,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *208 + items: *210 private_fork: readOnly: true nullable: true @@ -53107,7 +53245,7 @@ paths: - private_fork additionalProperties: false examples: - default: &676 + default: &678 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -53494,7 +53632,7 @@ paths: application/json: schema: type: array - items: *344 + items: *346 examples: default: value: @@ -53712,9 +53850,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53783,7 +53921,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -53806,7 +53944,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -53847,7 +53985,7 @@ paths: type: integer network_configurations: type: array - items: &345 + items: &347 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -53993,9 +54131,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: &346 + default: &348 value: id: 123456789ABCDEF name: My network configuration @@ -54024,7 +54162,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - &347 + - &349 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -54036,9 +54174,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 headers: Link: *70 x-github: @@ -54060,7 +54198,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - *347 + - *349 requestBody: required: true content: @@ -54113,9 +54251,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54135,7 +54273,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *78 - - *347 + - *349 responses: '204': description: Response @@ -54275,13 +54413,13 @@ paths: application/json: schema: type: array - items: *348 + items: *350 examples: - default: *349 + default: *351 '500': *55 '403': *29 '404': *6 - '422': *350 + '422': *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54321,9 +54459,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 headers: Link: *70 '403': *29 @@ -54417,7 +54555,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &353 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -54480,8 +54618,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 nullable: true members_count: type: integer @@ -54744,7 +54882,7 @@ paths: - repos_count - organization examples: - default: &352 + default: &354 value: id: 1 node_id: MDQ6VGVhbTE= @@ -54821,9 +54959,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 x-github: githubCloudOnly: false @@ -54907,16 +55045,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '201': description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 '422': *15 '403': *29 @@ -54946,7 +55084,7 @@ paths: responses: '204': description: Response - '422': &353 + '422': &355 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -54980,12 +55118,12 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 - '422': *353 + '422': *355 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55067,7 +55205,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &356 title: Team Membership description: Team Membership type: object @@ -55094,7 +55232,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &691 + response-if-user-is-a-team-maintainer: &693 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55157,9 +55295,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: &692 + response-if-users-membership-with-team-is-now-pending: &694 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55233,9 +55371,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -55266,14 +55404,14 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &693 + schema: &695 title: Team Repository description: A team's access to a repository. type: object @@ -55844,8 +55982,8 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -55892,8 +56030,8 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -55928,9 +56066,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: &694 + response-if-child-teams-exist: &696 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -56084,7 +56222,7 @@ paths: resources: type: object properties: - core: &357 + core: &359 title: Rate Limit type: object properties: @@ -56101,21 +56239,21 @@ paths: - remaining - reset - used - graphql: *357 - search: *357 - code_search: *357 - source_import: *357 - integration_manifest: *357 - code_scanning_upload: *357 - actions_runner_registration: *357 - scim: *357 - dependency_snapshots: *357 - dependency_sbom: *357 - code_scanning_autofix: *357 + graphql: *359 + search: *359 + code_search: *359 + source_import: *359 + integration_manifest: *359 + code_scanning_upload: *359 + actions_runner_registration: *359 + scim: *359 + dependency_snapshots: *359 + dependency_sbom: *359 + code_scanning_autofix: *359 required: - core - search - rate: *357 + rate: *359 required: - rate - resources @@ -56220,14 +56358,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *358 + schema: *360 examples: default-response: summary: Default response @@ -56732,7 +56870,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56750,8 +56888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -57049,10 +57187,10 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 - '307': &361 + default: *362 + '307': &363 description: Temporary Redirect content: application/json: @@ -57081,8 +57219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -57104,7 +57242,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *361 + '307': *363 '404': *6 '409': *54 x-github: @@ -57128,11 +57266,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - - &393 + - &395 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -57155,7 +57293,7 @@ paths: type: integer artifacts: type: array - items: &362 + items: &364 title: Artifact description: An artifact type: object @@ -57233,7 +57371,7 @@ paths: - expires_at - updated_at examples: - default: &394 + default: &396 value: total_count: 2 artifacts: @@ -57294,9 +57432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *355 - - *356 - - &363 + - *357 + - *358 + - &365 name: artifact_id description: The unique identifier of the artifact. in: path @@ -57308,7 +57446,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *364 examples: default: value: @@ -57346,9 +57484,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *355 - - *356 - - *363 + - *357 + - *358 + - *365 responses: '204': description: Response @@ -57372,9 +57510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *355 - - *356 - - *363 + - *357 + - *358 + - *365 - name: archive_format in: path required: true @@ -57384,11 +57522,11 @@ paths: '302': description: Response headers: - Location: &516 + Location: &518 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': &555 + '410': &557 description: Gone content: application/json: @@ -57413,14 +57551,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &364 + schema: &366 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -57453,13 +57591,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *364 + schema: *366 examples: selected_actions: *42 responses: @@ -57488,14 +57626,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &365 + schema: &367 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -57528,13 +57666,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *365 + schema: *367 examples: selected_actions: *44 responses: @@ -57565,14 +57703,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -57598,11 +57736,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - - &367 + - &369 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 @@ -57636,7 +57774,7 @@ paths: description: Response content: application/json: - schema: &368 + schema: &370 title: Repository actions caches description: Repository actions caches type: object @@ -57678,7 +57816,7 @@ paths: - total_count - actions_caches examples: - default: &369 + default: &371 value: total_count: 1 actions_caches: @@ -57710,23 +57848,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: - - *355 - - *356 + - *357 + - *358 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *367 + - *369 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *369 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57746,8 +57884,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: - - *355 - - *356 + - *357 + - *358 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -57776,8 +57914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *48 responses: @@ -57859,8 +57997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -58012,9 +58150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *355 - - *356 - - &370 + - *357 + - *358 + - &372 name: job_id description: The unique identifier of the job. in: path @@ -58026,7 +58164,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &399 title: Job description: Information of a job execution in a workflow run type: object @@ -58333,9 +58471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *355 - - *356 - - *370 + - *357 + - *358 + - *372 responses: '302': description: Response @@ -58363,9 +58501,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *355 - - *356 - - *370 + - *357 + - *358 + - *372 requestBody: required: false content: @@ -58391,7 +58529,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -58415,8 +58553,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Status response @@ -58475,8 +58613,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -58515,7 +58653,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -58544,8 +58682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -58563,7 +58701,7 @@ paths: type: integer secrets: type: array - items: &399 + items: &401 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -58583,7 +58721,7 @@ paths: - created_at - updated_at examples: - default: &400 + default: &402 value: total_count: 2 secrets: @@ -58616,9 +58754,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -58635,7 +58773,7 @@ paths: type: integer variables: type: array - items: &401 + items: &403 title: Actions Variable type: object properties: @@ -58665,7 +58803,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &404 value: total_count: 2 variables: @@ -58698,8 +58836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -58708,12 +58846,12 @@ paths: schema: type: object properties: - enabled: &372 + enabled: &374 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *146 - selected_actions_url: *371 - sha_pinning_required: *147 + allowed_actions: *148 + selected_actions_url: *373 + sha_pinning_required: *149 required: - enabled examples: @@ -58741,8 +58879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -58753,9 +58891,9 @@ paths: schema: type: object properties: - enabled: *372 - allowed_actions: *146 - sha_pinning_required: *147 + enabled: *374 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled examples: @@ -58785,14 +58923,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &373 + schema: &375 type: object properties: access_level: @@ -58809,7 +58947,7 @@ paths: required: - access_level examples: - default: &374 + default: &376 value: access_level: organization x-github: @@ -58833,15 +58971,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 responses: '204': description: Response @@ -58865,14 +59003,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -58896,8 +59034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Empty response for successful settings update @@ -58907,7 +59045,7 @@ paths: required: true content: application/json: - schema: *376 + schema: *378 examples: default: summary: Set retention days @@ -58931,16 +59069,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *377 + default: *379 '404': *6 x-github: enabledForGitHubApps: true @@ -58959,8 +59097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -58970,7 +59108,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -58994,16 +59132,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: - default: *149 + default: *151 '403': *29 '404': *6 x-github: @@ -59023,15 +59161,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *379 + schema: *381 examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -59055,16 +59193,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -59083,8 +59221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -59092,9 +59230,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -59116,16 +59254,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *380 + schema: *382 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59146,8 +59284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Success response @@ -59158,9 +59296,9 @@ paths: required: true content: application/json: - schema: *381 + schema: *383 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59187,8 +59325,8 @@ paths: in: query schema: type: string - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -59206,9 +59344,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -59232,8 +59370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -59241,9 +59379,9 @@ paths: application/json: schema: type: array - items: *382 + items: *384 examples: - default: *383 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59265,8 +59403,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -59309,7 +59447,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *384 + '201': *386 '404': *6 '422': *7 '409': *54 @@ -59340,16 +59478,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *385 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59377,16 +59515,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *386 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59408,17 +59546,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *387 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59439,9 +59577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: '204': description: Response @@ -59467,11 +59605,11 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: - '200': *167 + '200': *169 '404': *6 x-github: githubCloudOnly: false @@ -59493,9 +59631,9 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 requestBody: required: true content: @@ -59519,7 +59657,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59543,9 +59681,9 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 requestBody: required: true content: @@ -59570,7 +59708,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59594,11 +59732,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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: - '200': *388 + '200': *390 '404': *6 x-github: githubCloudOnly: false @@ -59625,12 +59763,12 @@ 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: - - *355 - - *356 - - *162 - - *389 + - *357 + - *358 + - *164 + - *391 responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59656,9 +59794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *355 - - *356 - - &405 + - *357 + - *358 + - &407 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. @@ -59666,7 +59804,7 @@ paths: required: false schema: type: string - - &406 + - &408 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -59674,7 +59812,7 @@ paths: required: false schema: type: string - - &407 + - &409 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -59683,7 +59821,7 @@ paths: required: false schema: type: string - - &408 + - &410 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 @@ -59710,7 +59848,7 @@ paths: - pending - *17 - *19 - - &409 + - &411 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)." @@ -59719,7 +59857,7 @@ paths: schema: type: string format: date-time - - &390 + - &392 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -59728,13 +59866,13 @@ paths: schema: type: boolean default: false - - &410 + - &412 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &411 + - &413 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -59757,7 +59895,7 @@ paths: type: integer workflow_runs: type: array - items: &391 + items: &393 title: Workflow Run description: An invocation of a workflow type: object @@ -59905,7 +60043,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &435 + properties: &437 id: type: string description: SHA for the commit @@ -59956,7 +60094,7 @@ paths: - name - email nullable: true - required: &436 + required: &438 - id - tree_id - message @@ -59964,8 +60102,8 @@ paths: - author - committer nullable: true - repository: *161 - head_repository: *161 + repository: *163 + head_repository: *163 head_repository_id: type: integer example: 5 @@ -60003,7 +60141,7 @@ paths: - workflow_url - pull_requests examples: - default: &412 + default: &414 value: total_count: 1 workflow_runs: @@ -60239,24 +60377,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *355 - - *356 - - &392 + - *357 + - *358 + - &394 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *390 + - *392 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &395 + default: &397 value: id: 30433642 name: Build @@ -60497,9 +60635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '204': description: Response @@ -60522,9 +60660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -60643,15 +60781,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -60678,12 +60816,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - *17 - *19 - - *393 + - *395 - *62 responses: '200': @@ -60700,9 +60838,9 @@ paths: type: integer artifacts: type: array - items: *362 + items: *364 examples: - default: *394 + default: *396 headers: Link: *70 x-github: @@ -60726,25 +60864,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *355 - - *356 - - *392 - - &396 + - *357 + - *358 + - *394 + - &398 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *390 + - *392 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *395 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60767,10 +60905,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *355 - - *356 - - *392 - - *396 + - *357 + - *358 + - *394 + - *398 - *17 - *19 responses: @@ -60788,9 +60926,9 @@ paths: type: integer jobs: type: array - items: *397 + items: *399 examples: - default: &398 + default: &400 value: total_count: 1 jobs: @@ -60903,10 +61041,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *355 - - *356 - - *392 - - *396 + - *357 + - *358 + - *394 + - *398 responses: '302': description: Response @@ -60934,15 +61072,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -60982,9 +61120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - *17 - *47 - *48 @@ -61155,9 +61293,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: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: true content: @@ -61224,15 +61362,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61259,9 +61397,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - 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 @@ -61291,9 +61429,9 @@ paths: type: integer jobs: type: array - items: *397 + items: *399 examples: - default: *398 + default: *400 headers: Link: *70 x-github: @@ -61318,9 +61456,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '302': description: Response @@ -61347,9 +61485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '204': description: Response @@ -61376,9 +61514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -61438,7 +61576,7 @@ paths: items: type: object properties: - type: &523 + type: &525 type: string description: The type of reviewer. enum: @@ -61448,7 +61586,7 @@ paths: reviewer: anyOf: - *4 - - *208 + - *210 required: - environment - wait_timer @@ -61523,9 +61661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: true content: @@ -61572,12 +61710,12 @@ paths: application/json: schema: type: array - items: &518 + items: &520 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &765 + properties: &766 url: type: string format: uri @@ -61662,7 +61800,7 @@ paths: nullable: true properties: *83 required: *84 - required: &766 + required: &767 - id - node_id - sha @@ -61678,7 +61816,7 @@ paths: - created_at - updated_at examples: - default: &519 + default: &521 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -61734,9 +61872,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: false content: @@ -61757,7 +61895,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61780,9 +61918,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: false content: @@ -61803,7 +61941,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61835,9 +61973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -61974,8 +62112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -61993,9 +62131,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -62020,16 +62158,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62051,17 +62189,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: &413 + default: &415 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -62087,9 +62225,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -62120,7 +62258,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62146,9 +62284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -62173,9 +62311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -62192,9 +62330,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -62217,8 +62355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -62245,7 +62383,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62270,17 +62408,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: &414 + default: &416 value: name: USERNAME value: octocat @@ -62306,9 +62444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 requestBody: required: true content: @@ -62350,9 +62488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '204': description: Response @@ -62377,8 +62515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -62396,7 +62534,7 @@ paths: type: integer workflows: type: array - items: &403 + items: &405 title: Workflow description: A GitHub Actions workflow type: object @@ -62503,9 +62641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *355 - - *356 - - &404 + - *357 + - *358 + - &406 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -62520,7 +62658,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *405 examples: default: value: @@ -62553,9 +62691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '204': description: Response @@ -62580,9 +62718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -62669,9 +62807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '204': description: Response @@ -62698,19 +62836,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *355 - - *356 - - *404 - - *405 + - *357 + - *358 - *406 - *407 - *408 - - *17 - - *19 - *409 - - *390 - *410 + - *17 + - *19 - *411 + - *392 + - *412 + - *413 responses: '200': description: Response @@ -62726,9 +62864,9 @@ paths: type: integer workflow_runs: type: array - items: *391 + items: *393 examples: - default: *412 + default: *414 headers: Link: *70 x-github: @@ -62760,9 +62898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '200': description: Response @@ -62823,8 +62961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *355 - - *356 + - *357 + - *358 - *62 - *17 - *47 @@ -62993,8 +63131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -63012,9 +63150,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -63038,9 +63176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -63057,9 +63195,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -63084,8 +63222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -63103,9 +63241,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -63130,16 +63268,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63161,17 +63299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: *413 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63193,9 +63331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -63226,7 +63364,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -63252,9 +63390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -63279,9 +63417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -63298,9 +63436,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -63323,8 +63461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -63351,7 +63489,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -63376,17 +63514,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *414 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63407,9 +63545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 requestBody: required: true content: @@ -63451,9 +63589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '204': description: Response @@ -63474,8 +63612,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -63512,8 +63650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *355 - - *356 + - *357 + - *358 - name: assignee in: path required: true @@ -63549,8 +63687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -63660,8 +63798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *47 - *48 @@ -63718,7 +63856,7 @@ paths: initiator: type: string examples: - default: *415 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63738,8 +63876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -63747,7 +63885,7 @@ paths: application/json: schema: type: array - items: &416 + items: &418 title: Autolink reference description: An autolink reference. type: object @@ -63801,8 +63939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -63841,9 +63979,9 @@ paths: description: response content: application/json: - schema: *416 + schema: *418 examples: - default: &417 + default: &419 value: id: 1 key_prefix: TICKET- @@ -63874,9 +64012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *355 - - *356 - - &418 + - *357 + - *358 + - &420 name: autolink_id description: The unique identifier of the autolink. in: path @@ -63888,9 +64026,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: *417 + default: *419 '404': *6 x-github: githubCloudOnly: false @@ -63910,9 +64048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *355 - - *356 - - *418 + - *357 + - *358 + - *420 responses: '204': description: Response @@ -63936,8 +64074,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response if Dependabot is enabled @@ -63985,8 +64123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -64007,8 +64145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -64028,8 +64166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *355 - - *356 + - *357 + - *358 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -64067,7 +64205,7 @@ paths: - url protected: type: boolean - protection: &420 + protection: &422 title: Branch Protection description: Branch Protection type: object @@ -64109,7 +64247,7 @@ paths: required: - contexts - checks - enforce_admins: &423 + enforce_admins: &425 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -64124,7 +64262,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &425 + required_pull_request_reviews: &427 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -64145,7 +64283,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *208 + items: *210 apps: description: The list of apps with review dismissal access. @@ -64174,7 +64312,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *208 + items: *210 apps: description: The list of apps allowed to bypass pull request requirements. @@ -64200,7 +64338,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &422 + restrictions: &424 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -64263,7 +64401,7 @@ paths: type: string teams: type: array - items: *208 + items: *210 apps: type: array items: @@ -64477,9 +64615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *355 - - *356 - - &421 + - *357 + - *358 + - &423 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). @@ -64493,14 +64631,14 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &488 + commit: &490 title: Commit description: Commit type: object @@ -64534,7 +64672,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &419 + properties: &421 name: type: string example: '"Chris Wanstrath"' @@ -64550,7 +64688,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true message: type: string @@ -64571,7 +64709,7 @@ paths: required: - sha - url - verification: &541 + verification: &543 title: Verification type: object properties: @@ -64605,12 +64743,12 @@ paths: nullable: true oneOf: - *4 - - *170 + - *172 committer: nullable: true oneOf: - *4 - - *170 + - *172 parents: type: array items: @@ -64641,7 +64779,7 @@ paths: type: integer files: type: array - items: &501 + items: &503 title: Diff Entry description: Diff Entry type: object @@ -64725,7 +64863,7 @@ paths: - self protected: type: boolean - protection: *420 + protection: *422 protection_url: type: string format: uri @@ -64832,7 +64970,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *359 + '301': *361 '404': *6 x-github: githubCloudOnly: false @@ -64854,15 +64992,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *420 + schema: *422 examples: default: value: @@ -65056,9 +65194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -65313,7 +65451,7 @@ paths: url: type: string format: uri - required_status_checks: &428 + required_status_checks: &430 title: Status Check Policy description: Status Check Policy type: object @@ -65389,7 +65527,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -65407,7 +65545,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -65465,7 +65603,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *422 + restrictions: *424 required_conversation_resolution: type: object properties: @@ -65577,9 +65715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65604,17 +65742,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: &424 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -65636,17 +65774,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65665,9 +65803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65692,17 +65830,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: &426 + default: &428 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -65798,9 +65936,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -65898,9 +66036,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 '422': *15 x-github: githubCloudOnly: false @@ -65921,9 +66059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65950,17 +66088,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: &427 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -65983,17 +66121,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: *427 + default: *429 '404': *6 x-github: githubCloudOnly: false @@ -66013,9 +66151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -66040,17 +66178,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *428 + schema: *430 examples: - default: &429 + default: &431 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -66076,9 +66214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66130,9 +66268,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *430 examples: - default: *429 + default: *431 '404': *6 '422': *15 x-github: @@ -66154,9 +66292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -66180,9 +66318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66216,9 +66354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66285,9 +66423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66351,9 +66489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: content: application/json: @@ -66419,15 +66557,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *422 + schema: *424 examples: default: value: @@ -66518,9 +66656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -66543,9 +66681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66555,7 +66693,7 @@ paths: type: array items: *5 examples: - default: &430 + default: &432 value: - id: 1 slug: octoapp @@ -66612,9 +66750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66648,7 +66786,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66669,9 +66807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66705,7 +66843,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66726,9 +66864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66762,7 +66900,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66784,9 +66922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66794,9 +66932,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '404': *6 x-github: githubCloudOnly: false @@ -66816,9 +66954,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66854,9 +66992,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66877,9 +67015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66915,9 +67053,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66938,9 +67076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: content: application/json: @@ -66975,9 +67113,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66999,9 +67137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -67035,9 +67173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -67095,9 +67233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -67155,9 +67293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -67217,9 +67355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -67241,7 +67379,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: default: value: @@ -67357,8 +67495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -67637,7 +67775,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &434 title: CheckRun description: A check performed on the code of a given code change type: object @@ -67757,7 +67895,7 @@ paths: check. type: array items: *93 - deployment: &758 + deployment: &759 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68037,9 +68175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *355 - - *356 - - &433 + - *357 + - *358 + - &435 name: check_run_id description: The unique identifier of the check run. in: path @@ -68051,9 +68189,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *434 examples: - default: &434 + default: &436 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -68153,9 +68291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 requestBody: required: true content: @@ -68395,9 +68533,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *434 examples: - default: *434 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68417,9 +68555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 - *17 - *19 responses: @@ -68514,15 +68652,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -68560,8 +68698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -68583,7 +68721,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &437 + schema: &439 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -68660,7 +68798,7 @@ paths: nullable: true properties: *83 required: *84 - repository: *161 + repository: *163 created_at: type: string format: date-time @@ -68669,12 +68807,12 @@ paths: type: string format: date-time nullable: true - head_commit: &786 + head_commit: &787 title: Simple Commit description: A commit. type: object - properties: *435 - required: *436 + properties: *437 + required: *438 latest_check_runs_count: type: integer check_runs_url: @@ -68702,7 +68840,7 @@ paths: - check_runs_url - pull_requests examples: - default: &438 + default: &440 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -68993,9 +69131,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69014,8 +69152,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -69076,7 +69214,7 @@ paths: required: - app_id - setting - repository: *161 + repository: *163 examples: default: value: @@ -69324,9 +69462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *355 - - *356 - - &439 + - *357 + - *358 + - &441 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -69338,9 +69476,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69363,17 +69501,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *355 - - *356 - - *439 - - &494 + - *357 + - *358 + - *441 + - &496 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &495 + - &497 name: status description: Returns check runs with the specified `status`. in: query @@ -69412,9 +69550,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *434 examples: - default: &496 + default: &498 value: total_count: 1 check_runs: @@ -69516,15 +69654,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *355 - - *356 - - *439 + - *357 + - *358 + - *441 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -69547,8 +69685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -69638,8 +69776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -69700,7 +69838,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -69767,21 +69905,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *355 - - *356 - - *440 - - *441 + - *357 + - *358 + - *442 + - *443 - *19 - *17 - - &458 + - &460 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: *442 - - &459 + schema: *444 + - &461 name: pr description: The number of the pull request for the results you want to list. in: query @@ -69806,13 +69944,13 @@ paths: be returned. in: query required: false - schema: *443 + schema: *445 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *444 + schema: *446 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -69831,14 +69969,14 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *445 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *447 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -69846,12 +69984,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *446 - dismissed_comment: *447 - rule: *448 - tool: *449 - most_recent_instance: *450 + dismissed_at: *194 + dismissed_reason: *448 + dismissed_comment: *449 + rule: *450 + tool: *451 + most_recent_instance: *452 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69977,7 +70115,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &451 + '403': &453 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -70004,9 +70142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *355 - - *356 - - &452 + - *357 + - *358 + - &454 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -70014,23 +70152,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: &453 + schema: &455 type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *445 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *447 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -70038,9 +70176,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *446 - dismissed_comment: *447 + dismissed_at: *194 + dismissed_reason: *448 + dismissed_comment: *449 rule: type: object properties: @@ -70094,8 +70232,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *449 - most_recent_instance: *450 + tool: *451 + most_recent_instance: *452 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -70194,7 +70332,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70214,9 +70352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: true content: @@ -70231,8 +70369,8 @@ paths: enum: - open - dismissed - dismissed_reason: *446 - dismissed_comment: *447 + dismissed_reason: *448 + dismissed_comment: *449 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -70260,7 +70398,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: default: value: @@ -70336,7 +70474,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &457 + '403': &459 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -70363,15 +70501,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 responses: '200': description: Response content: application/json: - schema: &454 + schema: &456 type: object properties: status: @@ -70397,13 +70535,13 @@ paths: - description - started_at examples: - default: &455 + default: &457 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &456 + '400': &458 description: Bad Request content: application/json: @@ -70414,7 +70552,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': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70439,29 +70577,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 responses: '200': description: OK content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 '202': description: Accepted content: application/json: - schema: *454 + schema: *456 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *456 + '400': *458 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -70493,9 +70631,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: false content: @@ -70540,8 +70678,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *456 - '403': *457 + '400': *458 + '403': *459 '404': *6 '422': description: Unprocessable Entity @@ -70565,13 +70703,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 - *19 - *17 - - *458 - - *459 + - *460 + - *461 responses: '200': description: Response @@ -70582,10 +70720,10 @@ paths: items: type: object properties: - ref: *442 - analysis_key: *460 - environment: *461 - category: *462 + ref: *444 + analysis_key: *462 + environment: *463 + category: *464 state: type: string description: State of a code scanning alert instance. @@ -70600,7 +70738,7 @@ paths: properties: text: type: string - location: *463 + location: *465 html_url: type: string classifications: @@ -70608,7 +70746,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *464 + items: *466 examples: default: value: @@ -70645,7 +70783,7 @@ paths: end_column: 50 classifications: - source - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70679,25 +70817,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *355 - - *356 - - *440 - - *441 + - *357 + - *358 + - *442 + - *443 - *19 - *17 - - *459 + - *461 - 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: *442 + schema: *444 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &465 + schema: &467 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -70718,23 +70856,23 @@ paths: application/json: schema: type: array - items: &466 + items: &468 type: object properties: - ref: *442 - commit_sha: &474 + ref: *444 + commit_sha: &476 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *460 + analysis_key: *462 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *462 + category: *464 error: type: string example: error reading field xyz @@ -70758,8 +70896,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *465 - tool: *449 + sarif_id: *467 + tool: *451 deletable: type: boolean warning: @@ -70820,7 +70958,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70856,8 +70994,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: - - *355 - - *356 + - *357 + - *358 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70870,7 +71008,7 @@ paths: description: Response content: application/json: - schema: *466 + schema: *468 examples: response: summary: application/json response @@ -70924,7 +71062,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *451 + '403': *453 '404': *6 '422': description: Response if analysis could not be processed @@ -71011,8 +71149,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: - - *355 - - *356 + - *357 + - *358 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -71065,7 +71203,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': *457 + '403': *459 '404': *6 '503': *122 x-github: @@ -71087,8 +71225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -71096,7 +71234,7 @@ paths: application/json: schema: type: array - items: &467 + items: &469 title: CodeQL Database description: A CodeQL database. type: object @@ -71207,7 +71345,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': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -71236,8 +71374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: language in: path description: The language of the CodeQL database. @@ -71249,7 +71387,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: default: value: @@ -71281,9 +71419,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': &505 + '302': &507 description: Found - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -71305,8 +71443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *355 - - *356 + - *357 + - *358 - name: language in: path description: The language of the CodeQL database. @@ -71316,7 +71454,7 @@ paths: responses: '204': description: Response - '403': *457 + '403': *459 '404': *6 '503': *122 x-github: @@ -71344,8 +71482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -71354,7 +71492,7 @@ paths: type: object additionalProperties: false properties: - language: &468 + language: &470 type: string description: The language targeted by the CodeQL query enum: @@ -71434,7 +71572,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &472 + schema: &474 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -71444,7 +71582,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *468 + query_language: *470 query_pack_url: type: string description: The download url for the query pack. @@ -71491,7 +71629,7 @@ paths: items: type: object properties: - repository: &469 + repository: &471 title: Repository Identifier description: Repository Identifier type: object @@ -71527,7 +71665,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &473 + analysis_status: &475 type: string description: The new status of the CodeQL variant analysis repository task. @@ -71559,7 +71697,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &470 + access_mismatch_repos: &472 type: object properties: repository_count: @@ -71573,7 +71711,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: *469 + items: *471 required: - repository_count - repositories @@ -71595,8 +71733,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *470 - over_limit_repos: *470 + no_codeql_db_repos: *472 + over_limit_repos: *472 required: - access_mismatch_repos - not_found_repos @@ -71612,7 +71750,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &471 + value: &473 summary: Default response value: id: 1 @@ -71758,10 +71896,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *471 + value: *473 repository_lists: summary: Response for a successful variant analysis submission - value: *471 + value: *473 '404': *6 '422': description: Unable to process variant analysis submission @@ -71789,8 +71927,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: - - *355 - - *356 + - *357 + - *358 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -71802,9 +71940,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *471 + default: *473 '404': *6 '503': *122 x-github: @@ -71827,7 +71965,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: - - *355 + - *357 - name: repo in: path description: The name of the controller repository. @@ -71862,7 +72000,7 @@ paths: type: object properties: repository: *67 - analysis_status: *473 + analysis_status: *475 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -71987,8 +72125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72073,7 +72211,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -72094,8 +72232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -72162,7 +72300,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -72187,7 +72325,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *457 + '403': *459 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -72258,8 +72396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -72267,7 +72405,7 @@ paths: schema: type: object properties: - commit_sha: *474 + commit_sha: *476 ref: type: string description: |- @@ -72325,7 +72463,7 @@ paths: schema: type: object properties: - id: *465 + id: *467 url: type: string description: The REST API URL for checking the status of the upload. @@ -72339,7 +72477,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': *457 + '403': *459 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -72362,8 +72500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *355 - - *356 + - *357 + - *358 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -72409,7 +72547,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': *451 + '403': *453 '404': description: Not Found if the sarif id does not match any upload '503': *122 @@ -72434,8 +72572,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72516,8 +72654,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *355 - - *356 + - *357 + - *358 - 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 @@ -72637,8 +72775,8 @@ paths: parameters: - *17 - *19 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72654,7 +72792,7 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: default: value: @@ -72952,8 +73090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -73016,17 +73154,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '400': *14 '401': *25 '403': *29 @@ -73055,8 +73193,8 @@ paths: parameters: - *17 - *19 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -73120,8 +73258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -73156,14 +73294,14 @@ paths: type: integer machines: type: array - items: &700 + items: &702 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *476 - required: *477 + properties: *478 + required: *479 examples: - default: &701 + default: &703 value: total_count: 2 machines: @@ -73203,8 +73341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *355 - - *356 + - *357 + - *358 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -73288,8 +73426,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: - - *355 - - *356 + - *357 + - *358 - 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 @@ -73355,8 +73493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -73374,7 +73512,7 @@ paths: type: integer secrets: type: array - items: &481 + items: &483 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -73394,7 +73532,7 @@ paths: - created_at - updated_at examples: - default: *478 + default: *480 headers: Link: *70 x-github: @@ -73417,16 +73555,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -73446,17 +73584,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *482 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73476,9 +73614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -73506,7 +73644,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -73530,9 +73668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -73560,8 +73698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *355 - - *356 + - *357 + - *358 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -73603,7 +73741,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &483 + properties: &485 login: type: string example: octocat @@ -73696,7 +73834,7 @@ paths: user_view_type: type: string example: public - required: &484 + required: &486 - avatar_url - events_url - followers_url @@ -73770,8 +73908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '204': @@ -73818,8 +73956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 requestBody: required: false @@ -73846,7 +73984,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &554 + schema: &556 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -73857,7 +73995,7 @@ paths: example: 42 type: integer format: int64 - repository: *161 + repository: *163 invitee: title: Simple User description: A GitHub user. @@ -74035,7 +74173,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *130 + schema: *132 '403': *29 x-github: triggersNotification: true @@ -74075,8 +74213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '204': @@ -74108,8 +74246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '200': @@ -74130,8 +74268,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *483 - required: *484 + properties: *485 + required: *486 nullable: true required: - permission @@ -74186,8 +74324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -74197,7 +74335,7 @@ paths: application/json: schema: type: array - items: &485 + items: &487 title: Commit Comment description: Commit Comment type: object @@ -74255,7 +74393,7 @@ paths: - created_at - updated_at examples: - default: &490 + default: &492 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74314,17 +74452,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: &491 + default: &493 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74381,8 +74519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -74405,7 +74543,7 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: default: value: @@ -74456,8 +74594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -74479,8 +74617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -74507,7 +74645,7 @@ paths: application/json: schema: type: array - items: &486 + items: &488 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -74550,7 +74688,7 @@ paths: - content - created_at examples: - default: &558 + default: &560 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -74595,8 +74733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -74629,9 +74767,9 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: &487 + default: &489 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -74660,9 +74798,9 @@ paths: description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -74684,10 +74822,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - &559 + - &561 name: reaction_id description: The unique identifier of the reaction. in: path @@ -74742,8 +74880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *355 - - *356 + - *357 + - *358 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -74799,9 +74937,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: &610 + default: &612 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74895,9 +75033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *355 - - *356 - - &489 + - *357 + - *358 + - &491 name: commit_sha description: The SHA of the commit. in: path @@ -74969,9 +75107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 - *17 - *19 responses: @@ -74981,9 +75119,9 @@ paths: application/json: schema: type: array - items: *485 + items: *487 examples: - default: *490 + default: *492 headers: Link: *70 x-github: @@ -75011,9 +75149,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 requestBody: required: true content: @@ -75048,9 +75186,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: *491 + default: *493 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75078,9 +75216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 - *17 - *19 responses: @@ -75090,9 +75228,9 @@ paths: application/json: schema: type: array - items: *492 + items: *494 examples: - default: &602 + default: &604 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -75629,11 +75767,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 - - &493 + - &495 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)" @@ -75648,9 +75786,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: &589 + default: &591 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75738,7 +75876,7 @@ paths: schema: type: string examples: - default: &502 + default: &504 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -75751,7 +75889,7 @@ paths: schema: type: string examples: - default: &503 + default: &505 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -75804,11 +75942,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *355 - - *356 - - *493 - - *494 + - *357 + - *358 - *495 + - *496 + - *497 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -75842,9 +75980,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *434 examples: - default: *496 + default: *498 headers: Link: *70 x-github: @@ -75869,9 +76007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -75879,7 +76017,7 @@ paths: schema: type: integer example: 1 - - *494 + - *496 - *17 - *19 responses: @@ -75897,7 +76035,7 @@ paths: type: integer check_suites: type: array - items: *437 + items: *439 examples: default: value: @@ -76097,9 +76235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - *17 - *19 responses: @@ -76166,7 +76304,7 @@ paths: type: string total_count: type: integer - repository: *161 + repository: *163 commit_url: type: string format: uri @@ -76297,9 +76435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - *17 - *19 responses: @@ -76309,7 +76447,7 @@ paths: application/json: schema: type: array - items: &680 + items: &682 title: Status description: The status of a commit. type: object @@ -76390,7 +76528,7 @@ paths: site_admin: false headers: Link: *70 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76418,8 +76556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -76448,20 +76586,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *497 - required: *498 + properties: *499 + required: *500 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &499 + properties: &501 url: type: string format: uri html_url: type: string format: uri - required: &500 + required: &502 - url - html_url nullable: true @@ -76475,26 +76613,26 @@ paths: contributing: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true readme: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true issue_template: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true pull_request_template: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true required: - code_of_conduct @@ -76621,8 +76759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 - name: basehead @@ -76665,8 +76803,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *488 - merge_base_commit: *488 + base_commit: *490 + merge_base_commit: *490 status: type: string enum: @@ -76686,10 +76824,10 @@ paths: example: 6 commits: type: array - items: *488 + items: *490 files: type: array - items: *501 + items: *503 required: - url - html_url @@ -76935,12 +77073,12 @@ paths: schema: type: string examples: - default: *502 + default: *504 application/vnd.github.patch: schema: type: string examples: - default: *503 + default: *505 '404': *6 '500': *55 '503': *122 @@ -76985,8 +77123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -77146,7 +77284,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &504 + response-if-content-is-a-file-github-object: &506 summary: Response if content is a file value: type: file @@ -77278,7 +77416,7 @@ paths: - size - type - url - - &615 + - &617 title: Content File description: Content File type: object @@ -77479,7 +77617,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *504 + response-if-content-is-a-file: *506 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -77548,7 +77686,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *505 + '302': *507 '304': *37 x-github: githubCloudOnly: false @@ -77571,8 +77709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -77665,7 +77803,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &508 title: File Commit description: File Commit type: object @@ -77817,7 +77955,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: example-for-creating-a-file: value: @@ -77871,7 +78009,7 @@ paths: schema: oneOf: - *3 - - &536 + - &538 description: Repository rule violation was detected type: object properties: @@ -77892,7 +78030,7 @@ paths: items: type: object properties: - placeholder_id: &672 + placeholder_id: &674 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -77924,8 +78062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -77986,7 +78124,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: default: value: @@ -78041,8 +78179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *355 - - *356 + - *357 + - *358 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -78171,8 +78309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -78304,24 +78442,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *355 - - *356 - - *210 - - *211 + - *357 + - *358 - *212 - *213 - *214 + - *215 + - *216 - 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 - - *215 - - *507 - - *216 - *217 + - *509 - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -78333,11 +78471,11 @@ paths: application/json: schema: type: array - items: &511 + items: &513 type: object description: A Dependabot alert. properties: - number: *186 + number: *188 state: type: string description: The state of the Dependabot alert. @@ -78380,13 +78518,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *508 + security_advisory: *510 security_vulnerability: *66 - url: *189 - html_url: *190 - created_at: *187 - updated_at: *188 - dismissed_at: *192 + url: *191 + html_url: *192 + created_at: *189 + updated_at: *190 + dismissed_at: *194 dismissed_by: title: Simple User description: A GitHub user. @@ -78410,9 +78548,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *191 - auto_dismissed_at: *509 - dismissal_request: *510 + fixed_at: *193 + auto_dismissed_at: *511 + dismissal_request: *512 assignees: type: array description: The users assigned to this alert. @@ -78667,9 +78805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *355 - - *356 - - &512 + - *357 + - *358 + - &514 name: alert_number in: path description: |- @@ -78678,13 +78816,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: default: value: @@ -78816,9 +78954,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *355 - - *356 - - *512 + - *357 + - *358 + - *514 requestBody: required: true content: @@ -78874,7 +79012,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: default: value: @@ -79004,8 +79142,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -79023,7 +79161,7 @@ paths: type: integer secrets: type: array - items: &515 + items: &517 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -79076,16 +79214,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *514 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79105,15 +79243,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *515 + schema: *517 examples: default: value: @@ -79139,9 +79277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -79169,7 +79307,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -79193,9 +79331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -79217,8 +79355,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: - - *355 - - *356 + - *357 + - *358 - 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 @@ -79381,8 +79519,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -79620,8 +79758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: sbom_uuid in: path required: true @@ -79632,7 +79770,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *516 + Location: *518 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -79653,8 +79791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response @@ -79692,8 +79830,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -79768,7 +79906,7 @@ paths: - version - url additionalProperties: false - metadata: &517 + metadata: &519 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -79801,7 +79939,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *517 + metadata: *519 resolved: type: object description: A collection of resolved package dependencies. @@ -79814,7 +79952,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *517 + metadata: *519 relationship: type: string description: A notation of whether a dependency is requested @@ -79943,8 +80081,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *355 - - *356 + - *357 + - *358 - name: sha description: The SHA recorded at creation time. in: query @@ -79984,9 +80122,9 @@ paths: application/json: schema: type: array - items: *518 + items: *520 examples: - default: *519 + default: *521 headers: Link: *70 x-github: @@ -80052,8 +80190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -80134,7 +80272,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *520 examples: simple-example: summary: Simple example @@ -80207,9 +80345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *355 - - *356 - - &520 + - *357 + - *358 + - &522 name: deployment_id description: deployment_id parameter in: path @@ -80221,7 +80359,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *520 examples: default: value: @@ -80286,9 +80424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 responses: '204': description: Response @@ -80310,9 +80448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 - *17 - *19 responses: @@ -80322,7 +80460,7 @@ paths: application/json: schema: type: array - items: &521 + items: &523 title: Deployment Status description: The status of a deployment. type: object @@ -80483,9 +80621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 requestBody: required: true content: @@ -80560,9 +80698,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: &522 + default: &524 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -80618,9 +80756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 - name: status_id in: path required: true @@ -80631,9 +80769,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: *522 + default: *524 '404': *6 x-github: githubCloudOnly: false @@ -80658,8 +80796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -80716,8 +80854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -80734,7 +80872,7 @@ paths: type: integer environments: type: array - items: &524 + items: &526 title: Environment description: Details of a deployment environment type: object @@ -80786,7 +80924,7 @@ paths: type: type: string example: wait_timer - wait_timer: &526 + wait_timer: &528 type: integer example: 30 description: The amount of time to delay a job after @@ -80823,11 +80961,11 @@ paths: items: type: object properties: - type: *523 + type: *525 reviewer: anyOf: - *4 - - *208 + - *210 required: - id - node_id @@ -80847,7 +80985,7 @@ paths: - id - node_id - type - deployment_branch_policy: &527 + deployment_branch_policy: &529 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -80963,9 +81101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *355 - - *356 - - &525 + - *357 + - *358 + - &527 name: environment_name in: path required: true @@ -80978,9 +81116,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: &528 + default: &530 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -81064,9 +81202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: false content: @@ -81075,7 +81213,7 @@ paths: type: object nullable: true properties: - wait_timer: *526 + wait_timer: *528 prevent_self_review: type: boolean example: false @@ -81092,13 +81230,13 @@ paths: items: type: object properties: - type: *523 + type: *525 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *527 + deployment_branch_policy: *529 additionalProperties: false examples: default: @@ -81118,9 +81256,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: *528 + default: *530 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -81144,9 +81282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 responses: '204': description: Default response @@ -81171,9 +81309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 - *17 - *19 responses: @@ -81191,7 +81329,7 @@ paths: example: 2 branch_policies: type: array - items: &529 + items: &531 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -81248,9 +81386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: true content: @@ -81296,9 +81434,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - example-wildcard: &530 + example-wildcard: &532 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -81340,10 +81478,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - &531 + - *357 + - *358 + - *527 + - &533 name: branch_policy_id in: path required: true @@ -81355,9 +81493,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81376,10 +81514,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - *531 + - *357 + - *358 + - *527 + - *533 requestBody: required: true content: @@ -81407,9 +81545,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81428,10 +81566,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - *531 + - *357 + - *358 + - *527 + - *533 responses: '204': description: Response @@ -81456,9 +81594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 responses: '200': description: List of deployment protection rules @@ -81474,7 +81612,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &532 + items: &534 title: Deployment protection rule description: Deployment protection rule type: object @@ -81493,7 +81631,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &533 + app: &535 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -81592,9 +81730,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: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 requestBody: content: application/json: @@ -81615,9 +81753,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *532 + schema: *534 examples: - default: &534 + default: &536 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -81652,9 +81790,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: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 - *19 - *17 responses: @@ -81673,7 +81811,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *533 + items: *535 examples: default: value: @@ -81708,10 +81846,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *355 - - *356 - - *525 - - &535 + - *357 + - *358 + - *527 + - &537 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -81723,9 +81861,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *534 examples: - default: *534 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81746,10 +81884,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *525 - - *356 - - *355 - - *535 + - *527 + - *358 + - *357 + - *537 responses: '204': description: Response @@ -81775,9 +81913,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 - *17 - *19 responses: @@ -81795,9 +81933,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -81822,17 +81960,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81854,18 +81992,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: *413 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81887,10 +82025,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 requestBody: required: true content: @@ -81921,7 +82059,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -81947,10 +82085,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 responses: '204': description: Default response @@ -81975,10 +82113,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *355 - - *356 - - *525 - - *178 + - *357 + - *358 + - *527 + - *180 - *19 responses: '200': @@ -81995,9 +82133,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -82020,9 +82158,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: true content: @@ -82049,7 +82187,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -82074,18 +82212,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *355 - - *356 - - *525 - - *172 + - *357 + - *358 + - *527 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *414 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82106,10 +82244,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *355 - - *356 - - *172 - - *525 + - *357 + - *358 + - *174 + - *527 requestBody: required: true content: @@ -82151,10 +82289,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *355 - - *356 - - *172 - - *525 + - *357 + - *358 + - *174 + - *527 responses: '204': description: Response @@ -82176,8 +82314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -82245,8 +82383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *355 - - *356 + - *357 + - *358 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -82268,7 +82406,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -82405,8 +82543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -82438,9 +82576,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *14 '422': *15 '403': *29 @@ -82461,8 +82599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82521,8 +82659,8 @@ paths: application/json: schema: oneOf: - - *130 - - *536 + - *132 + - *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82547,8 +82685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *355 - - *356 + - *357 + - *358 - name: file_sha in: path required: true @@ -82647,8 +82785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82757,7 +82895,7 @@ paths: description: Response content: application/json: - schema: &537 + schema: &539 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -82971,15 +83109,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 responses: '200': description: Response content: application/json: - schema: *537 + schema: *539 examples: default: value: @@ -83035,9 +83173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *355 - - *356 - - &538 + - *357 + - *358 + - &540 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. @@ -83054,7 +83192,7 @@ paths: application/json: schema: type: array - items: &539 + items: &541 title: Git Reference description: Git references within a repository type: object @@ -83129,17 +83267,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 responses: '200': description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: &540 + default: &542 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -83168,8 +83306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -83198,9 +83336,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -83226,9 +83364,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 requestBody: required: true content: @@ -83257,9 +83395,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 '422': *15 '409': *54 x-github: @@ -83277,9 +83415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 responses: '204': description: Response @@ -83334,8 +83472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -83402,7 +83540,7 @@ paths: description: Response content: application/json: - schema: &542 + schema: &544 title: Git Tag description: Metadata for a Git tag type: object @@ -83453,7 +83591,7 @@ paths: - sha - type - url - verification: *541 + verification: *543 required: - sha - url @@ -83463,7 +83601,7 @@ paths: - tag - message examples: - default: &543 + default: &545 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -83536,8 +83674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *355 - - *356 + - *357 + - *358 - name: tag_sha in: path required: true @@ -83548,9 +83686,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *544 examples: - default: *543 + default: *545 '404': *6 '409': *54 x-github: @@ -83574,8 +83712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -83648,7 +83786,7 @@ paths: description: Response content: application/json: - schema: &544 + schema: &546 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -83744,8 +83882,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *355 - - *356 + - *357 + - *358 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -83768,7 +83906,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: default-response: summary: Default response @@ -83826,8 +83964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -83870,8 +84008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -83881,7 +84019,7 @@ paths: application/json: schema: type: array - items: &545 + items: &547 title: Webhook description: Webhooks for repositories. type: object @@ -83935,7 +84073,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &794 + last_response: &795 title: Hook Response type: object properties: @@ -84009,8 +84147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -84062,9 +84200,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: &546 + default: &548 value: type: Repository id: 12345678 @@ -84112,17 +84250,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '200': description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -84142,9 +84280,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 requestBody: required: true content: @@ -84189,9 +84327,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '422': *15 '404': *6 x-github: @@ -84212,9 +84350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -84238,9 +84376,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '200': description: Response @@ -84267,9 +84405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 requestBody: required: false content: @@ -84313,12 +84451,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 - - *17 - - *229 + - *357 + - *358 - *230 + - *17 + - *231 + - *232 responses: '200': description: Response @@ -84326,9 +84464,9 @@ paths: application/json: schema: type: array - items: *231 + items: *233 examples: - default: *232 + default: *234 '400': *14 '422': *15 x-github: @@ -84347,18 +84485,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 - *16 responses: '200': description: Response content: application/json: - schema: *233 + schema: *235 examples: - default: *234 + default: *236 '400': *14 '422': *15 x-github: @@ -84377,9 +84515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 - *16 responses: '202': *39 @@ -84402,9 +84540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -84429,9 +84567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -84454,8 +84592,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response if immutable releases are enabled @@ -84501,8 +84639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '409': *54 @@ -84522,8 +84660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '409': *54 @@ -84580,14 +84718,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &547 + schema: &549 title: Import description: A repository import from an external source. type: object @@ -84686,7 +84824,7 @@ paths: - html_url - authors_url examples: - default: &550 + default: &552 value: vcs: subversion use_lfs: true @@ -84702,7 +84840,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': &548 + '503': &550 description: Unavailable due to service under maintenance. content: application/json: @@ -84731,8 +84869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -84780,7 +84918,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: default: value: @@ -84805,7 +84943,7 @@ paths: type: string '422': *15 '404': *6 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84833,8 +84971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -84883,7 +85021,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: example-1: summary: Example 1 @@ -84931,7 +85069,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': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84954,12 +85092,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84985,9 +85123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *355 - - *356 - - &722 + - *357 + - *358 + - &724 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85001,7 +85139,7 @@ paths: application/json: schema: type: array - items: &549 + items: &551 title: Porter Author description: Porter Author type: object @@ -85055,7 +85193,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': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85080,8 +85218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *355 - - *356 + - *357 + - *358 - name: author_id in: path required: true @@ -85111,7 +85249,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: default: value: @@ -85124,7 +85262,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85148,8 +85286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -85190,7 +85328,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85218,8 +85356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -85246,11 +85384,11 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: *550 + default: *552 '422': *15 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85273,8 +85411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -85282,8 +85420,8 @@ paths: application/json: schema: *22 examples: - default: *551 - '301': *359 + default: *553 + '301': *361 '404': *6 x-github: githubCloudOnly: false @@ -85303,8 +85441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -85312,12 +85450,12 @@ paths: application/json: schema: anyOf: - - *247 + - *249 - type: object properties: {} additionalProperties: false examples: - default: &553 + default: &555 value: limit: collaborators_only origin: repository @@ -85342,13 +85480,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *552 + schema: *554 examples: default: summary: Example request body @@ -85360,9 +85498,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *553 + default: *555 '409': description: Response x-github: @@ -85384,8 +85522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -85408,8 +85546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -85419,9 +85557,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: &715 + default: &717 value: - id: 1 repository: @@ -85552,9 +85690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *355 - - *356 - - *251 + - *357 + - *358 + - *253 requestBody: required: false content: @@ -85583,7 +85721,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -85714,9 +85852,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *355 - - *356 - - *251 + - *357 + - *358 + - *253 responses: '204': description: Response @@ -85747,8 +85885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *355 - - *356 + - *357 + - *358 - 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 @@ -85810,7 +85948,7 @@ paths: required: false schema: type: string - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -85835,7 +85973,7 @@ paths: type: array items: *88 examples: - default: &566 + default: &568 value: - id: 1 node_id: MDU6SXNzdWUx @@ -85984,7 +86122,7 @@ paths: state_reason: completed headers: Link: *70 - '301': *359 + '301': *361 '422': *15 '404': *6 x-github: @@ -86013,8 +86151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -86119,7 +86257,7 @@ paths: application/json: schema: *88 examples: - default: &563 + default: &565 value: id: 1 node_id: MDU6SXNzdWUx @@ -86276,7 +86414,7 @@ paths: '422': *15 '503': *122 '404': *6 - '410': *555 + '410': *557 x-github: triggersNotification: true githubCloudOnly: false @@ -86304,8 +86442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -86326,9 +86464,9 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: &565 + default: &567 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -86386,17 +86524,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: &557 + default: &559 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -86451,8 +86589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -86475,9 +86613,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *557 + default: *559 '422': *15 x-github: githubCloudOnly: false @@ -86495,8 +86633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -86525,15 +86663,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: default: value: @@ -86589,7 +86727,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -86606,8 +86744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -86615,7 +86753,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 '503': *122 x-github: githubCloudOnly: false @@ -86633,8 +86771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86661,9 +86799,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -86684,8 +86822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -86718,16 +86856,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -86749,10 +86887,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - *559 + - *561 responses: '204': description: Response @@ -86772,8 +86910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -86783,7 +86921,7 @@ paths: application/json: schema: type: array - items: &562 + items: &564 title: Issue Event description: Issue Event type: object @@ -86826,8 +86964,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *560 - required: *561 + properties: *562 + required: *563 nullable: true label: title: Issue Event Label @@ -86871,7 +87009,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *208 + requested_team: *210 dismissed_review: title: Issue Event Dismissed Review type: object @@ -87135,8 +87273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *355 - - *356 + - *357 + - *358 - name: event_id in: path required: true @@ -87147,7 +87285,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *564 examples: default: value: @@ -87340,7 +87478,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *555 + '410': *557 '403': *29 x-github: githubCloudOnly: false @@ -87374,9 +87512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *355 - - *356 - - &564 + - *357 + - *358 + - &566 name: issue_number description: The number that identifies the issue. in: path @@ -87392,7 +87530,7 @@ paths: examples: default: summary: Issue - value: *563 + value: *565 pinned_comment: summary: Issue with pinned comment value: @@ -87591,9 +87729,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 '304': *37 x-github: githubCloudOnly: false @@ -87618,9 +87756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -87746,13 +87884,13 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 '422': *15 '503': *122 '403': *29 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87770,9 +87908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -87800,7 +87938,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87816,9 +87954,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: content: application/json: @@ -87845,7 +87983,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87867,9 +88005,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: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: assignee in: path required: true @@ -87909,9 +88047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *95 - *17 - *19 @@ -87922,13 +88060,13 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: *565 + default: *567 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87957,9 +88095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -87981,16 +88119,16 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *557 + default: *559 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -88018,9 +88156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -88032,12 +88170,12 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88065,9 +88203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -88091,15 +88229,15 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *359 + '301': *361 '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -88130,9 +88268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -88146,13 +88284,13 @@ paths: application/json: schema: *88 examples: - default: *563 - '301': *359 + default: *565 + '301': *361 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 x-github: triggersNotification: true githubCloudOnly: false @@ -88178,9 +88316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -88192,12 +88330,12 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88214,9 +88352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -88230,7 +88368,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &570 + - &572 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -88284,7 +88422,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &573 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -88420,7 +88558,7 @@ paths: - performed_via_github_app - assignee - assigner - - &572 + - &574 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -88471,7 +88609,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &575 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -88522,7 +88660,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &576 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -88576,7 +88714,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &577 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -88610,7 +88748,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -88623,7 +88761,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &578 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -88657,7 +88795,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -88670,7 +88808,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &579 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -88730,7 +88868,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &580 title: Locked Issue Event description: Locked Issue Event type: object @@ -88778,7 +88916,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &581 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -88844,7 +88982,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &582 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -88910,7 +89048,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &583 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -88976,7 +89114,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &584 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89067,7 +89205,7 @@ paths: color: red headers: Link: *70 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89084,9 +89222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -89096,9 +89234,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: &568 + default: &570 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -89122,9 +89260,9 @@ paths: value: '2025-12-25' headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89153,9 +89291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89219,9 +89357,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *567 + items: *569 examples: - default: *568 + default: *570 '400': *14 '403': *29 '404': *6 @@ -89257,9 +89395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89324,9 +89462,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *567 + items: *569 examples: - default: *568 + default: *570 '400': *14 '403': *29 '404': *6 @@ -89357,10 +89495,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *355 - - *356 - - *564 - - *254 + - *357 + - *358 + - *566 + - *256 responses: '204': description: Issue field value deleted successfully @@ -89385,9 +89523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -89399,7 +89537,7 @@ paths: type: array items: *87 examples: - default: &569 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89417,9 +89555,9 @@ paths: default: false headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89435,9 +89573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -89482,10 +89620,10 @@ paths: type: array items: *87 examples: - default: *569 - '301': *359 + default: *571 + '301': *361 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -89502,9 +89640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -89566,10 +89704,10 @@ paths: type: array items: *87 examples: - default: *569 - '301': *359 + default: *571 + '301': *361 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -89586,15 +89724,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '204': description: Response - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89613,9 +89751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: name in: path required: true @@ -89639,9 +89777,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89661,9 +89799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -89691,7 +89829,7 @@ paths: '204': description: Response '403': *29 - '410': *555 + '410': *557 '404': *6 '422': *15 x-github: @@ -89709,9 +89847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '204': description: Response @@ -89741,9 +89879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '200': description: Response @@ -89751,10 +89889,10 @@ paths: application/json: schema: *88 examples: - default: *563 - '301': *359 + default: *565 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89771,9 +89909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - 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. @@ -89799,13 +89937,13 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89823,9 +89961,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89857,16 +89995,16 @@ paths: description: Response content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Response content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -89888,10 +90026,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *355 - - *356 - - *564 - - *559 + - *357 + - *358 + - *566 + - *561 responses: '204': description: Response @@ -89920,9 +90058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89946,7 +90084,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -89979,9 +90117,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -89993,11 +90131,11 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90025,9 +90163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -90056,14 +90194,14 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -90083,9 +90221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -90118,7 +90256,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 '403': *29 '404': *6 '422': *7 @@ -90140,9 +90278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -90157,8 +90295,6 @@ paths: description: Timeline Event type: object anyOf: - - *570 - - *571 - *572 - *573 - *574 @@ -90170,6 +90306,8 @@ paths: - *580 - *581 - *582 + - *583 + - *584 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -90230,8 +90368,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true required: - event @@ -90486,7 +90624,7 @@ paths: type: string comments: type: array - items: &604 + items: &606 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -90701,7 +90839,7 @@ paths: type: string comments: type: array - items: *485 + items: *487 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -90990,7 +91128,7 @@ paths: headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91007,8 +91145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -91018,7 +91156,7 @@ paths: application/json: schema: type: array - items: &585 + items: &587 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -91084,8 +91222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91121,9 +91259,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *587 examples: - default: &586 + default: &588 value: id: 1 key: ssh-rsa AAA... @@ -91157,9 +91295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *355 - - *356 - - &587 + - *357 + - *358 + - &589 name: key_id description: The unique identifier of the key. in: path @@ -91171,9 +91309,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *587 examples: - default: *586 + default: *588 '404': *6 x-github: githubCloudOnly: false @@ -91191,9 +91329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *355 - - *356 - - *587 + - *357 + - *358 + - *589 responses: '204': description: Response @@ -91213,8 +91351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -91226,7 +91364,7 @@ paths: type: array items: *87 examples: - default: *569 + default: *571 headers: Link: *70 '404': *6 @@ -91247,8 +91385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91286,7 +91424,7 @@ paths: application/json: schema: *87 examples: - default: &588 + default: &590 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91318,8 +91456,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -91332,7 +91470,7 @@ paths: application/json: schema: *87 examples: - default: *588 + default: *590 '404': *6 x-github: githubCloudOnly: false @@ -91349,8 +91487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -91415,8 +91553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -91442,8 +91580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -91482,9 +91620,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *355 - - *356 - - *458 + - *357 + - *358 + - *460 responses: '200': description: Response @@ -91629,8 +91767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91695,8 +91833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91730,9 +91868,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *488 + schema: *490 examples: - default: *589 + default: *591 '204': description: Response when already merged '404': @@ -91757,8 +91895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *355 - - *356 + - *357 + - *358 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -91799,12 +91937,12 @@ paths: application/json: schema: type: array - items: &590 + items: &592 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 examples: default: value: @@ -91860,8 +91998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91901,9 +92039,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: &591 + default: &593 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -91962,9 +92100,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *355 - - *356 - - &592 + - *357 + - *358 + - &594 name: milestone_number description: The number that identifies the milestone. in: path @@ -91976,9 +92114,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: *591 + default: *593 '404': *6 x-github: githubCloudOnly: false @@ -91995,9 +92133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 requestBody: required: false content: @@ -92035,9 +92173,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: *591 + default: *593 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92053,9 +92191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 responses: '204': description: Response @@ -92076,9 +92214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 - *17 - *19 responses: @@ -92090,7 +92228,7 @@ paths: type: array items: *87 examples: - default: *569 + default: *571 headers: Link: *70 x-github: @@ -92109,12 +92247,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *355 - - *356 - - *593 - - *594 - - *95 + - *357 + - *358 - *595 + - *596 + - *95 + - *597 - *17 - *19 responses: @@ -92126,7 +92264,7 @@ paths: type: array items: *115 examples: - default: *596 + default: *598 headers: Link: *70 x-github: @@ -92150,8 +92288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -92209,14 +92347,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &597 + schema: &599 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -92341,7 +92479,7 @@ paths: - custom_404 - public examples: - default: &598 + default: &600 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -92382,8 +92520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92437,9 +92575,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *599 examples: - default: *598 + default: *600 '422': *15 '409': *54 x-github: @@ -92462,8 +92600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92562,8 +92700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -92589,8 +92727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -92600,7 +92738,7 @@ paths: application/json: schema: type: array - items: &599 + items: &601 title: Page Build description: Page Build type: object @@ -92694,8 +92832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response @@ -92740,16 +92878,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: &600 + default: &602 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -92797,8 +92935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *355 - - *356 + - *357 + - *358 - name: build_id in: path required: true @@ -92809,9 +92947,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: *600 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92831,8 +92969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92937,9 +93075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *355 - - *356 - - &601 + - *357 + - *358 + - &603 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -92997,9 +93135,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *355 - - *356 - - *601 + - *357 + - *358 + - *603 responses: '204': *61 '404': *6 @@ -93026,8 +93164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -93258,7 +93396,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -93285,8 +93423,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Private vulnerability reporting status @@ -93323,8 +93461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '422': *14 @@ -93345,8 +93483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '422': *14 @@ -93368,8 +93506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -93377,7 +93515,7 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: default: value: @@ -93408,8 +93546,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -93421,7 +93559,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *307 + items: *309 required: - properties examples: @@ -93471,8 +93609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *355 - - *356 + - *357 + - *358 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -93532,9 +93670,9 @@ paths: application/json: schema: type: array - items: *492 + items: *494 examples: - default: *602 + default: *604 headers: Link: *70 '304': *37 @@ -93566,8 +93704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -93632,7 +93770,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &608 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -93743,8 +93881,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true active_lock_reason: type: string @@ -93787,7 +93925,7 @@ paths: items: *4 requested_teams: type: array - items: *344 + items: *346 head: type: object properties: @@ -93825,14 +93963,14 @@ paths: _links: type: object properties: - comments: *294 - commits: *294 - statuses: *294 - html: *294 - issue: *294 - review_comments: *294 - review_comment: *294 - self: *294 + comments: *296 + commits: *296 + statuses: *296 + html: *296 + issue: *296 + review_comments: *296 + review_comment: *296 + self: *296 required: - comments - commits @@ -93843,7 +93981,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *603 + auto_merge: *605 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -93935,7 +94073,7 @@ paths: - merged_by - review_comments examples: - default: &607 + default: &609 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -94462,8 +94600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: sort in: query required: false @@ -94492,9 +94630,9 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: - default: &609 + default: &611 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94571,17 +94709,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: &605 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94656,8 +94794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -94680,9 +94818,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: *605 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94698,8 +94836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -94721,8 +94859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -94749,9 +94887,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -94772,8 +94910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -94806,16 +94944,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -94837,10 +94975,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - *559 + - *561 responses: '204': description: Response @@ -94883,9 +95021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *355 - - *356 - - &608 + - *357 + - *358 + - &610 name: pull_number description: The number that identifies the pull request. in: path @@ -94898,9 +95036,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '304': *37 '404': *6 '406': @@ -94935,9 +95073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -94979,9 +95117,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 '403': *29 x-github: @@ -95003,9 +95141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -95065,17 +95203,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -95105,9 +95243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -95128,9 +95266,9 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: - default: *609 + default: *611 headers: Link: *70 x-github: @@ -95163,9 +95301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -95270,7 +95408,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: example-for-a-multi-line-comment: value: @@ -95358,9 +95496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *104 requestBody: required: true @@ -95383,7 +95521,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: default: value: @@ -95469,9 +95607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -95481,9 +95619,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *610 + default: *612 headers: Link: *70 x-github: @@ -95513,9 +95651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -95525,7 +95663,7 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: default: value: @@ -95563,9 +95701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 responses: '204': description: Response if pull request has been merged @@ -95588,9 +95726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -95701,9 +95839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 responses: '200': description: Response @@ -95719,7 +95857,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 required: - users - teams @@ -95778,9 +95916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -95817,7 +95955,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -96353,9 +96491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -96389,7 +96527,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -96894,9 +97032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -96906,7 +97044,7 @@ paths: application/json: schema: type: array - items: &611 + items: &613 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -97057,9 +97195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -97145,9 +97283,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: &613 + default: &615 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97210,10 +97348,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - &612 + - *357 + - *358 + - *610 + - &614 name: review_id description: The unique identifier of the review. in: path @@ -97225,9 +97363,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: &614 + default: &616 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97286,10 +97424,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -97312,7 +97450,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: default: value: @@ -97374,18 +97512,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 responses: '200': description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: *613 + default: *615 '422': *7 '404': *6 x-github: @@ -97412,10 +97550,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 - *17 - *19 responses: @@ -97498,9 +97636,9 @@ paths: _links: type: object properties: - self: *294 - html: *294 - pull_request: *294 + self: *296 + html: *296 + pull_request: *296 required: - self - html @@ -97650,10 +97788,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -97681,7 +97819,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: default: value: @@ -97744,10 +97882,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -97782,9 +97920,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: *614 + default: *616 '404': *6 '422': *7 '403': *29 @@ -97806,9 +97944,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -97871,8 +98009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *355 - - *356 + - *357 + - *358 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -97885,9 +98023,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: - default: &616 + default: &618 value: type: file encoding: base64 @@ -97929,8 +98067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *355 - - *356 + - *357 + - *358 - name: dir description: The alternate path to look for a README file in: path @@ -97950,9 +98088,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: - default: *616 + default: *618 '404': *6 '422': *15 x-github: @@ -97974,8 +98112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -97985,7 +98123,7 @@ paths: application/json: schema: type: array - items: *617 + items: *619 examples: default: value: @@ -98079,8 +98217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -98156,9 +98294,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: &621 + default: &623 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -98263,9 +98401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *355 - - *356 - - &619 + - *357 + - *358 + - &621 name: asset_id description: The unique identifier of the asset. in: path @@ -98277,9 +98415,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: &620 + default: &622 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 @@ -98314,7 +98452,7 @@ paths: type: User site_admin: false '404': *6 - '302': *505 + '302': *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98330,9 +98468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *355 - - *356 - - *619 + - *357 + - *358 + - *621 requestBody: required: false content: @@ -98360,9 +98498,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: *620 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98378,9 +98516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *355 - - *356 - - *619 + - *357 + - *358 + - *621 responses: '204': description: Response @@ -98405,8 +98543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -98491,16 +98629,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -98518,8 +98656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *355 - - *356 + - *357 + - *358 - name: tag description: tag parameter in: path @@ -98532,9 +98670,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -98556,9 +98694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *355 - - *356 - - &622 + - *357 + - *358 + - &624 name: release_id description: The unique identifier of the release. in: path @@ -98572,9 +98710,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: *617 + schema: *619 examples: - default: *621 + default: *623 '401': description: Unauthorized x-github: @@ -98592,9 +98730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 requestBody: required: false content: @@ -98658,9 +98796,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': description: Not Found if the discussion category name is invalid content: @@ -98681,9 +98819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 responses: '204': description: Response @@ -98704,9 +98842,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - *17 - *19 responses: @@ -98716,7 +98854,7 @@ paths: application/json: schema: type: array - items: *618 + items: *620 examples: default: value: @@ -98797,9 +98935,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: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - name: name in: query required: true @@ -98825,7 +98963,7 @@ paths: description: Response for successful upload content: application/json: - schema: *618 + schema: *620 examples: response-for-successful-upload: value: @@ -98880,9 +99018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - 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. @@ -98906,9 +99044,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -98929,9 +99067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 requestBody: required: true content: @@ -98961,16 +99099,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -98992,10 +99130,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *355 - - *356 - - *622 - - *559 + - *357 + - *358 + - *624 + - *561 responses: '204': description: Response @@ -99019,9 +99157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 - *17 - *19 responses: @@ -99037,8 +99175,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *316 - - &623 + - *318 + - &625 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -99057,69 +99195,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *317 - - *623 - - allOf: - - *318 - - *623 - allOf: - *319 - - *623 - - allOf: - - *624 - - *623 + - *625 - allOf: - *320 - - *623 + - *625 - allOf: - *321 - - *623 + - *625 + - allOf: + - *626 + - *625 - allOf: - *322 - - *623 + - *625 - allOf: - *323 - - *623 + - *625 - allOf: - *324 - - *623 + - *625 - allOf: - *325 - - *623 + - *625 - allOf: - *326 - - *623 + - *625 - allOf: - *327 - - *623 + - *625 - allOf: - *328 - - *623 + - *625 - allOf: - *329 - - *623 + - *625 - allOf: - - *334 - - *623 + - *330 + - *625 - allOf: - - *335 - - *623 + - *331 + - *625 - allOf: - *336 - - *623 + - *625 - allOf: - - *330 - - *623 + - *337 + - *625 - allOf: - - *331 - - *623 + - *338 + - *625 - allOf: - *332 - - *623 + - *625 - allOf: - *333 - - *623 + - *625 + - allOf: + - *334 + - *625 + - allOf: + - *335 + - *625 examples: default: value: @@ -99158,8 +99296,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - name: includes_parents @@ -99170,7 +99308,7 @@ paths: schema: type: boolean default: true - - *625 + - *627 responses: '200': description: Response @@ -99178,7 +99316,7 @@ paths: application/json: schema: type: array - items: *337 + items: *339 examples: default: value: @@ -99225,8 +99363,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 requestBody: description: Request body required: true @@ -99246,16 +99384,16 @@ paths: - tag - push default: branch - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *311 + items: *316 + conditions: *313 rules: type: array description: An array of rules within the ruleset. - items: *626 + items: *628 required: - name - enforcement @@ -99286,9 +99424,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: &637 + default: &639 value: id: 42 name: super cool ruleset @@ -99336,13 +99474,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *355 - - *356 - - *627 - - *628 + - *357 + - *358 - *629 - *630 - *631 + - *632 + - *633 - *17 - *19 responses: @@ -99350,9 +99488,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *634 examples: - default: *633 + default: *635 '404': *6 '500': *55 x-github: @@ -99373,17 +99511,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *355 - - *356 - - *634 + - *357 + - *358 + - *636 responses: '200': description: Response content: application/json: - schema: *635 + schema: *637 examples: - default: *636 + default: *638 '404': *6 '500': *55 x-github: @@ -99411,8 +99549,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99432,9 +99570,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *637 + default: *639 '404': *6 '500': *55 put: @@ -99452,8 +99590,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99478,16 +99616,16 @@ paths: - branch - tag - push - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *311 + items: *316 + conditions: *313 rules: description: An array of rules within the ruleset. type: array - items: *626 + items: *628 examples: default: value: @@ -99515,9 +99653,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *637 + default: *639 '404': *6 '422': *15 '500': *55 @@ -99536,8 +99674,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99560,8 +99698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - name: ruleset_id @@ -99577,9 +99715,9 @@ paths: application/json: schema: type: array - items: *340 + items: *342 examples: - default: *638 + default: *640 '404': *6 '500': *55 x-github: @@ -99598,8 +99736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99617,7 +99755,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -99672,26 +99810,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *355 - - *356 - - *640 - - *641 + - *357 + - *358 - *642 - *643 - *644 - *645 - *646 - *647 + - *648 + - *649 - *62 - *19 - *17 - - *648 - - *649 - *650 - *651 - *652 - *653 - *654 + - *655 + - *656 responses: '200': description: Response @@ -99699,11 +99837,11 @@ paths: application/json: schema: type: array - items: &658 + items: &660 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -99711,15 +99849,15 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *657 + resolution: *658 resolved_at: type: string format: date-time @@ -99825,7 +99963,7 @@ paths: pull request. ' - oneOf: *657 + oneOf: *659 nullable: true has_more_locations: type: boolean @@ -99989,16 +100127,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 - - *653 + - *357 + - *358 + - *454 + - *655 responses: '200': description: Response content: application/json: - schema: *658 + schema: *660 examples: default: value: @@ -100052,9 +100190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: true content: @@ -100062,8 +100200,8 @@ paths: schema: type: object properties: - state: *655 - resolution: *656 + state: *657 + resolution: *658 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100107,7 +100245,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *660 examples: default: value: @@ -100206,9 +100344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 - *19 - *17 responses: @@ -100219,7 +100357,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &816 + items: &817 type: object properties: type: @@ -100245,8 +100383,6 @@ paths: example: commit details: oneOf: - - *659 - - *660 - *661 - *662 - *663 @@ -100258,6 +100394,8 @@ paths: - *669 - *670 - *671 + - *672 + - *673 examples: default: value: @@ -100343,8 +100481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -100352,14 +100490,14 @@ paths: schema: type: object properties: - reason: &673 + reason: &675 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *672 + placeholder_id: *674 required: - reason - placeholder_id @@ -100376,7 +100514,7 @@ paths: schema: type: object properties: - reason: *673 + reason: *675 expire_at: type: string format: date-time @@ -100422,8 +100560,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: - - *355 - - *356 + - *357 + - *358 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -100438,7 +100576,7 @@ paths: properties: incremental_scans: type: array - items: &674 + items: &676 description: Information on a single scan performed by secret scanning on the repository type: object @@ -100469,15 +100607,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *674 + items: *676 backfill_scans: type: array - items: *674 + items: *676 custom_pattern_backfill_scans: type: array items: allOf: - - *674 + - *676 - type: object properties: pattern_name: @@ -100490,7 +100628,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *674 + items: *676 examples: default: value: @@ -100555,8 +100693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *355 - - *356 + - *357 + - *358 - *62 - name: sort description: The property to sort the results by. @@ -100600,9 +100738,9 @@ paths: application/json: schema: type: array - items: *675 + items: *677 examples: - default: *676 + default: *678 '400': *14 '404': *6 x-github: @@ -100625,8 +100763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -100699,7 +100837,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 required: - login - type @@ -100786,9 +100924,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: &678 + default: &680 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101021,8 +101159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -101126,7 +101264,7 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: default: value: @@ -101273,17 +101411,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '200': description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *678 + default: *680 '403': *29 '404': *6 x-github: @@ -101307,9 +101445,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 requestBody: required: true content: @@ -101382,7 +101520,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 required: - login - type @@ -101468,17 +101606,17 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *678 - add_credit: *678 + default: *680 + add_credit: *680 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *130 + schema: *132 examples: invalid_state_transition: value: @@ -101509,9 +101647,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: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '202': *39 '400': *14 @@ -101538,17 +101676,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '202': description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *14 '422': *15 '403': *29 @@ -101574,8 +101712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -101674,8 +101812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -101684,7 +101822,7 @@ paths: application/json: schema: type: array - items: &679 + items: &681 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -101717,8 +101855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -101794,8 +101932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -101891,8 +102029,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -102046,8 +102184,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -102057,7 +102195,7 @@ paths: application/json: schema: type: array - items: *679 + items: *681 examples: default: value: @@ -102090,8 +102228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *355 - - *356 + - *357 + - *358 - name: sha in: path required: true @@ -102145,7 +102283,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *682 examples: default: value: @@ -102199,8 +102337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -102232,14 +102370,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &681 + schema: &683 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -102307,8 +102445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -102334,7 +102472,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: default: value: @@ -102361,8 +102499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -102382,8 +102520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -102462,8 +102600,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *355 - - *356 + - *357 + - *358 - name: ref in: path required: true @@ -102499,8 +102637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -102510,9 +102648,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 headers: Link: *70 '404': *6 @@ -102532,8 +102670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 responses: @@ -102541,7 +102679,7 @@ paths: description: Response content: application/json: - schema: &682 + schema: &684 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -102553,7 +102691,7 @@ paths: required: - names examples: - default: &683 + default: &685 value: names: - octocat @@ -102576,8 +102714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -102608,9 +102746,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *684 examples: - default: *683 + default: *685 '404': *6 '422': *7 x-github: @@ -102631,9 +102769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *355 - - *356 - - &684 + - *357 + - *358 + - &686 name: per description: The time frame to display results for. in: query @@ -102662,7 +102800,7 @@ paths: example: 128 clones: type: array - items: &685 + items: &687 title: Traffic type: object properties: @@ -102749,8 +102887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -102840,8 +102978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -102901,9 +103039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *355 - - *356 - - *684 + - *357 + - *358 + - *686 responses: '200': description: Response @@ -102922,7 +103060,7 @@ paths: example: 3782 views: type: array - items: *685 + items: *687 required: - uniques - count @@ -102999,8 +103137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -103036,7 +103174,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *163 examples: default: value: @@ -103274,8 +103412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -103298,8 +103436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -103321,8 +103459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -103348,8 +103486,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *355 - - *356 + - *357 + - *358 - name: ref in: path required: true @@ -103441,9 +103579,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -103484,7 +103622,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -103676,7 +103814,7 @@ paths: html_url: type: string format: uri - repository: *161 + repository: *163 score: type: number file_size: @@ -103694,7 +103832,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &686 + text_matches: &688 title: Search Result Text Matches type: array items: @@ -103856,7 +103994,7 @@ paths: enum: - author-date - committer-date - - &687 + - &689 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 @@ -103927,7 +104065,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true comment_count: type: integer @@ -103947,7 +104085,7 @@ paths: url: type: string format: uri - verification: *541 + verification: *543 required: - author - committer @@ -103966,7 +104104,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true parents: type: array @@ -103979,12 +104117,12 @@ paths: type: string sha: type: string - repository: *161 + repository: *163 score: type: number node_id: type: string - text_matches: *686 + text_matches: *688 required: - sha - node_id @@ -104176,7 +104314,7 @@ paths: - interactions - created - updated - - *687 + - *689 - *17 - *19 - name: advanced_search @@ -104290,11 +104428,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: type: string state_reason: @@ -104311,8 +104449,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true comments: type: integer @@ -104326,7 +104464,7 @@ paths: type: string format: date-time nullable: true - text_matches: *686 + text_matches: *688 pull_request: type: object properties: @@ -104370,7 +104508,7 @@ paths: timeline_url: type: string format: uri - type: *255 + type: *257 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -104608,7 +104746,7 @@ paths: enum: - created - updated - - *687 + - *689 - *17 - *19 responses: @@ -104652,7 +104790,7 @@ paths: nullable: true score: type: number - text_matches: *686 + text_matches: *688 required: - id - node_id @@ -104737,7 +104875,7 @@ paths: - forks - help-wanted-issues - updated - - *687 + - *689 - *17 - *19 responses: @@ -104985,7 +105123,7 @@ paths: - admin - pull - push - text_matches: *686 + text_matches: *688 temp_clone_token: type: string allow_merge_commit: @@ -105285,7 +105423,7 @@ paths: type: string format: uri nullable: true - text_matches: *686 + text_matches: *688 related: type: array nullable: true @@ -105476,7 +105614,7 @@ paths: - followers - repositories - joined - - *687 + - *689 - *17 - *19 responses: @@ -105580,7 +105718,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *686 + text_matches: *688 blog: type: string nullable: true @@ -105659,7 +105797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &690 + - &692 name: team_id description: The unique identifier of the team. in: path @@ -105671,9 +105809,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 x-github: githubCloudOnly: false @@ -105700,7 +105838,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *690 + - *692 requestBody: required: true content: @@ -105763,16 +105901,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '201': description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 '422': *15 '403': *29 @@ -105800,7 +105938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *690 + - *692 responses: '204': description: Response @@ -105829,7 +105967,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -105839,9 +105977,9 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 x-github: @@ -105867,7 +106005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *690 + - *692 - name: role description: Filters members returned by their role in the team. in: query @@ -105918,7 +106056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105955,7 +106093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105995,7 +106133,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -106032,16 +106170,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 responses: '200': description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-user-is-a-team-maintainer: *691 + response-if-user-is-a-team-maintainer: *693 '404': *6 x-github: githubCloudOnly: false @@ -106074,7 +106212,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 requestBody: required: false @@ -106100,9 +106238,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: *692 + response-if-users-membership-with-team-is-now-pending: *694 '403': description: Forbidden if team synchronization is set up '422': @@ -106136,7 +106274,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -106164,7 +106302,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -106174,9 +106312,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 '404': *6 @@ -106206,15 +106344,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *693 + schema: *695 examples: alternative-response-with-extra-repository-information: value: @@ -106365,9 +106503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 requestBody: required: false content: @@ -106417,9 +106555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 responses: '204': description: Response @@ -106444,7 +106582,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -106454,9 +106592,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: *694 + response-if-child-teams-exist: *696 headers: Link: *70 '404': *6 @@ -106489,7 +106627,7 @@ paths: application/json: schema: oneOf: - - &696 + - &698 title: Private User description: Private User type: object @@ -106692,7 +106830,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *695 + - *697 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -106845,7 +106983,7 @@ paths: description: Response content: application/json: - schema: *696 + schema: *698 examples: default: value: @@ -107048,9 +107186,9 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '304': *37 '500': *55 '401': *25 @@ -107189,17 +107327,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -107243,7 +107381,7 @@ paths: type: integer secrets: type: array - items: &697 + items: &699 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -107283,7 +107421,7 @@ paths: - visibility - selected_repositories_url examples: - default: *478 + default: *480 headers: Link: *70 x-github: @@ -107353,13 +107491,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *697 + schema: *699 examples: default: value: @@ -107389,7 +107527,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 requestBody: required: true content: @@ -107434,7 +107572,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -107462,7 +107600,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '204': description: Response @@ -107487,7 +107625,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 responses: '200': description: Response @@ -107503,9 +107641,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *209 + default: *211 '401': *25 '403': *29 '404': *6 @@ -107530,7 +107668,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 requestBody: required: true content: @@ -107584,7 +107722,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -107617,7 +107755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -107649,15 +107787,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '304': *37 '500': *55 '401': *25 @@ -107683,7 +107821,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 requestBody: required: false content: @@ -107713,9 +107851,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -107737,7 +107875,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '202': *39 '304': *37 @@ -107766,13 +107904,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '202': description: Response content: application/json: - schema: &698 + schema: &700 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107813,7 +107951,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &699 + default: &701 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -107845,7 +107983,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *262 + - *264 - name: export_id in: path required: true @@ -107858,9 +107996,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *700 examples: - default: *699 + default: *701 '404': *6 x-github: githubCloudOnly: false @@ -107881,7 +108019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *262 + - *264 responses: '200': description: Response @@ -107897,9 +108035,9 @@ paths: type: integer machines: type: array - items: *700 + items: *702 examples: - default: *701 + default: *703 '304': *37 '500': *55 '401': *25 @@ -107928,7 +108066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *262 + - *264 requestBody: required: true content: @@ -107978,13 +108116,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *358 + repository: *360 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *476 - required: *477 + properties: *478 + required: *479 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -108758,15 +108896,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '304': *37 '500': *55 '400': *14 @@ -108798,15 +108936,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '500': *55 '401': *25 '403': *29 @@ -108836,9 +108974,9 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: &712 + default: &714 value: - id: 197 name: hello_docker @@ -108939,7 +109077,7 @@ paths: application/json: schema: type: array - items: &702 + items: &704 title: Email description: Email type: object @@ -109004,9 +109142,9 @@ paths: application/json: schema: type: array - items: *702 + items: *704 examples: - default: &714 + default: &716 value: - email: octocat@github.com verified: true @@ -109081,7 +109219,7 @@ paths: application/json: schema: type: array - items: *702 + items: *704 examples: default: value: @@ -109337,7 +109475,7 @@ paths: application/json: schema: type: array - items: &703 + items: &705 title: GPG Key description: A unique encryption key type: object @@ -109468,7 +109606,7 @@ paths: - subkeys - revoked examples: - default: &731 + default: &733 value: - id: 3 name: Octocat's GPG Key @@ -109553,9 +109691,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *705 examples: - default: &704 + default: &706 value: id: 3 name: Octocat's GPG Key @@ -109612,7 +109750,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &705 + - &707 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109624,9 +109762,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *705 examples: - default: *704 + default: *706 '404': *6 '304': *37 '403': *29 @@ -109649,7 +109787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *705 + - *707 responses: '204': description: Response @@ -109851,7 +109989,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *153 + default: *155 headers: Link: *70 '404': *6 @@ -109877,7 +110015,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -109903,7 +110041,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -109937,12 +110075,12 @@ paths: application/json: schema: anyOf: - - *247 + - *249 - type: object properties: {} additionalProperties: false examples: - default: *248 + default: *250 '204': description: Response when there are no restrictions x-github: @@ -109966,7 +110104,7 @@ paths: required: true content: application/json: - schema: *552 + schema: *554 examples: default: value: @@ -109977,7 +110115,7 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: default: value: @@ -110058,7 +110196,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -110083,7 +110221,7 @@ paths: type: array items: *88 examples: - default: *259 + default: *261 headers: Link: *70 '404': *6 @@ -110116,7 +110254,7 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: Key description: Key type: object @@ -110217,9 +110355,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: &707 + default: &709 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110252,15 +110390,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *587 + - *589 responses: '200': description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: *707 + default: *709 '404': *6 '304': *37 '403': *29 @@ -110283,7 +110421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *587 + - *589 responses: '204': description: Response @@ -110316,7 +110454,7 @@ paths: application/json: schema: type: array - items: &708 + items: &710 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -110384,7 +110522,7 @@ paths: - account - plan examples: - default: &709 + default: &711 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -110446,9 +110584,9 @@ paths: application/json: schema: type: array - items: *708 + items: *710 examples: - default: *709 + default: *711 headers: Link: *70 '304': *37 @@ -110488,7 +110626,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -110602,7 +110740,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -110689,7 +110827,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -110761,7 +110899,7 @@ paths: application/json: schema: type: array - items: *266 + items: *268 examples: default: value: @@ -111014,7 +111152,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -111194,7 +111332,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *267 + - *269 - name: exclude in: query required: false @@ -111207,7 +111345,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -111401,7 +111539,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *267 + - *269 responses: '302': description: Response @@ -111427,7 +111565,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *267 + - *269 responses: '204': description: Response @@ -111456,8 +111594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *267 - - *710 + - *269 + - *712 responses: '204': description: Response @@ -111481,7 +111619,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *267 + - *269 - *17 - *19 responses: @@ -111491,9 +111629,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 '404': *6 @@ -111572,7 +111710,7 @@ paths: - docker - nuget - container - - *711 + - *713 - *19 - *17 responses: @@ -111582,10 +111720,10 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *712 - '400': *713 + default: *714 + '400': *715 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111605,16 +111743,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 responses: '200': description: Response content: application/json: - schema: *273 + schema: *275 examples: - default: &732 + default: &734 value: id: 40201 name: octo-name @@ -111727,8 +111865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 responses: '204': description: Response @@ -111758,8 +111896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 - name: token description: package token schema: @@ -111791,8 +111929,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: - - *275 - - *276 + - *277 + - *278 - *19 - *17 - name: state @@ -111812,7 +111950,7 @@ paths: application/json: schema: type: array - items: *277 + items: *279 examples: default: value: @@ -111861,15 +111999,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -111905,9 +112043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '204': description: Response @@ -111937,9 +112075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '204': description: Response @@ -111976,9 +112114,9 @@ paths: application/json: schema: type: array - items: *702 + items: *704 examples: - default: *714 + default: *716 headers: Link: *70 '304': *37 @@ -112091,7 +112229,7 @@ paths: type: array items: *82 examples: - default: &721 + default: &723 summary: Default response value: - id: 1296269 @@ -112395,9 +112533,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -112435,9 +112573,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: *715 + default: *717 headers: Link: *70 '304': *37 @@ -112460,7 +112598,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *251 + - *253 responses: '204': description: Response @@ -112483,7 +112621,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *251 + - *253 responses: '204': description: Response @@ -112516,7 +112654,7 @@ paths: application/json: schema: type: array - items: &716 + items: &718 title: Social account description: Social media account type: object @@ -112531,7 +112669,7 @@ paths: - provider - url examples: - default: &717 + default: &719 value: - provider: twitter url: https://twitter.com/github @@ -112593,9 +112731,9 @@ paths: application/json: schema: type: array - items: *716 + items: *718 examples: - default: *717 + default: *719 '422': *15 '304': *37 '404': *6 @@ -112682,7 +112820,7 @@ paths: application/json: schema: type: array - items: &718 + items: &720 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112702,7 +112840,7 @@ paths: - title - created_at examples: - default: &750 + default: &751 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112766,9 +112904,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *720 examples: - default: &719 + default: &721 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112798,7 +112936,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: - - &720 + - &722 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112810,9 +112948,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *720 examples: - default: *719 + default: *721 '404': *6 '304': *37 '403': *29 @@ -112835,7 +112973,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: - - *720 + - *722 responses: '204': description: Response @@ -112864,7 +113002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &751 + - &752 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 @@ -112889,11 +113027,11 @@ paths: type: array items: *82 examples: - default-response: *721 + default-response: *723 application/vnd.github.v3.star+json: schema: type: array - items: &752 + items: &753 title: Starred Repository description: Starred Repository type: object @@ -113049,8 +113187,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: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response if this repository is starred by you @@ -113078,8 +113216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -113103,8 +113241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -113137,9 +113275,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 '304': *37 @@ -113176,7 +113314,7 @@ paths: application/json: schema: type: array - items: *351 + items: *353 examples: default: value: @@ -113262,10 +113400,10 @@ paths: application/json: schema: oneOf: - - *696 - - *695 + - *698 + - *697 examples: - default-response: &725 + default-response: &727 summary: Default response value: login: octocat @@ -113300,7 +113438,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &726 + response-with-git-hub-plan-information: &728 summary: Response with GitHub plan information value: login: octocat @@ -113357,14 +113495,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &723 + - &725 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *291 + - *293 requestBody: required: true description: Details of the draft item to create in the project. @@ -113398,9 +113536,9 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: - draft_issue: *298 + draft_issue: *300 '304': *37 '403': *29 '401': *25 @@ -113423,7 +113561,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *722 + - *724 - *17 responses: '200': @@ -113458,8 +113596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *723 - - *291 + - *725 + - *293 requestBody: required: true content: @@ -113530,17 +113668,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *724 + schema: *726 examples: table_view: summary: Response for creating a table view - value: *302 + value: *304 board_view: summary: Response for creating a board view with filter - value: *302 + value: *304 roadmap_view: summary: Response for creating a roadmap view - value: *302 + value: *304 '304': *37 '403': *29 '401': *25 @@ -113582,11 +113720,11 @@ paths: application/json: schema: oneOf: - - *696 - - *695 + - *698 + - *697 examples: - default-response: *725 - response-with-git-hub-plan-information: *726 + default-response: *727 + response-with-git-hub-plan-information: *728 '404': *6 x-github: githubCloudOnly: false @@ -113636,8 +113774,8 @@ paths: required: - subject_digests examples: - default: *727 - withPredicateType: *728 + default: *729 + withPredicateType: *730 responses: '200': description: Response @@ -113690,7 +113828,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *729 + default: *731 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113895,12 +114033,12 @@ paths: initiator: type: string examples: - default: *415 + default: *417 '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -113962,7 +114100,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *202 + items: *204 examples: default: summary: Example response for listing user copilot spaces @@ -114174,9 +114312,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &730 + default: &732 summary: Example response for a user copilot space value: id: 42 @@ -114275,9 +114413,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *730 + default: *732 '403': *29 '404': *6 x-github: @@ -114398,9 +114536,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *730 + default: *732 '403': *29 '404': *6 '422': *15 @@ -114477,7 +114615,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *204 + items: *206 examples: default: value: @@ -114620,7 +114758,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -114731,7 +114869,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -114861,7 +114999,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *205 + items: *207 examples: default: value: @@ -114953,7 +115091,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -114969,7 +115107,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -115022,7 +115160,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -115089,7 +115227,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -115166,9 +115304,9 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *712 + default: *714 '403': *29 '401': *25 x-github: @@ -115552,9 +115690,9 @@ paths: application/json: schema: type: array - items: *703 + items: *705 examples: - default: *731 + default: *733 headers: Link: *70 x-github: @@ -115658,7 +115796,7 @@ paths: application/json: schema: *22 examples: - default: *551 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115782,7 +115920,7 @@ paths: - docker - nuget - container - - *711 + - *713 - *74 - *19 - *17 @@ -115793,12 +115931,12 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *712 + default: *714 '403': *29 '401': *25 - '400': *713 + '400': *715 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115818,17 +115956,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 responses: '200': description: Response content: application/json: - schema: *273 + schema: *275 examples: - default: *732 + default: *734 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115849,8 +115987,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 responses: '204': @@ -115883,8 +116021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 - name: token description: package token @@ -115917,8 +116055,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: - - *275 - - *276 + - *277 + - *278 - *74 responses: '200': @@ -115927,7 +116065,7 @@ paths: application/json: schema: type: array - items: *277 + items: *279 examples: default: value: @@ -115985,16 +116123,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 - *74 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -116029,10 +116167,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *275 - - *276 - - *74 + - *277 - *278 + - *74 + - *280 responses: '204': description: Response @@ -116064,10 +116202,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *275 - - *276 - - *74 + - *277 - *278 + - *74 + - *280 responses: '204': description: Response @@ -116108,9 +116246,9 @@ paths: application/json: schema: type: array - items: *289 + items: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -116132,16 +116270,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *291 + - *293 - *74 responses: '200': description: Response content: application/json: - schema: *289 + schema: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -116163,7 +116301,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *291 + - *293 - *74 - *17 - *47 @@ -116175,9 +116313,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *733 + default: *735 headers: Link: *70 '304': *37 @@ -116199,7 +116337,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *74 - - *291 + - *293 requestBody: required: true content: @@ -116237,7 +116375,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *734 + items: *736 required: - name - data_type @@ -116253,7 +116391,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *735 + iteration_configuration: *737 required: - name - data_type @@ -116275,20 +116413,20 @@ paths: value: name: Due date data_type: date - single_select_field: *736 - iteration_field: *737 + single_select_field: *738 + iteration_field: *739 responses: '201': description: Response content: application/json: - schema: *295 + schema: *297 examples: - text_field: *738 - number_field: *739 - date_field: *740 - single_select_field: *741 - iteration_field: *742 + text_field: *740 + number_field: *741 + date_field: *742 + single_select_field: *743 + iteration_field: *744 '304': *37 '403': *29 '401': *25 @@ -116309,17 +116447,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *291 - - *743 + - *293 + - *745 - *74 responses: '200': description: Response content: application/json: - schema: *295 + schema: *297 examples: - default: *744 + default: *746 headers: Link: *70 '304': *37 @@ -116342,7 +116480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *291 + - *293 - *74 - *47 - *48 @@ -116375,9 +116513,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -116399,7 +116537,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *74 - - *291 + - *293 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -116469,22 +116607,22 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *298 + value: *300 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *298 + value: *300 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *298 + value: *300 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *298 + value: *300 '304': *37 '403': *29 '401': *25 @@ -116504,9 +116642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *291 + - *293 - *74 - - *301 + - *303 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -116526,9 +116664,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -116549,9 +116687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *291 + - *293 - *74 - - *301 + - *303 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -116621,13 +116759,13 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - text_field: *300 - number_field: *300 - date_field: *300 - single_select_field: *300 - iteration_field: *300 + text_field: *302 + number_field: *302 + date_field: *302 + single_select_field: *302 + iteration_field: *302 '401': *25 '403': *29 '404': *6 @@ -116647,9 +116785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *291 + - *293 - *74 - - *301 + - *303 responses: '204': description: Response @@ -116671,9 +116809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *291 + - *293 - *74 - - *745 + - *747 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -116699,9 +116837,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -116920,9 +117058,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -116930,6 +117068,139 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - *74 + - *124 + - *125 + - *126 + - *128 + - *129 + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -116946,10 +117217,10 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *746 - - *127 + - *126 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -117079,8 +117350,8 @@ paths: parameters: - *74 - *124 - - *747 - - *125 + - *748 + - *126 responses: '200': description: Response when getting a billing usage report @@ -117176,11 +117447,11 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *748 - - *127 + - *126 - *749 + - *129 + - *750 responses: '200': description: Response when getting a billing usage summary @@ -117314,9 +117585,9 @@ paths: application/json: schema: type: array - items: *716 + items: *718 examples: - default: *717 + default: *719 headers: Link: *70 x-github: @@ -117346,9 +117617,9 @@ paths: application/json: schema: type: array - items: *718 + items: *720 examples: - default: *750 + default: *751 headers: Link: *70 x-github: @@ -117373,7 +117644,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *751 + - *752 - *62 - *17 - *19 @@ -117385,11 +117656,11 @@ paths: schema: anyOf: - type: array - items: *752 + items: *753 - type: array items: *82 examples: - default-response: *721 + default-response: *723 headers: Link: *70 x-github: @@ -117418,9 +117689,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *279 + default: *281 headers: Link: *70 x-github: @@ -117548,7 +117819,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &753 + enterprise: &754 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117606,7 +117877,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &754 + installation: &755 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117625,7 +117896,7 @@ x-webhooks: required: - id - node_id - organization: &755 + organization: &756 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117685,13 +117956,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &756 + repository: &757 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &788 + properties: &789 id: description: Unique identifier of the repository example: 42 @@ -118386,7 +118657,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &789 + required: &790 - archive_url - assignees_url - blobs_url @@ -118537,10 +118808,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -118616,11 +118887,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: &757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: &758 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) @@ -118843,11 +119114,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: *758 sender: *4 required: - action @@ -119030,11 +119301,11 @@ x-webhooks: - everyone required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: *758 sender: *4 required: - action @@ -119118,7 +119389,7 @@ x-webhooks: type: string enum: - completed - check_run: &759 + check_run: &760 title: CheckRun description: A check performed on the code of a given code change type: object @@ -119172,7 +119443,7 @@ x-webhooks: pull_requests: type: array items: *93 - repository: *161 + repository: *163 status: example: completed type: string @@ -119209,7 +119480,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *758 + deployment: *759 details_url: example: https://example.com type: string @@ -119294,10 +119565,10 @@ x-webhooks: - output - app - pull_requests - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -119688,11 +119959,11 @@ x-webhooks: type: string enum: - created - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -120086,11 +120357,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 requested_action: description: The action requested by the user. type: object @@ -120493,11 +120764,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -121467,10 +121738,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -122164,10 +122435,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -122855,10 +123126,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -123024,7 +123295,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -123169,20 +123440,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &760 + commit_oid: &761 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: *753 - installation: *754 - organization: *755 - ref: &761 + enterprise: *754 + installation: *755 + organization: *756 + ref: &762 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: *756 + repository: *757 sender: *4 required: - action @@ -123347,7 +123618,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -123577,12 +123848,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -123677,7 +123948,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -123848,12 +124119,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -124019,7 +124290,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124185,12 +124456,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -124289,7 +124560,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124464,16 +124735,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *756 + repository: *757 sender: *4 required: - action @@ -124570,7 +124841,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124710,12 +124981,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -124881,7 +125152,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -125026,10 +125297,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -125284,10 +125555,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -125367,18 +125638,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *755 - pusher_type: &762 + organization: *756 + pusher_type: &763 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &763 + ref: &764 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -125388,7 +125659,7 @@ x-webhooks: enum: - tag - branch - repository: *756 + repository: *757 sender: *4 required: - ref @@ -125470,10 +125741,10 @@ x-webhooks: type: string enum: - created - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125558,9 +125829,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125637,10 +125908,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125717,10 +125988,10 @@ x-webhooks: type: string enum: - updated - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125797,19 +126068,19 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - repository: *756 - organization: *755 + enterprise: *754 + installation: *755 + repository: *757 + organization: *756 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *307 + items: *309 old_property_values: type: array description: The old custom property values for the repository. - items: *307 + items: *309 required: - action - repository @@ -125885,18 +126156,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - pusher_type: *762 - ref: *763 + enterprise: *754 + installation: *755 + organization: *756 + pusher_type: *763 + ref: *764 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *756 + repository: *757 sender: *4 required: - ref @@ -125976,11 +126247,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126060,11 +126331,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126145,11 +126416,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126230,11 +126501,11 @@ x-webhooks: type: string enum: - created - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126313,11 +126584,11 @@ x-webhooks: type: string enum: - dismissed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126396,11 +126667,11 @@ x-webhooks: type: string enum: - fixed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126480,11 +126751,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126563,11 +126834,11 @@ x-webhooks: type: string enum: - reopened - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126644,9 +126915,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - key: &764 + enterprise: *754 + installation: *755 + key: &765 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126682,8 +126953,8 @@ x-webhooks: - verified - created_at - read_only - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -126760,11 +127031,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - key: *764 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + key: *765 + organization: *756 + repository: *757 sender: *4 required: - action @@ -127320,12 +127591,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: &770 + workflow: &771 title: Workflow type: object nullable: true @@ -128066,15 +128337,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *765 - required: *766 + properties: *766 + required: *767 nullable: true pull_requests: type: array - items: *606 - repository: *756 - organization: *755 - installation: *754 + items: *608 + repository: *757 + organization: *756 + installation: *755 sender: *4 responses: '200': @@ -128145,7 +128416,7 @@ x-webhooks: type: string enum: - approved - approver: &767 + approver: &768 type: object properties: avatar_url: @@ -128188,11 +128459,11 @@ x-webhooks: type: string comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: &768 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + reviewers: &769 type: array items: type: object @@ -128271,7 +128542,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &769 + workflow_job_run: &770 type: object properties: conclusion: @@ -129002,18 +129273,18 @@ x-webhooks: type: string enum: - rejected - approver: *767 + approver: *768 comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: *768 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + reviewers: *769 sender: *4 since: type: string - workflow_job_run: *769 + workflow_job_run: *770 workflow_job_runs: type: array items: @@ -129717,13 +129988,13 @@ x-webhooks: type: string enum: - requested - enterprise: *753 + enterprise: *754 environment: type: string - installation: *754 - organization: *755 - repository: *756 - requestor: &775 + installation: *755 + organization: *756 + repository: *757 + requestor: &776 title: User type: object nullable: true @@ -131612,12 +131883,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Deployment Workflow Run type: object @@ -132297,7 +132568,7 @@ x-webhooks: type: string enum: - answered - answer: &773 + answer: &774 type: object properties: author_association: @@ -132454,11 +132725,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132585,11 +132856,11 @@ x-webhooks: - from required: - category - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132672,11 +132943,11 @@ x-webhooks: type: string enum: - closed - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132758,7 +133029,7 @@ x-webhooks: type: string enum: - created - comment: &772 + comment: &773 type: object properties: author_association: @@ -132915,11 +133186,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133002,12 +133273,12 @@ x-webhooks: type: string enum: - deleted - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *773 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133102,12 +133373,12 @@ x-webhooks: - from required: - body - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *773 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133191,11 +133462,11 @@ x-webhooks: type: string enum: - created - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133277,11 +133548,11 @@ x-webhooks: type: string enum: - deleted - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133381,11 +133652,11 @@ x-webhooks: type: string required: - from - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133467,10 +133738,10 @@ x-webhooks: type: string enum: - labeled - discussion: *771 - enterprise: *753 - installation: *754 - label: &774 + discussion: *772 + enterprise: *754 + installation: *755 + label: &775 title: Label type: object properties: @@ -133502,8 +133773,8 @@ x-webhooks: - color - default - description - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133586,11 +133857,11 @@ x-webhooks: type: string enum: - locked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133672,11 +133943,11 @@ x-webhooks: type: string enum: - pinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133758,11 +134029,11 @@ x-webhooks: type: string enum: - reopened - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133847,16 +134118,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *771 - new_repository: *756 + new_discussion: *772 + new_repository: *757 required: - new_discussion - new_repository - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133939,10 +134210,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *771 - old_answer: *773 - organization: *755 - repository: *756 + discussion: *772 + old_answer: *774 + organization: *756 + repository: *757 sender: *4 required: - action @@ -134024,12 +134295,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *771 - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -134112,11 +134383,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -134198,11 +134469,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -134275,7 +134546,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *753 + enterprise: *754 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -134935,9 +135206,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - forkee @@ -135083,9 +135354,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pages: description: The pages that were updated. type: array @@ -135122,7 +135393,7 @@ x-webhooks: - action - sha - html_url - repository: *756 + repository: *757 sender: *4 required: - pages @@ -135198,10 +135469,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: &776 + organization: *756 + repositories: &777 description: An array of repository objects that the installation can access. type: array @@ -135227,8 +135498,8 @@ x-webhooks: - name - full_name - private - repository: *756 - requester: *775 + repository: *757 + requester: *776 sender: *4 required: - action @@ -135303,11 +135574,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135383,11 +135654,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135463,10 +135734,10 @@ x-webhooks: type: string enum: - added - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories_added: &777 + organization: *756 + repositories_added: &778 description: An array of repository objects, which were added to the installation. type: array @@ -135512,15 +135783,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *756 - repository_selection: &778 + repository: *757 + repository_selection: &779 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *775 + requester: *776 sender: *4 required: - action @@ -135599,10 +135870,10 @@ x-webhooks: type: string enum: - removed - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories_added: *777 + organization: *756 + repositories_added: *778 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135629,9 +135900,9 @@ x-webhooks: - name - full_name - private - repository: *756 - repository_selection: *778 - requester: *775 + repository: *757 + repository_selection: *779 + requester: *776 sender: *4 required: - action @@ -135710,11 +135981,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135892,10 +136163,10 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 target_type: type: string @@ -135974,11 +136245,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -136152,8 +136423,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true user: title: User @@ -136238,8 +136509,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137028,8 +137299,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137045,7 +137316,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -137378,8 +137649,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -137459,7 +137730,7 @@ x-webhooks: type: string enum: - deleted - comment: &779 + comment: &780 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137616,8 +137887,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true required: - url @@ -137632,8 +137903,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138418,8 +138689,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138435,7 +138706,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -138770,8 +139041,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -138851,7 +139122,7 @@ x-webhooks: type: string enum: - edited - changes: &808 + changes: &809 description: The changes to the comment. type: object properties: @@ -138863,9 +139134,9 @@ x-webhooks: type: string required: - from - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139653,8 +139924,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139670,7 +139941,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -140003,8 +140274,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -140085,9 +140356,9 @@ x-webhooks: type: string enum: - pinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140877,8 +141148,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140894,7 +141165,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -141229,8 +141500,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -141310,9 +141581,9 @@ x-webhooks: type: string enum: - unpinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142102,8 +142373,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142119,7 +142390,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -142454,8 +142725,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142544,9 +142815,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142635,9 +142906,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142725,9 +142996,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142816,9 +143087,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142898,10 +143169,10 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - issue: &780 + assignee: *776 + enterprise: *754 + installation: *755 + issue: &781 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143693,11 +143964,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143713,7 +143984,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -143814,8 +144085,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -143895,8 +144166,8 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144693,11 +144964,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144713,7 +144984,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -144949,8 +145220,8 @@ x-webhooks: required: - state - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -145029,8 +145300,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145818,11 +146089,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145838,7 +146109,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -145938,8 +146209,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -146018,8 +146289,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146829,11 +147100,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146849,7 +147120,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -146928,7 +147199,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &781 + milestone: &782 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147066,8 +147337,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -147166,8 +147437,8 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147959,11 +148230,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147976,7 +148247,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -148080,9 +148351,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -148162,9 +148433,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *754 + installation: *755 + issue: *781 issue_field: type: object description: The issue field whose value was set or updated on the @@ -148273,8 +148544,8 @@ x-webhooks: - id required: - from - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -148354,9 +148625,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *754 + installation: *755 + issue: *781 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -148414,8 +148685,8 @@ x-webhooks: nullable: true required: - id - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -148495,8 +148766,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149287,11 +149558,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149304,7 +149575,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -149408,9 +149679,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -149490,8 +149761,8 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150306,11 +150577,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150323,7 +150594,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -150404,8 +150675,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -150484,8 +150755,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151294,11 +151565,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151314,7 +151585,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -151392,9 +151663,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *781 - organization: *755 - repository: *756 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -152257,11 +152528,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152362,7 +152633,7 @@ x-webhooks: required: - login - id - type: *255 + type: *257 required: - id - number @@ -152842,8 +153113,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153627,11 +153898,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153647,7 +153918,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -153755,8 +154026,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -153836,9 +154107,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *753 - installation: *754 - issue: &782 + enterprise: *754 + installation: *755 + issue: &783 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -154624,11 +154895,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154644,7 +154915,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -154744,8 +155015,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -154824,8 +155095,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155638,11 +155909,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155736,9 +156007,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *255 - organization: *755 - repository: *756 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -156607,11 +156878,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156627,7 +156898,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -157206,11 +157477,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *783 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157290,12 +157561,12 @@ x-webhooks: type: string enum: - typed - enterprise: *753 - installation: *754 - issue: *780 - type: *255 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157376,7 +157647,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &811 + assignee: &812 title: User type: object nullable: true @@ -157446,11 +157717,11 @@ x-webhooks: required: - login - id - enterprise: *753 - installation: *754 - issue: *780 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157529,12 +157800,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - issue: *780 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157614,8 +157885,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158428,11 +158699,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158448,7 +158719,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -158526,8 +158797,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158607,11 +158878,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *783 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158690,12 +158961,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *753 - installation: *754 - issue: *780 - type: *255 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158775,11 +159046,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158857,11 +159128,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158971,11 +159242,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -159057,9 +159328,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: &783 + enterprise: *754 + installation: *755 + marketplace_purchase: &784 title: Marketplace Purchase type: object required: @@ -159142,8 +159413,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: &784 + organization: *756 + previous_marketplace_purchase: &785 title: Marketplace Purchase type: object properties: @@ -159223,7 +159494,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -159303,10 +159574,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159389,7 +159660,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -159471,10 +159742,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159556,7 +159827,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -159637,8 +159908,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 marketplace_purchase: title: Marketplace Purchase type: object @@ -159720,9 +159991,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + organization: *756 + previous_marketplace_purchase: *785 + repository: *757 sender: *4 required: - action @@ -159802,12 +160073,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 + previous_marketplace_purchase: *785 + repository: *757 sender: *4 required: - action @@ -159909,11 +160180,11 @@ x-webhooks: type: string required: - to - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160013,11 +160284,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160096,11 +160367,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160178,11 +160449,11 @@ x-webhooks: type: string enum: - added - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160258,7 +160529,7 @@ x-webhooks: required: - login - id - team: &785 + team: &786 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -160481,11 +160752,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160562,7 +160833,7 @@ x-webhooks: required: - login - id - team: *785 + team: *786 required: - action - scope @@ -160644,8 +160915,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *754 - merge_group: &787 + installation: *755 + merge_group: &788 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -160664,15 +160935,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *786 + head_commit: *787 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160758,10 +161029,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *754 - merge_group: *787 - organization: *755 - repository: *756 + installation: *755 + merge_group: *788 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160834,7 +161105,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *754 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -160943,16 +161214,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *754 - organization: *755 + installation: *755 + organization: *756 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -161033,11 +161304,11 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161116,9 +161387,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - milestone: &790 + enterprise: *754 + installation: *755 + milestone: &791 title: Milestone description: A collection of related issues and pull requests. type: object @@ -161255,8 +161526,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161335,11 +161606,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161449,11 +161720,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161533,11 +161804,11 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - milestone: *790 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *791 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161616,11 +161887,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *776 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161699,11 +161970,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *776 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161782,9 +162053,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - membership: &791 + enterprise: *754 + installation: *755 + membership: &792 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -161891,8 +162162,8 @@ x-webhooks: - role - organization_url - user - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161970,11 +162241,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -162053,8 +162324,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -162170,10 +162441,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 - user: *775 + user: *776 required: - action - invitation @@ -162251,11 +162522,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -162342,11 +162613,11 @@ x-webhooks: properties: from: type: string - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -162423,9 +162694,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 package: description: Information about the package. type: object @@ -162924,7 +163195,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &792 + items: &793 title: Ruby Gems metadata type: object properties: @@ -163019,7 +163290,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -163095,9 +163366,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 package: description: Information about the package. type: object @@ -163450,7 +163721,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *793 source_url: type: string format: uri @@ -163520,7 +163791,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -163696,12 +163967,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *753 + enterprise: *754 id: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - id @@ -163778,7 +164049,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &793 + personal_access_token_request: &794 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -163924,10 +164195,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *753 - organization: *755 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -164004,11 +164275,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *794 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -164084,11 +164355,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *794 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -164163,11 +164434,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *793 - organization: *755 - enterprise: *753 + personal_access_token_request: *794 + organization: *756 + enterprise: *754 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -164272,7 +164543,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *794 + last_response: *795 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -164304,8 +164575,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 zen: description: Random string of GitHub zen. @@ -164550,10 +164821,10 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: &795 + enterprise: *754 + installation: *755 + organization: *756 + project_card: &796 title: Project Card type: object properties: @@ -164672,7 +164943,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -164753,11 +165024,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_card: *796 + repository: *757 sender: *4 required: - action @@ -164837,9 +165108,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 project_card: title: Project Card type: object @@ -164967,8 +165238,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -165062,11 +165333,11 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_card: *796 + repository: *757 sender: *4 required: - action @@ -165160,9 +165431,9 @@ x-webhooks: - from required: - column_id - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 project_card: allOf: - title: Project Card @@ -165352,7 +165623,7 @@ x-webhooks: type: string required: - after_id - repository: *756 + repository: *757 sender: *4 required: - action @@ -165432,10 +165703,10 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - organization: *755 - project: &797 + enterprise: *754 + installation: *755 + organization: *756 + project: &798 title: Project type: object properties: @@ -165559,7 +165830,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -165639,10 +165910,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_column: &796 + enterprise: *754 + installation: *755 + organization: *756 + project_column: &797 title: Project Column type: object properties: @@ -165681,7 +165952,7 @@ x-webhooks: - name - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -165760,18 +166031,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -165861,11 +166132,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 + repository: *757 sender: *4 required: - action @@ -165945,11 +166216,11 @@ x-webhooks: type: string enum: - moved - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 + repository: *757 sender: *4 required: - action @@ -166029,11 +166300,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -166113,18 +166384,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project: *797 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -166226,11 +166497,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -166309,11 +166580,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -166394,9 +166665,9 @@ x-webhooks: type: string enum: - closed - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166477,9 +166748,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166560,9 +166831,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166679,9 +166950,9 @@ x-webhooks: type: string to: type: string - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166764,7 +167035,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &802 type: object properties: archived_at: @@ -166778,9 +167049,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *754 - organization: *755 - projects_v2_item: &798 + installation: *755 + organization: *756 + projects_v2_item: &799 title: Projects v2 Item description: An item belonging to a project type: object @@ -166798,7 +167069,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *296 + content_type: *298 creator: *4 created_at: type: string @@ -166915,9 +167186,9 @@ x-webhooks: nullable: true to: type: string - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -166999,9 +167270,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167082,9 +167353,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167190,7 +167461,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &800 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -167212,7 +167483,7 @@ x-webhooks: required: - id - name - - &800 + - &801 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -167246,8 +167517,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - *800 + - *801 required: - field_value - type: object @@ -167263,9 +167534,9 @@ x-webhooks: nullable: true required: - body - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167360,9 +167631,9 @@ x-webhooks: to: type: string nullable: true - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167445,10 +167716,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *754 - organization: *755 - projects_v2_item: *798 + changes: *802 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167530,9 +167801,9 @@ x-webhooks: type: string enum: - reopened - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -167613,14 +167884,14 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_status_update: &804 + installation: *755 + organization: *756 + projects_v2_status_update: &805 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *802 - required: *803 + properties: *803 + required: *804 sender: *4 required: - action @@ -167701,9 +167972,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *755 + organization: *756 + projects_v2_status_update: *805 sender: *4 required: - action @@ -167839,9 +168110,9 @@ x-webhooks: type: string format: date nullable: true - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *755 + organization: *756 + projects_v2_status_update: *805 sender: *4 required: - action @@ -167912,10 +168183,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - repository @@ -167992,13 +168263,13 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - number: &805 + assignee: *776 + enterprise: *754 + installation: *755 + number: &806 description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -170303,7 +170574,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -170385,11 +170656,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -172689,7 +172960,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *757 sender: *4 required: - action @@ -172771,11 +173042,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -175075,7 +175346,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *757 sender: *4 required: - action @@ -175157,13 +175428,13 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: &806 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: &807 allOf: - - *606 + - *608 - type: object properties: allow_auto_merge: @@ -175225,7 +175496,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *756 + repository: *757 sender: *4 required: - action @@ -175306,12 +175577,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -175391,11 +175662,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - milestone: *590 - number: *805 - organization: *755 - pull_request: &807 + enterprise: *754 + milestone: *592 + number: *806 + organization: *756 + pull_request: &808 title: Pull Request type: object properties: @@ -177680,7 +177951,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -177759,11 +178030,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -180067,7 +180338,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *756 + repository: *757 sender: *4 required: - action @@ -180191,12 +180462,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -180276,11 +180547,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -182569,7 +182840,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -182649,11 +182920,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + label: *775 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -184957,7 +185228,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -185038,10 +185309,10 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -187343,7 +187614,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -187423,12 +187694,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - milestone: *590 - number: *805 - organization: *755 - pull_request: *807 - repository: *756 + enterprise: *754 + milestone: *592 + number: *806 + organization: *756 + pull_request: *808 + repository: *757 sender: *4 required: - action @@ -187507,12 +187778,12 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -187593,12 +187864,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -187678,12 +187949,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -188049,9 +188320,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -190243,7 +190514,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -190323,7 +190594,7 @@ x-webhooks: type: string enum: - deleted - comment: &809 + comment: &810 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -190608,9 +190879,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -192790,7 +193061,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -192870,11 +193141,11 @@ x-webhooks: type: string enum: - edited - changes: *808 - comment: *809 - enterprise: *753 - installation: *754 - organization: *755 + changes: *809 + comment: *810 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -195057,7 +195328,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -195138,9 +195409,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -197335,7 +197606,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 review: description: The review that was affected. type: object @@ -197582,9 +197853,9 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -199638,8 +199909,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: &810 + repository: *757 + review: &811 description: The review that was affected. type: object properties: @@ -199872,12 +200143,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -202182,7 +202453,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_reviewer: title: User type: object @@ -202266,12 +202537,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -204583,7 +204854,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204775,12 +205046,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -207087,7 +207358,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_reviewer: title: User type: object @@ -207172,12 +207443,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -209475,7 +209746,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209656,9 +209927,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -211855,8 +212126,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: *810 + repository: *757 + review: *811 sender: *4 required: - action @@ -211936,9 +212207,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -214030,7 +214301,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 sender: *4 thread: type: object @@ -214417,9 +214688,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -216497,7 +216768,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 sender: *4 thread: type: object @@ -216887,10 +217158,10 @@ x-webhooks: type: string before: type: string - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -219183,7 +219454,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -219265,11 +219536,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *811 - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + assignee: *812 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -221574,7 +221845,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -221653,11 +221924,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + label: *775 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -223952,7 +224223,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -224033,10 +224304,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -226323,7 +226594,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -226523,7 +226794,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *753 + enterprise: *754 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -226615,8 +226886,8 @@ x-webhooks: - url - author - committer - installation: *754 - organization: *755 + installation: *755 + organization: *756 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -227202,9 +227473,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 registry_package: type: object properties: @@ -227650,7 +227921,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *792 + items: *793 summary: type: string tag_name: @@ -227704,7 +227975,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -227782,9 +228053,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 registry_package: type: object properties: @@ -228092,7 +228363,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *793 summary: type: string tag_name: @@ -228141,7 +228412,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -228218,10 +228489,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - release: &812 + enterprise: *754 + installation: *755 + organization: *756 + release: &813 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228539,7 +228810,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *756 + repository: *757 sender: *4 required: - action @@ -228616,11 +228887,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -228737,11 +229008,11 @@ x-webhooks: type: boolean required: - to - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -228819,9 +229090,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -229143,7 +229414,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *757 sender: *4 required: - action @@ -229219,10 +229490,10 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - release: &813 + enterprise: *754 + installation: *755 + organization: *756 + release: &814 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229541,7 +229812,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *757 sender: *4 required: - action @@ -229617,11 +229888,11 @@ x-webhooks: type: string enum: - released - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -229697,11 +229968,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *753 - installation: *754 - organization: *755 - release: *813 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *814 + repository: *757 sender: *4 required: - action @@ -229777,11 +230048,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *675 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_advisory: *677 sender: *4 required: - action @@ -229857,11 +230128,11 @@ x-webhooks: type: string enum: - reported - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *675 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_advisory: *677 sender: *4 required: - action @@ -229937,10 +230208,10 @@ x-webhooks: type: string enum: - archived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230017,10 +230288,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230098,10 +230369,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230185,10 +230456,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230300,10 +230571,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230375,10 +230646,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 status: type: string @@ -230459,10 +230730,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230539,10 +230810,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230636,10 +230907,10 @@ x-webhooks: - name required: - repository - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230719,11 +230990,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 sender: *4 required: - action @@ -230801,11 +231072,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 sender: *4 required: - action @@ -230883,11 +231154,11 @@ x-webhooks: type: string enum: - edited - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 changes: type: object properties: @@ -230906,16 +231177,16 @@ x-webhooks: properties: added: type: array - items: *311 + items: *313 deleted: type: array - items: *311 + items: *313 updated: type: array items: type: object properties: - condition: *311 + condition: *313 changes: type: object properties: @@ -230948,16 +231219,16 @@ x-webhooks: properties: added: type: array - items: *626 + items: *628 deleted: type: array - items: *626 + items: *628 updated: type: array items: type: object properties: - rule: *626 + rule: *628 changes: type: object properties: @@ -231191,10 +231462,10 @@ x-webhooks: - from required: - owner - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231272,10 +231543,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231353,7 +231624,7 @@ x-webhooks: type: string enum: - create - alert: &814 + alert: &815 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -231475,10 +231746,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231684,10 +231955,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231765,11 +232036,11 @@ x-webhooks: type: string enum: - reopen - alert: *814 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *815 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231968,10 +232239,10 @@ x-webhooks: enum: - fixed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232049,11 +232320,11 @@ x-webhooks: type: string enum: - assigned - alert: &815 + alert: &816 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -232061,8 +232332,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri @@ -232192,10 +232463,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232273,11 +232544,11 @@ x-webhooks: type: string enum: - created - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232358,11 +232629,11 @@ x-webhooks: type: string enum: - created - alert: *815 - installation: *754 - location: *816 - organization: *755 - repository: *756 + alert: *816 + installation: *755 + location: *817 + organization: *756 + repository: *757 sender: *4 required: - location @@ -232600,11 +232871,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232682,11 +232953,11 @@ x-webhooks: type: string enum: - reopened - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232764,11 +233035,11 @@ x-webhooks: type: string enum: - resolved - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232846,12 +233117,12 @@ x-webhooks: type: string enum: - unassigned - alert: *815 + alert: *816 assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232929,11 +233200,11 @@ x-webhooks: type: string enum: - validated - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -233059,10 +233330,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *756 - enterprise: *753 - installation: *754 - organization: *755 + repository: *757 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -233140,11 +233411,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: &817 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + security_advisory: &818 description: The details of the security advisory, including summary, description, and severity. type: object @@ -233327,11 +233598,11 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: *817 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + security_advisory: *818 sender: *4 required: - action @@ -233404,10 +233675,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -233591,11 +233862,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *310 - enterprise: *753 - installation: *754 - organization: *755 - repository: *358 + security_and_analysis: *312 + enterprise: *754 + installation: *755 + organization: *756 + repository: *360 sender: *4 required: - changes @@ -233673,12 +233944,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: &818 + sponsorship: &819 type: object properties: created_at: @@ -233979,12 +234250,12 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - sponsorship @@ -234072,12 +234343,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -234154,17 +234425,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &819 + effective_date: &820 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: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - sponsorship @@ -234238,7 +234509,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &820 + changes: &821 type: object properties: tier: @@ -234282,13 +234553,13 @@ x-webhooks: - from required: - tier - effective_date: *819 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + effective_date: *820 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -234365,13 +234636,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *820 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + changes: *821 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -234445,10 +234716,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234531,10 +234802,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234954,15 +235225,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *753 + enterprise: *754 id: description: The unique identifier of the status. type: integer - installation: *754 + installation: *755 name: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 sha: description: The Commit SHA. @@ -235077,9 +235348,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -235168,9 +235439,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -235259,9 +235530,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -235350,9 +235621,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -235428,12 +235699,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - team: &821 + team: &822 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -235656,9 +235927,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -236116,7 +236387,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -236192,9 +236463,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -236652,7 +236923,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -236729,9 +237000,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -237189,7 +237460,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -237333,9 +237604,9 @@ x-webhooks: - from required: - permissions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -237793,7 +238064,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - changes @@ -237871,9 +238142,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -238331,7 +238602,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -238407,10 +238678,10 @@ x-webhooks: type: string enum: - started - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -238483,16 +238754,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *753 + enterprise: *754 inputs: type: object nullable: true additionalProperties: true - installation: *754 - organization: *755 + installation: *755 + organization: *756 ref: type: string - repository: *756 + repository: *757 sender: *4 workflow: type: string @@ -238574,10 +238845,10 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: allOf: @@ -238814,7 +239085,7 @@ x-webhooks: type: string required: - conclusion - deployment: *518 + deployment: *520 required: - action - repository @@ -238893,10 +239164,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: allOf: @@ -239156,7 +239427,7 @@ x-webhooks: required: - status - steps - deployment: *518 + deployment: *520 required: - action - repository @@ -239235,10 +239506,10 @@ x-webhooks: type: string enum: - queued - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: type: object @@ -239373,7 +239644,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *518 + deployment: *520 required: - action - repository @@ -239452,10 +239723,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: type: object @@ -239591,7 +239862,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *518 + deployment: *520 required: - action - repository @@ -239671,12 +239942,12 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object @@ -240675,12 +240946,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object @@ -241664,12 +241935,12 @@ x-webhooks: type: string enum: - requested - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index a0547c412..532ccbd42 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -25128,8 +25128,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25287,8 +25287,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -25452,8 +25452,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25616,8 +25616,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25775,8 +25775,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -71819,6 +71819,395 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "user", + "description": "The user name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -122949,8 +123338,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -123111,8 +123500,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -123276,8 +123665,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -123443,8 +123832,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -123605,8 +123994,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -722012,6 +722401,382 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "name": "username", + "description": "The handle for the GitHub user account.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 7caab2bd9..a2dba3d02 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -836,7 +836,7 @@ paths: - subscriptions_url - type - url - type: &343 + type: &345 type: string description: The type of credit the user is receiving. enum: @@ -968,7 +968,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &131 + schema: &133 title: Validation Error Simple description: Validation Error Simple type: object @@ -1001,7 +1001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &677 + - &679 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4080,7 +4080,7 @@ paths: schema: type: integer default: 30 - - &229 + - &231 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 @@ -4089,7 +4089,7 @@ paths: required: false schema: type: string - - &230 + - &232 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4109,7 +4109,7 @@ paths: application/json: schema: type: array - items: &231 + items: &233 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4189,7 +4189,7 @@ paths: - installation_id - repository_id examples: - default: &232 + default: &234 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4248,7 +4248,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &130 + schema: &132 title: Validation Error description: Validation Error type: object @@ -4317,7 +4317,7 @@ paths: description: Response content: application/json: - schema: &233 + schema: &235 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4431,7 +4431,7 @@ paths: - request - response examples: - default: &234 + default: &236 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5419,7 +5419,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &308 + properties: &310 id: description: Unique identifier of the repository example: 42 @@ -5855,7 +5855,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &309 + required: &311 - archive_url - assignees_url - blobs_url @@ -9795,7 +9795,7 @@ paths: required: true content: application/json: - schema: &143 + schema: &145 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -10495,7 +10495,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &199 type: array description: A list of default code security configurations items: @@ -10511,7 +10511,7 @@ paths: default configuration: *49 examples: - default: &198 + default: &200 value: - default_for_new_repos: public configuration: @@ -10973,7 +10973,7 @@ paths: default: value: default_for_new_repos: all - configuration: &196 + configuration: &198 value: id: 1325 target_type: organization @@ -11063,7 +11063,7 @@ paths: application/json: schema: type: array - items: &199 + items: &201 type: object description: Repositories associated with a code security configuration and attachment status @@ -11364,7 +11364,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &200 + repository: &202 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -11496,8 +11496,8 @@ paths: default: &58 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' '500': *55 '403': *29 @@ -11562,8 +11562,8 @@ paths: default: &60 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' '500': *55 @@ -11905,7 +11905,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &210 + - &212 name: classification in: query description: |- @@ -11914,7 +11914,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &211 + - &213 name: state in: query description: |- @@ -11923,7 +11923,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &212 + - &214 name: severity in: query description: |- @@ -11932,7 +11932,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &213 + - &215 name: ecosystem in: query description: |- @@ -11941,14 +11941,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &214 + - &216 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 - - &215 + - &217 name: epss_percentage in: query description: |- @@ -11960,7 +11960,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &507 + - &509 name: has in: query description: |- @@ -11974,7 +11974,7 @@ paths: type: string enum: - patch - - &216 + - &218 name: assignee in: query description: |- @@ -11983,7 +11983,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &217 + - &219 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -11993,7 +11993,7 @@ paths: enum: - development - runtime - - &218 + - &220 name: sort in: query description: |- @@ -12019,11 +12019,11 @@ paths: application/json: schema: type: array - items: &219 + items: &221 type: object description: A Dependabot alert. properties: - number: &186 + number: &188 type: integer description: The security alert number. readOnly: true @@ -12086,7 +12086,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &508 + security_advisory: &510 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12274,29 +12274,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *66 - url: &189 + url: &191 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &190 + html_url: &192 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &187 + created_at: &189 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &188 + updated_at: &190 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &192 + dismissed_at: &194 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -12326,21 +12326,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &191 + fixed_at: &193 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &509 + auto_dismissed_at: &511 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &510 + dismissal_request: &512 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12402,7 +12402,7 @@ paths: - repository additionalProperties: false examples: - default: &220 + default: &222 value: - number: 2 state: dismissed @@ -12787,7 +12787,7 @@ paths: description: Response content: application/json: - schema: &221 + schema: &223 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -12813,7 +12813,7 @@ paths: nullable: true additionalProperties: false examples: - default: &222 + default: &224 value: default_level: public accessible_repositories: @@ -13497,7 +13497,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &206 + properties: &208 login: type: string example: github @@ -13538,7 +13538,7 @@ paths: type: string example: A great organization nullable: true - required: &207 + required: &209 - login - url - id @@ -14028,7 +14028,7 @@ paths: properties: action: type: string - discussion: &771 + discussion: &772 title: Discussion description: A Discussion in a repository. type: object @@ -14395,7 +14395,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &560 + properties: &562 id: type: integer format: int64 @@ -14501,7 +14501,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &292 + properties: &294 url: type: string format: uri @@ -14571,7 +14571,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &293 + required: &295 - closed_issues - creator - description @@ -14650,7 +14650,7 @@ paths: timeline_url: type: string format: uri - type: &255 + type: &257 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -14766,7 +14766,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &688 + sub_issues_summary: &690 title: Sub-issues Summary type: object properties: @@ -14853,7 +14853,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &583 + properties: &585 pinned_at: type: string format: date-time @@ -14865,7 +14865,7 @@ paths: properties: *20 required: *21 nullable: true - required: &584 + required: &586 - pinned_at - pinned_by nullable: true @@ -14879,7 +14879,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &689 + issue_dependencies_summary: &691 title: Issue Dependencies Summary type: object properties: @@ -14898,7 +14898,7 @@ paths: - total_blocking issue_field_values: type: array - items: &567 + items: &569 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14959,7 +14959,7 @@ paths: - node_id - data_type - value - required: &561 + required: &563 - closed_at - comments - comments_url @@ -14996,7 +14996,7 @@ paths: action: type: string issue: *88 - comment: &556 + comment: &558 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15660,7 +15660,7 @@ paths: type: string release: allOf: - - &617 + - &619 title: Release description: A release. type: object @@ -15731,7 +15731,7 @@ paths: author: *4 assets: type: array - items: &618 + items: &620 title: Release Asset description: Data related to a release. type: object @@ -17973,7 +17973,7 @@ paths: - closed - all default: open - - &258 + - &260 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18024,7 +18024,7 @@ paths: type: array items: *88 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19409,14 +19409,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &355 + - &357 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &356 + - &358 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19478,7 +19478,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &359 + '301': &361 description: Moved permanently content: application/json: @@ -19500,7 +19500,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &593 + - &595 name: all description: If `true`, show notifications marked as read. in: query @@ -19508,7 +19508,7 @@ paths: schema: type: boolean default: false - - &594 + - &596 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19518,7 +19518,7 @@ paths: type: boolean default: false - *95 - - &595 + - &597 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: @@ -19550,11 +19550,11 @@ paths: properties: id: type: string - repository: &161 + repository: &163 title: Minimal Repository description: Minimal Repository type: object - properties: &224 + properties: &226 id: type: integer format: int64 @@ -19838,7 +19838,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &310 + security_and_analysis: &312 nullable: true type: object properties: @@ -19958,7 +19958,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &225 + required: &227 - archive_url - assignees_url - blobs_url @@ -20046,7 +20046,7 @@ paths: - url - subscription_url examples: - default: &596 + default: &598 value: - id: '1' repository: @@ -20748,6 +20748,185 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - *78 + - &124 + 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, + `2025`. Default value is the current year. + in: query + required: false + schema: + type: integer + - &125 + name: month + description: If specified, only return results for a single month. The value + of `month` is an integer between `1` and `12`. Default value is the current + month. If no year is specified the default `year` is used. + in: query + required: false + schema: + type: integer + - &126 + name: day + description: If specified, only return results for a single day. The value + of `day` is an integer between `1` and `31`. If no `year` or `month` is + specified, the default `year` and `month` are used. + in: query + required: false + schema: + type: integer + - &127 + name: user + description: The user name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &128 + name: model + description: The model name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &129 + name: product + description: The product name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -21295,53 +21474,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *78 - - &124 - 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, - `2025`. Default value is the current year. - in: query - required: false - schema: - type: integer - - &126 - name: month - description: If specified, only return results for a single month. The value - of `month` is an integer between `1` and `12`. Default value is the current - month. If no year is specified the default `year` is used. - in: query - required: false - schema: - type: integer - - &125 - name: day - description: If specified, only return results for a single day. The value - of `day` is an integer between `1` and `31`. If no `year` or `month` is - specified, the default `year` and `month` are used. - in: query - required: false - schema: - type: integer - - name: user - description: The user name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &746 - name: model - description: The model name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &127 - name: product - description: The product name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string + - *124 + - *125 + - *126 + - *127 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -21474,7 +21612,7 @@ paths: parameters: - *78 - *124 - - &747 + - &748 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -21483,7 +21621,7 @@ paths: required: false schema: type: integer - - *125 + - *126 responses: '200': description: Billing usage report response for an organization @@ -21584,17 +21722,17 @@ paths: parameters: - *78 - *124 - - *126 - *125 - - &748 + - *126 + - &749 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *127 - - &749 + - *129 + - &750 name: sku description: The SKU to query for usage. in: query @@ -21737,7 +21875,7 @@ paths: description: Response content: application/json: - schema: &128 + schema: &130 title: Organization Full description: Organization Full type: object @@ -22051,7 +22189,7 @@ paths: - updated_at - archived_at examples: - default-response: &129 + default-response: &131 value: login: github id: 1 @@ -22362,17 +22500,17 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: - default: *129 + default: *131 '422': description: Validation failed content: application/json: schema: oneOf: - - *130 - - *131 + - *132 + - *133 '409': *54 x-github: githubCloudOnly: false @@ -22487,7 +22625,7 @@ paths: type: integer repository_cache_usages: type: array - items: &366 + items: &368 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22560,7 +22698,7 @@ paths: type: integer runners: type: array - items: &132 + items: &134 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -22614,7 +22752,7 @@ paths: - display_name - source nullable: true - machine_size_details: &140 + machine_size_details: &142 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -22710,7 +22848,7 @@ paths: - public_ip_enabled - platform examples: - default: &160 + default: &162 value: total_count: 2 runners: @@ -22847,9 +22985,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: &141 + default: &143 value: id: 5 name: My hosted ubuntu runner @@ -22906,7 +23044,7 @@ paths: type: integer images: type: array - items: &133 + items: &135 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -22957,7 +23095,7 @@ paths: - latest_version - state examples: - default: &135 + default: &137 value: total_count: 2 image_versions: @@ -22989,7 +23127,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *78 - - &134 + - &136 name: image_definition_id description: Image definition ID of custom image in: path @@ -23001,7 +23139,7 @@ paths: description: Response content: application/json: - schema: *133 + schema: *135 examples: default: value: @@ -23032,7 +23170,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *78 - - *134 + - *136 responses: '204': description: Response @@ -23055,7 +23193,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *134 + - *136 - *78 responses: '200': @@ -23072,7 +23210,7 @@ paths: type: integer image_versions: type: array - items: &136 + items: &138 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -23105,7 +23243,7 @@ paths: - created_on - state_details examples: - default: *135 + default: *137 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23126,8 +23264,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - *78 - - *134 - - &137 + - *136 + - &139 name: version description: Version of a custom image in: path @@ -23140,7 +23278,7 @@ paths: description: Response content: application/json: - schema: *136 + schema: *138 examples: default: value: @@ -23167,8 +23305,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *78 - - *134 - - *137 + - *136 + - *139 responses: '204': description: Response @@ -23205,7 +23343,7 @@ paths: type: integer images: type: array - items: &138 + items: &140 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -23241,7 +23379,7 @@ paths: - display_name - source examples: - default: &139 + default: &141 value: id: ubuntu-20.04 platform: linux-x64 @@ -23281,9 +23419,9 @@ paths: type: integer images: type: array - items: *138 + items: *140 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23369,7 +23507,7 @@ paths: type: integer machine_specs: type: array - items: *140 + items: *142 examples: default: value: @@ -23439,7 +23577,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *78 - - &142 + - &144 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -23451,9 +23589,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 headers: Link: *70 x-github: @@ -23474,7 +23612,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 requestBody: required: true content: @@ -23540,9 +23678,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23559,15 +23697,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 responses: '202': description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23625,7 +23763,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *145 examples: default: *46 responses: @@ -23718,7 +23856,7 @@ paths: required: - include_claim_keys examples: - default: &144 + default: &146 value: include_claim_keys: - repo @@ -23763,13 +23901,13 @@ paths: format. type: boolean examples: - default: *144 + default: *146 responses: '201': description: Empty response content: application/json: - schema: &170 + schema: &172 title: Empty Object description: An object without any properties. type: object @@ -23808,7 +23946,7 @@ paths: schema: type: object properties: - enabled_repositories: &145 + enabled_repositories: &147 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -23821,7 +23959,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &146 + allowed_actions: &148 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -23829,12 +23967,12 @@ paths: - all - local_only - selected - selected_actions_url: &371 + selected_actions_url: &373 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` is set to `selected`. - sha_pinning_required: &147 + sha_pinning_required: &149 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -23876,9 +24014,9 @@ paths: schema: type: object properties: - enabled_repositories: *145 - allowed_actions: *146 - sha_pinning_required: *147 + enabled_repositories: *147 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled_repositories examples: @@ -23912,7 +24050,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &377 type: object properties: days: @@ -23954,7 +24092,7 @@ paths: required: true content: application/json: - schema: &376 + schema: &378 type: object properties: days: @@ -23997,7 +24135,7 @@ paths: description: Response content: application/json: - schema: &148 + schema: &150 type: object properties: approval_policy: @@ -24011,7 +24149,7 @@ paths: required: - approval_policy examples: - default: &377 + default: &379 value: approval_policy: first_time_contributors '404': *6 @@ -24042,7 +24180,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -24070,7 +24208,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &380 type: object required: - run_workflows_from_fork_pull_requests @@ -24096,7 +24234,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &149 + default: &151 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -24124,7 +24262,7 @@ paths: required: true content: application/json: - schema: &379 + schema: &381 type: object required: - run_workflows_from_fork_pull_requests @@ -24147,7 +24285,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -24197,7 +24335,7 @@ paths: type: array items: *82 examples: - default: &153 + default: &155 value: total_count: 1 repositories: @@ -24382,7 +24520,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - &150 + - &152 name: repository_id description: The unique identifier of the repository. in: path @@ -24411,7 +24549,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -24440,7 +24578,7 @@ paths: description: Response content: application/json: - schema: &151 + schema: &153 type: object properties: github_owned_allowed: @@ -24462,7 +24600,7 @@ paths: items: type: string examples: - default: &152 + default: &154 value: github_owned_allowed: true verified_allowed: false @@ -24495,9 +24633,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -24629,7 +24767,7 @@ paths: type: array items: *82 examples: - default: *153 + default: *155 '403': *29 '404': *6 x-github: @@ -24698,7 +24836,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -24725,7 +24863,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -24759,17 +24897,17 @@ paths: description: Response content: application/json: - schema: &380 + schema: &382 type: object properties: - default_workflow_permissions: &154 + default_workflow_permissions: &156 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &155 + can_approve_pull_request_reviews: &157 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -24777,7 +24915,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &156 + default: &158 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -24810,13 +24948,13 @@ paths: required: false content: application/json: - schema: &381 + schema: &383 type: object properties: - default_workflow_permissions: *154 - can_approve_pull_request_reviews: *155 + default_workflow_permissions: *156 + can_approve_pull_request_reviews: *157 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24861,7 +24999,7 @@ paths: type: number runner_groups: type: array - items: &157 + items: &159 type: object properties: id: @@ -25049,9 +25187,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &159 + default: &161 value: id: 2 name: octo-runner-group @@ -25087,7 +25225,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - &158 + - &160 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -25099,7 +25237,7 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: default: value: @@ -25136,7 +25274,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25190,9 +25328,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25212,7 +25350,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *78 - - *158 + - *160 responses: '204': description: Response @@ -25236,7 +25374,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -25254,9 +25392,9 @@ paths: type: number runners: type: array - items: *132 + items: *134 examples: - default: *160 + default: *162 headers: Link: *70 x-github: @@ -25279,7 +25417,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 - *19 - *17 responses: @@ -25297,9 +25435,9 @@ paths: type: number repositories: type: array - items: *161 + items: *163 examples: - default: &209 + default: &211 value: total_count: 1 repositories: @@ -25552,7 +25690,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25597,8 +25735,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -25621,8 +25759,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -25646,7 +25784,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -25664,7 +25802,7 @@ paths: type: number runners: type: array - items: &163 + items: &165 title: Self hosted runners description: A self hosted runner type: object @@ -25693,7 +25831,7 @@ paths: type: boolean labels: type: array - items: &166 + items: &168 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -25730,7 +25868,7 @@ paths: - busy - labels examples: - default: &164 + default: &166 value: total_count: 2 runners: @@ -25792,7 +25930,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25837,8 +25975,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - *78 - - *158 - - &162 + - *160 + - &164 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -25867,8 +26005,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - *78 - - *158 - - *162 + - *160 + - *164 responses: '204': description: Response @@ -25916,9 +26054,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -25950,7 +26088,7 @@ paths: application/json: schema: type: array - items: &382 + items: &384 title: Runner Application description: Runner Application type: object @@ -25975,7 +26113,7 @@ paths: - download_url - filename examples: - default: &383 + default: &385 value: - os: osx architecture: x64 @@ -26061,7 +26199,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &384 + '201': &386 description: Response content: application/json: @@ -26071,7 +26209,7 @@ paths: - runner - encoded_jit_config properties: - runner: *163 + runner: *165 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -26134,7 +26272,7 @@ paths: description: Response content: application/json: - schema: &165 + schema: &167 title: Authentication Token description: Authentication Token type: object @@ -26172,7 +26310,7 @@ paths: - token - expires_at examples: - default: &385 + default: &387 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26209,9 +26347,9 @@ paths: description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: &386 + default: &388 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26237,15 +26375,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &387 + default: &389 value: id: 23 name: MBP @@ -26288,7 +26426,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *78 - - *162 + - *164 responses: '204': description: Response @@ -26315,9 +26453,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &167 + '200': &169 description: Response content: application/json: @@ -26331,7 +26469,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -26371,7 +26509,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -26395,7 +26533,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26420,7 +26558,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -26445,7 +26583,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26470,9 +26608,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &388 + '200': &390 description: Response content: application/json: @@ -26486,7 +26624,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -26528,8 +26666,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 - - &389 + - *164 + - &391 name: name description: The name of a self-hosted runner's custom label. in: path @@ -26537,7 +26675,7 @@ paths: schema: type: string responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -26580,7 +26718,7 @@ paths: type: integer secrets: type: array - items: &168 + items: &170 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -26612,7 +26750,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &176 value: total_count: 3 secrets: @@ -26659,7 +26797,7 @@ paths: description: Response content: application/json: - schema: &175 + schema: &177 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -26688,7 +26826,7 @@ paths: - key_id - key examples: - default: &176 + default: &178 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26714,7 +26852,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *78 - - &169 + - &171 name: secret_name description: The name of the secret. in: path @@ -26726,9 +26864,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: &177 + default: &179 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -26757,7 +26895,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -26814,7 +26952,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -26841,7 +26979,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -26868,7 +27006,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -26886,9 +27024,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: &173 + default: &175 value: total_count: 1 repositories: @@ -26981,7 +27119,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27034,7 +27172,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27068,7 +27206,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27101,7 +27239,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *78 - - &178 + - &180 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)." @@ -27125,7 +27263,7 @@ paths: type: integer variables: type: array - items: &171 + items: &173 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -27168,7 +27306,7 @@ paths: - updated_at - visibility examples: - default: &179 + default: &181 value: total_count: 3 variables: @@ -27258,7 +27396,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27284,7 +27422,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *78 - - &172 + - &174 name: name description: The name of the variable. in: path @@ -27296,9 +27434,9 @@ paths: description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: &180 + default: &182 value: name: USERNAME value: octocat @@ -27327,7 +27465,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -27390,7 +27528,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -27417,7 +27555,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -27435,9 +27573,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -27464,7 +27602,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -27514,7 +27652,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -27549,7 +27687,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -27601,9 +27739,9 @@ paths: type: integer secrets: type: array - items: *168 + items: *170 examples: - default: *174 + default: *176 headers: Link: *70 x-github: @@ -27634,9 +27772,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27659,15 +27797,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: *177 + default: *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27690,7 +27828,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27747,7 +27885,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27774,7 +27912,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -27801,7 +27939,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -27819,9 +27957,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27845,7 +27983,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27898,7 +28036,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27932,7 +28070,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27966,7 +28104,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *78 - - *178 + - *180 - *19 responses: '200': @@ -27983,9 +28121,9 @@ paths: type: integer variables: type: array - items: *171 + items: *173 examples: - default: *179 + default: *181 headers: Link: *70 x-github: @@ -28056,7 +28194,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -28082,15 +28220,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '200': description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: *180 + default: *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28112,7 +28250,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28175,7 +28313,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -28202,7 +28340,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -28220,9 +28358,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28249,7 +28387,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28299,7 +28437,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28334,7 +28472,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28498,7 +28636,7 @@ paths: type: integer deployment_records: type: array - items: &181 + items: &183 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -28544,7 +28682,7 @@ paths: required: - total_count examples: - default: &182 + default: &184 value: total_count: 1 deployment_records: @@ -28722,11 +28860,11 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 required: - total_count examples: - default: *182 + default: *184 '403': description: Forbidden content: @@ -28965,9 +29103,9 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 examples: - default: *182 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29096,12 +29234,12 @@ paths: required: - subject_digests examples: - default: &727 + default: &729 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &728 + withPredicateType: &730 value: subject_digests: - sha256:abc123 @@ -29145,7 +29283,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &729 + default: &731 value: attestations_subject_digests: - sha256:abc: @@ -29478,7 +29616,7 @@ paths: initiator: type: string examples: - default: &415 + default: &417 value: attestations: - bundle: @@ -29697,7 +29835,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &183 + schema: &185 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -29723,7 +29861,7 @@ paths: application/json: schema: type: array - items: &184 + items: &186 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -29754,7 +29892,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &208 + items: &210 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -29829,7 +29967,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &270 + properties: &272 id: description: Unique identifier of the team type: integer @@ -29901,7 +30039,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &271 + required: &273 - id - node_id - url @@ -29944,7 +30082,7 @@ paths: type: string format: date-time nullable: true - state: *183 + state: *185 contact_link: description: The contact link of the campaign. type: string @@ -30164,9 +30302,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: &185 + default: &187 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -30249,9 +30387,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '404': *6 '422': description: Unprocessable Entity @@ -30328,7 +30466,7 @@ paths: type: string format: uri nullable: true - state: *183 + state: *185 examples: default: value: @@ -30338,9 +30476,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '400': description: Bad Request content: @@ -30407,17 +30545,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *78 - - &440 + - &442 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &193 + schema: &195 type: string description: The name of the tool used to generate the code scanning analysis. - - &441 + - &443 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 @@ -30425,7 +30563,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &194 + schema: &196 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -30440,7 +30578,7 @@ paths: be returned. in: query required: false - schema: &443 + schema: &445 type: string description: State of a code scanning alert. enum: @@ -30463,7 +30601,7 @@ paths: be returned. in: query required: false - schema: &444 + schema: &446 type: string description: Severity of a code scanning alert. enum: @@ -30492,18 +30630,18 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: &445 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: &447 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &195 + state: &197 type: string description: State of a code scanning alert. nullable: true @@ -30511,7 +30649,7 @@ paths: - open - dismissed - fixed - fixed_at: *191 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -30519,8 +30657,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: &446 + dismissed_at: *194 + dismissed_reason: &448 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -30529,13 +30667,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &447 + dismissed_comment: &449 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &448 + rule: &450 type: object properties: id: @@ -30588,42 +30726,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &449 + tool: &451 type: object properties: - name: *193 + name: *195 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *194 - most_recent_instance: &450 + guid: *196 + most_recent_instance: &452 type: object properties: - ref: &442 + ref: &444 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &460 + analysis_key: &462 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &461 + environment: &463 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &462 + category: &464 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *195 + state: *197 commit_sha: type: string message: @@ -30637,7 +30775,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &463 + location: &465 type: object description: Describe a region within a file for the alert. properties: @@ -30658,7 +30796,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &464 + items: &466 type: string description: A classification of the file. For example to identify it as generated. @@ -31297,7 +31435,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31325,9 +31463,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 '304': *37 '403': *29 '404': *6 @@ -31416,7 +31554,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 '304': *37 '403': *29 '404': *6 @@ -31861,7 +31999,7 @@ paths: default: value: default_for_new_repos: all - configuration: *196 + configuration: *198 '403': *29 '404': *6 x-github: @@ -31914,13 +32052,13 @@ paths: application/json: schema: type: array - items: *199 + items: *201 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *200 + repository: *202 '403': *29 '404': *6 x-github: @@ -31960,7 +32098,7 @@ paths: type: integer codespaces: type: array - items: &260 + items: &262 type: object title: Codespace description: A codespace. @@ -31985,12 +32123,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *161 + repository: *163 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &476 + properties: &478 name: type: string description: The name of the machine. @@ -32032,7 +32170,7 @@ paths: - ready - in_progress nullable: true - required: &477 + required: &479 - name - display_name - operating_system @@ -32237,7 +32375,7 @@ paths: - pulls_url - recent_folders examples: - default: &261 + default: &263 value: total_count: 3 codespaces: @@ -32861,7 +32999,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &203 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -32900,7 +33038,7 @@ paths: - updated_at - visibility examples: - default: &478 + default: &480 value: total_count: 2 secrets: @@ -32938,7 +33076,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &481 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32967,7 +33105,7 @@ paths: - key_id - key examples: - default: &480 + default: &482 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32991,15 +33129,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: &482 + default: &484 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33027,7 +33165,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33082,7 +33220,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -33109,7 +33247,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -33135,7 +33273,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -33153,9 +33291,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '404': *6 x-github: githubCloudOnly: false @@ -33178,7 +33316,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33229,7 +33367,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -33263,7 +33401,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -33333,7 +33471,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &202 + items: &204 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -33714,9 +33852,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &203 + default: &205 summary: Example response for an organization copilot space value: id: 84 @@ -33821,9 +33959,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 x-github: @@ -33949,9 +34087,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 '422': *15 @@ -34034,7 +34172,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &204 + items: &206 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -34257,7 +34395,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -34387,7 +34525,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -34538,7 +34676,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &205 + items: &207 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -34681,7 +34819,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -34697,7 +34835,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -34752,7 +34890,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -34821,7 +34959,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35063,7 +35201,7 @@ paths: currently being billed. seats: type: array - items: &263 + items: &265 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -35080,14 +35218,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *206 - required: *207 + properties: *208 + required: *209 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *208 + - *210 - *71 nullable: true pending_cancellation_date: @@ -35694,12 +35832,12 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 required: - total_count - repositories examples: - default: *209 + default: *211 '500': *55 '401': *25 '403': *29 @@ -35785,7 +35923,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -35819,7 +35957,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -36034,7 +36172,7 @@ paths: application/json: schema: type: array - items: &348 + items: &350 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -36341,7 +36479,7 @@ paths: - date additionalProperties: true examples: - default: &349 + default: &351 value: - date: '2024-06-24' total_active_users: 24 @@ -36443,7 +36581,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &350 + '422': &352 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -36662,12 +36800,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *78 - - *210 - - *211 - *212 - *213 - *214 - *215 + - *216 + - *217 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -36697,7 +36835,7 @@ paths: enum: - patch - deployment - - *216 + - *218 - name: runtime_risk in: query description: |- @@ -36706,8 +36844,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *217 - - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -36719,9 +36857,9 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: - default: *220 + default: *222 '304': *37 '400': *14 '403': *29 @@ -36770,9 +36908,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *223 examples: - default: *222 + default: *224 '403': *29 '404': *6 x-github: @@ -36935,7 +37073,7 @@ paths: type: integer secrets: type: array - items: &223 + items: &225 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37012,7 +37150,7 @@ paths: description: Response content: application/json: - schema: &513 + schema: &515 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37029,7 +37167,7 @@ paths: - key_id - key examples: - default: &514 + default: &516 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37053,13 +37191,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -37088,7 +37226,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37143,7 +37281,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -37168,7 +37306,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -37193,7 +37331,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -37211,9 +37349,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37235,7 +37373,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37286,7 +37424,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -37318,7 +37456,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -37356,7 +37494,7 @@ paths: application/json: schema: type: array - items: &273 + items: &275 title: Package description: A software package type: object @@ -37406,8 +37544,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *224 - required: *225 + properties: *226 + required: *227 nullable: true created_at: type: string @@ -37426,7 +37564,7 @@ paths: - created_at - updated_at examples: - default: &274 + default: &276 value: - id: 197 name: hello_docker @@ -37596,7 +37734,7 @@ paths: application/json: schema: type: array - items: &249 + items: &251 title: Organization Invitation description: Organization Invitation type: object @@ -37643,7 +37781,7 @@ paths: - invitation_teams_url - node_id examples: - default: &250 + default: &252 value: - id: 1 login: monalisa @@ -37710,7 +37848,7 @@ paths: application/json: schema: type: array - items: &226 + items: &228 title: Org Hook description: Org Hook type: object @@ -37881,9 +38019,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: &227 + default: &229 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -37931,7 +38069,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *78 - - &228 + - &230 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. @@ -37944,9 +38082,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: *227 + default: *229 '404': *6 x-github: githubCloudOnly: false @@ -37974,7 +38112,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *78 - - *228 + - *230 requestBody: required: false content: @@ -38019,7 +38157,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -38061,7 +38199,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *78 - - *228 + - *230 responses: '204': description: Response @@ -38089,7 +38227,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *78 - - *228 + - *230 responses: '200': description: Response @@ -38120,7 +38258,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *78 - - *228 + - *230 requestBody: required: false content: @@ -38171,10 +38309,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *78 - - *228 - - *17 - - *229 - *230 + - *17 + - *231 + - *232 responses: '200': description: Response @@ -38182,9 +38320,9 @@ paths: application/json: schema: type: array - items: *231 + items: *233 examples: - default: *232 + default: *234 '400': *14 '422': *15 x-github: @@ -38210,16 +38348,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *78 - - *228 + - *230 - *16 responses: '200': description: Response content: application/json: - schema: *233 + schema: *235 examples: - default: *234 + default: *236 '400': *14 '422': *15 x-github: @@ -38245,7 +38383,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *78 - - *228 + - *230 - *16 responses: '202': *39 @@ -38275,7 +38413,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *78 - - *228 + - *230 responses: '204': description: Response @@ -38298,7 +38436,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *78 - - &239 + - &241 name: actor_type in: path description: The type of the actor @@ -38311,14 +38449,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &240 + - &242 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &235 + - &237 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`.' @@ -38326,7 +38464,7 @@ paths: required: true schema: type: string - - &236 + - &238 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) @@ -38420,12 +38558,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *78 - - *235 - - *236 + - *237 + - *238 - *19 - *17 - *62 - - &245 + - &247 name: sort description: The property to sort the results by. in: query @@ -38503,14 +38641,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *78 - - *235 - - *236 + - *237 + - *238 responses: '200': description: Response content: application/json: - schema: &237 + schema: &239 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -38526,7 +38664,7 @@ paths: type: integer format: int64 examples: - default: &238 + default: &240 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -38547,23 +38685,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *78 - - &241 + - &243 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *235 - - *236 + - *237 + - *238 responses: '200': description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 x-github: enabledForGitHubApps: true category: orgs @@ -38582,18 +38720,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *78 - - *235 - - *236 - - *239 - - *240 + - *237 + - *238 + - *241 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 x-github: enabledForGitHubApps: true category: orgs @@ -38611,9 +38749,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *78 - - *235 - - *236 - - &242 + - *237 + - *238 + - &244 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -38626,7 +38764,7 @@ paths: description: Response content: application/json: - schema: &243 + schema: &245 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -38642,7 +38780,7 @@ paths: type: integer format: int64 examples: - default: &244 + default: &246 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -38679,18 +38817,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *78 - - *241 - - *235 - - *236 - - *242 + - *243 + - *237 + - *238 + - *244 responses: '200': description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: *244 + default: *246 x-github: enabledForGitHubApps: true category: orgs @@ -38708,19 +38846,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *78 - - *239 - - *240 - - *235 - - *236 + - *241 - *242 + - *237 + - *238 + - *244 responses: '200': description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: *244 + default: *246 x-github: enabledForGitHubApps: true category: orgs @@ -38738,13 +38876,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *78 - - *241 - - *235 - - *236 + - *243 + - *237 + - *238 - *19 - *17 - *62 - - *245 + - *247 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -38825,7 +38963,7 @@ paths: application/json: schema: *22 examples: - default: &551 + default: &553 value: id: 1 account: @@ -38991,12 +39129,12 @@ paths: application/json: schema: anyOf: - - &247 + - &249 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &246 + limit: &248 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -39021,7 +39159,7 @@ paths: properties: {} additionalProperties: false examples: - default: &248 + default: &250 value: limit: collaborators_only origin: organization @@ -39050,13 +39188,13 @@ paths: required: true content: application/json: - schema: &552 + schema: &554 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *246 + limit: *248 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -39080,9 +39218,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *248 + default: *250 '422': *15 x-github: githubCloudOnly: false @@ -39158,9 +39296,9 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 '404': *6 @@ -39237,7 +39375,7 @@ paths: description: Response content: application/json: - schema: *249 + schema: *251 examples: default: value: @@ -39292,7 +39430,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *78 - - &251 + - &253 name: invitation_id description: The unique identifier of the invitation. in: path @@ -39323,7 +39461,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *78 - - *251 + - *253 - *17 - *19 responses: @@ -39333,9 +39471,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: &272 + default: &274 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -39378,7 +39516,7 @@ paths: application/json: schema: type: array - items: &252 + items: &254 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -39611,9 +39749,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: - default: &253 + default: &255 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -39669,7 +39807,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *78 - - &254 + - &256 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -39777,9 +39915,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: - default: *253 + default: *255 '404': *6 '422': *7 x-github: @@ -39804,7 +39942,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *78 - - *254 + - *256 responses: '204': *61 '404': *6 @@ -39834,7 +39972,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -39919,9 +40057,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *257 examples: - default: &256 + default: &258 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -39954,7 +40092,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *78 - - &257 + - &259 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40007,9 +40145,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *257 examples: - default: *256 + default: *258 '404': *6 '422': *7 x-github: @@ -40034,7 +40172,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *78 - - *257 + - *259 responses: '204': description: Response @@ -40097,7 +40235,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: type description: Can be the name of an issue type. in: query @@ -40128,7 +40266,7 @@ paths: type: array items: *88 examples: - default: *259 + default: *261 headers: Link: *70 '404': *6 @@ -40288,9 +40426,9 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '304': *37 '500': *55 '401': *25 @@ -40317,7 +40455,7 @@ paths: parameters: - *78 - *74 - - &262 + - &264 name: codespace_name in: path required: true @@ -40352,15 +40490,15 @@ paths: parameters: - *78 - *74 - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: &475 + default: &477 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -40540,7 +40678,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *263 + schema: *265 examples: default: value: @@ -40616,7 +40754,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &266 title: Org Membership description: Org Membership type: object @@ -40683,7 +40821,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &265 + response-if-user-has-an-active-admin-membership-with-organization: &267 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -40784,9 +40922,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - response-if-user-already-had-membership-with-organization: *265 + response-if-user-already-had-membership-with-organization: *267 '422': *15 '403': *29 '451': *15 @@ -40858,7 +40996,7 @@ paths: application/json: schema: type: array - items: &266 + items: &268 title: Migration description: A migration. type: object @@ -41187,7 +41325,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -41366,7 +41504,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *78 - - &267 + - &269 name: migration_id description: The unique identifier of the migration. in: path @@ -41393,7 +41531,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -41563,7 +41701,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *78 - - *267 + - *269 responses: '302': description: Response @@ -41585,7 +41723,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *78 - - *267 + - *269 responses: '204': description: Response @@ -41609,8 +41747,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *78 - - *267 - - &709 + - *269 + - &711 name: repo_name description: repo_name parameter in: path @@ -41638,7 +41776,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *78 - - *267 + - *269 - *17 - *19 responses: @@ -41692,7 +41830,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &269 + items: &271 title: Organization Role description: Organization roles type: object @@ -41867,7 +42005,7 @@ paths: parameters: - *78 - *80 - - &268 + - &270 name: role_id description: The unique identifier of the role. in: path @@ -41904,7 +42042,7 @@ paths: parameters: - *78 - *80 - - *268 + - *270 responses: '204': description: Response @@ -41957,7 +42095,7 @@ paths: parameters: - *78 - *74 - - *268 + - *270 responses: '204': description: Response @@ -41989,7 +42127,7 @@ paths: parameters: - *78 - *74 - - *268 + - *270 responses: '204': description: Response @@ -42018,13 +42156,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *78 - - *268 + - *270 responses: '200': description: Response content: application/json: - schema: *269 + schema: *271 examples: default: value: @@ -42075,7 +42213,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *78 - - *268 + - *270 - *17 - *19 responses: @@ -42153,8 +42291,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 nullable: true type: description: The ownership type of the team @@ -42186,7 +42324,7 @@ paths: - type - parent examples: - default: *272 + default: *274 headers: Link: *70 '404': @@ -42216,7 +42354,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *78 - - *268 + - *270 - *17 - *19 responses: @@ -42244,13 +42382,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &344 + items: &346 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 name: nullable: true type: string @@ -42538,7 +42676,7 @@ paths: - nuget - container - *78 - - &710 + - &712 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -42574,12 +42712,12 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *274 + default: *276 '403': *29 '401': *25 - '400': &712 + '400': &714 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -42601,7 +42739,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &275 + - &277 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 @@ -42619,7 +42757,7 @@ paths: - docker - nuget - container - - &276 + - &278 name: package_name description: The name of the package. in: path @@ -42632,7 +42770,7 @@ paths: description: Response content: application/json: - schema: *273 + schema: *275 examples: default: value: @@ -42684,8 +42822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 responses: '204': @@ -42718,8 +42856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 - name: token description: package token @@ -42752,8 +42890,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: - - *275 - - *276 + - *277 + - *278 - *78 - *19 - *17 @@ -42774,7 +42912,7 @@ paths: application/json: schema: type: array - items: &277 + items: &279 title: Package Version description: A version of a software package type: object @@ -42899,10 +43037,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *275 - - *276 + - *277 + - *278 - *78 - - &278 + - &280 name: package_version_id description: Unique identifier of the package version. in: path @@ -42914,7 +43052,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -42950,10 +43088,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *275 - - *276 - - *78 + - *277 - *278 + - *78 + - *280 responses: '204': description: Response @@ -42985,10 +43123,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *275 - - *276 - - *78 + - *277 - *278 + - *78 + - *280 responses: '204': description: Response @@ -43018,7 +43156,7 @@ paths: - *78 - *17 - *19 - - &279 + - &281 name: sort description: The property by which to sort the results. in: query @@ -43029,7 +43167,7 @@ paths: - created_at default: created_at - *62 - - &280 + - &282 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43040,7 +43178,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &281 + - &283 name: repository description: The name of the repository to use to filter the results. in: query @@ -43048,7 +43186,7 @@ paths: schema: type: string example: Hello-World - - &282 + - &284 name: permission description: The permission to use to filter the results. in: query @@ -43056,7 +43194,7 @@ paths: schema: type: string example: issues_read - - &283 + - &285 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) @@ -43066,7 +43204,7 @@ paths: schema: type: string format: date-time - - &284 + - &286 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) @@ -43076,7 +43214,7 @@ paths: schema: type: string format: date-time - - &285 + - &287 name: token_id description: The ID of the token in: query @@ -43387,9 +43525,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: &286 + default: &288 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43526,14 +43664,14 @@ paths: - *78 - *17 - *19 - - *279 - - *62 - - *280 - *281 + - *62 - *282 - *283 - *284 - *285 + - *286 + - *287 responses: '500': *55 '422': *15 @@ -43813,9 +43951,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 x-github: @@ -43857,7 +43995,7 @@ paths: type: integer configurations: type: array - items: &287 + items: &289 title: Organization private registry description: Private registry configuration for an organization type: object @@ -44368,7 +44506,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &288 + org-private-registry-with-selected-visibility: &290 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -44458,15 +44596,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *287 + schema: *289 examples: - default: *288 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -44489,7 +44627,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -44677,7 +44815,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -44717,7 +44855,7 @@ paths: application/json: schema: type: array - items: &289 + items: &291 title: Projects v2 Project description: A projects v2 project type: object @@ -44787,7 +44925,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &802 + properties: &803 id: type: number description: The unique identifier of the status update. @@ -44835,7 +44973,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &803 + required: &804 - id - node_id - created_at @@ -44860,7 +44998,7 @@ paths: - deleted_at - deleted_by examples: - default: &290 + default: &292 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -44963,7 +45101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &291 + - &293 name: project_number description: The project's number. in: path @@ -44976,9 +45114,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -45001,7 +45139,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true description: Details of the draft item to create in the project. @@ -45035,7 +45173,7 @@ paths: description: Response content: application/json: - schema: &297 + schema: &299 title: Projects v2 Item description: An item belonging to a project type: object @@ -45049,7 +45187,7 @@ paths: content: oneOf: - *88 - - &492 + - &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -45155,8 +45293,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true active_lock_reason: type: string @@ -45188,7 +45326,7 @@ paths: items: *4 requested_teams: type: array - items: *208 + items: *210 head: type: object properties: @@ -45238,7 +45376,7 @@ paths: _links: type: object properties: - comments: &294 + comments: &296 title: Link description: Hypermedia Link type: object @@ -45247,13 +45385,13 @@ paths: type: string required: - href - commits: *294 - statuses: *294 - html: *294 - issue: *294 - review_comments: *294 - review_comment: *294 - self: *294 + commits: *296 + statuses: *296 + html: *296 + issue: *296 + review_comments: *296 + review_comment: *296 + self: *296 required: - comments - commits @@ -45264,7 +45402,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &603 + auto_merge: &605 title: Auto merge description: The status of auto merging a pull request. type: object @@ -45364,7 +45502,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &296 + content_type: &298 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -45404,7 +45542,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &298 + draft_issue: &300 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -45478,7 +45616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *291 + - *293 - *78 - *17 - *47 @@ -45490,7 +45628,7 @@ paths: application/json: schema: type: array - items: &295 + items: &297 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -45640,7 +45778,7 @@ paths: - updated_at - project_url examples: - default: &733 + default: &735 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45770,7 +45908,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *291 + - *293 - *78 requestBody: required: true @@ -45817,7 +45955,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &734 + items: &736 type: object properties: name: @@ -45854,7 +45992,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &735 + iteration_configuration: &737 type: object description: The configuration for iteration fields. properties: @@ -45904,7 +46042,7 @@ paths: value: name: Due date data_type: date - single_select_field: &736 + single_select_field: &738 summary: Create a single select field value: name: Priority @@ -45931,7 +46069,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &737 + iteration_field: &739 summary: Create an iteration field value: name: Sprint @@ -45955,9 +46093,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *295 + schema: *297 examples: - text_field: &738 + text_field: &740 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -45966,7 +46104,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &739 + number_field: &741 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -45975,7 +46113,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &740 + date_field: &742 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -45984,7 +46122,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &741 + single_select_field: &743 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46018,7 +46156,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &742 + iteration_field: &744 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46063,8 +46201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *291 - - &743 + - *293 + - &745 name: field_id description: The unique identifier of the field. in: path @@ -46077,9 +46215,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *297 examples: - default: &744 + default: &746 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46135,7 +46273,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *291 + - *293 - *78 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -46168,7 +46306,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Projects v2 Item description: An item belonging to a project type: object @@ -46184,7 +46322,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *296 + content_type: *298 content: type: object additionalProperties: true @@ -46227,7 +46365,7 @@ paths: - updated_at - archived_at examples: - default: &300 + default: &302 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -46925,7 +47063,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -46995,22 +47133,22 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *298 + value: *300 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *298 + value: *300 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *298 + value: *300 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *298 + value: *300 '304': *37 '403': *29 '401': *25 @@ -47030,9 +47168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *291 + - *293 - *78 - - &301 + - &303 name: item_id description: The unique identifier of the project item. in: path @@ -47058,9 +47196,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -47081,9 +47219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *291 + - *293 - *78 - - *301 + - *303 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47153,13 +47291,13 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - text_field: *300 - number_field: *300 - date_field: *300 - single_select_field: *300 - iteration_field: *300 + text_field: *302 + number_field: *302 + date_field: *302 + single_select_field: *302 + iteration_field: *302 '401': *25 '403': *29 '404': *6 @@ -47179,9 +47317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *291 + - *293 - *78 - - *301 + - *303 responses: '204': description: Response @@ -47205,7 +47343,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *78 - - *291 + - *293 requestBody: required: true content: @@ -47276,7 +47414,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &724 + schema: &726 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47374,7 +47512,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &302 + value: &304 value: id: 1 number: 1 @@ -47420,10 +47558,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *302 + value: *304 roadmap_view: summary: Response for creating a roadmap view - value: *302 + value: *304 '304': *37 '403': *29 '401': *25 @@ -47451,9 +47589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *291 + - *293 - *78 - - &745 + - &747 name: view_number description: The number that identifies the project view. in: path @@ -47485,9 +47623,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -47520,7 +47658,7 @@ paths: application/json: schema: type: array - items: &303 + items: &305 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -47588,7 +47726,7 @@ paths: - property_name - value_type examples: - default: &304 + default: &306 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -47648,7 +47786,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *303 + items: *305 minItems: 1 maxItems: 100 required: @@ -47678,9 +47816,9 @@ paths: application/json: schema: type: array - items: *303 + items: *305 examples: - default: *304 + default: *306 '403': *29 '404': *6 x-github: @@ -47702,7 +47840,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *78 - - &305 + - &307 name: custom_property_name description: The custom property name in: path @@ -47714,9 +47852,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *305 examples: - default: &306 + default: &308 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -47751,7 +47889,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *78 - - *305 + - *307 requestBody: required: true content: @@ -47822,9 +47960,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *305 examples: - default: *306 + default: *308 '403': *29 '404': *6 x-github: @@ -47848,7 +47986,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *78 - - *305 + - *307 responses: '204': *61 '403': *29 @@ -47909,7 +48047,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &307 + items: &309 title: Custom Property Value description: Custom property name and associated value type: object @@ -47996,7 +48134,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *307 + items: *309 required: - repository_names - properties @@ -48186,9 +48324,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 x-github: @@ -48390,7 +48528,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &360 title: Full Repository description: Full Repository type: object @@ -48675,8 +48813,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *308 - required: *309 + properties: *310 + required: *311 nullable: true temp_clone_token: type: string @@ -48788,7 +48926,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &497 + properties: &499 url: type: string format: uri @@ -48804,12 +48942,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &498 + required: &500 - url - key - name - html_url - security_and_analysis: *310 + security_and_analysis: *312 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -48893,7 +49031,7 @@ paths: - network_count - subscribers_count examples: - default: &360 + default: &362 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49414,7 +49552,7 @@ paths: - *78 - *17 - *19 - - &625 + - &627 name: targets description: | A comma-separated list of rule targets to filter by. @@ -49432,7 +49570,7 @@ paths: application/json: schema: type: array - items: &337 + items: &339 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -49467,7 +49605,7 @@ paths: source: type: string description: The name of the source - enforcement: &313 + enforcement: &315 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -49480,7 +49618,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &314 + items: &316 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -49551,7 +49689,7 @@ paths: conditions: nullable: true anyOf: - - &311 + - &313 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -49575,7 +49713,7 @@ paths: match. items: type: string - - &315 + - &317 title: Organization ruleset conditions type: object description: |- @@ -49589,7 +49727,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -49623,7 +49761,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -49645,7 +49783,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *311 + - *313 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -49658,7 +49796,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &312 + items: &314 title: Repository ruleset property targeting definition type: object @@ -49691,17 +49829,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *312 + items: *314 required: - repository_property rules: type: array - items: &626 + items: &628 title: Repository Rule type: object description: A repository rule. oneOf: - - &316 + - &318 title: creation description: Only allow users with bypass permission to create matching refs. @@ -49713,7 +49851,7 @@ paths: type: string enum: - creation - - &317 + - &319 title: update description: Only allow users with bypass permission to update matching refs. @@ -49734,7 +49872,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &318 + - &320 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -49746,7 +49884,7 @@ paths: type: string enum: - deletion - - &319 + - &321 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -49758,7 +49896,7 @@ paths: type: string enum: - required_linear_history - - &624 + - &626 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -49836,7 +49974,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &320 + - &322 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -49860,7 +49998,7 @@ paths: type: string required: - required_deployment_environments - - &321 + - &323 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -49872,7 +50010,7 @@ paths: type: string enum: - required_signatures - - &322 + - &324 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -49978,7 +50116,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &323 + - &325 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -50026,7 +50164,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &324 + - &326 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -50038,7 +50176,7 @@ paths: type: string enum: - non_fast_forward - - &325 + - &327 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -50075,7 +50213,7 @@ paths: required: - operator - pattern - - &326 + - &328 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -50112,7 +50250,7 @@ paths: required: - operator - pattern - - &327 + - &329 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -50149,7 +50287,7 @@ paths: required: - operator - pattern - - &328 + - &330 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -50186,7 +50324,7 @@ paths: required: - operator - pattern - - &329 + - &331 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -50223,7 +50361,7 @@ paths: required: - operator - pattern - - &334 + - &336 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -50273,7 +50411,7 @@ paths: - repository_id required: - workflows - - &335 + - &337 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -50334,7 +50472,7 @@ paths: - tool required: - code_scanning_tools - - &336 + - &338 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -50360,7 +50498,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &330 + - &332 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -50385,7 +50523,7 @@ paths: type: string required: - restricted_file_paths - - &331 + - &333 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -50409,7 +50547,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &332 + - &334 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -50432,7 +50570,7 @@ paths: type: string required: - restricted_file_extensions - - &333 + - &335 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -50530,22 +50668,20 @@ paths: - push - repository default: branch - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *315 + items: *316 + conditions: *317 rules: type: array description: An array of rules within the ruleset. - items: &339 + items: &341 title: Repository Rule type: object description: A repository rule. oneOf: - - *316 - - *317 - *318 - *319 - *320 @@ -50565,6 +50701,8 @@ paths: - *334 - *335 - *336 + - *337 + - *338 required: - name - enforcement @@ -50602,9 +50740,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: &338 + default: &340 value: id: 21 name: super cool ruleset @@ -50660,7 +50798,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &627 + - &629 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 @@ -50675,7 +50813,7 @@ paths: in: query schema: type: string - - &628 + - &630 name: time_period description: |- The time period to filter by. @@ -50691,14 +50829,14 @@ paths: - week - month default: day - - &629 + - &631 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 - - &630 + - &632 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -50711,7 +50849,7 @@ paths: - bypass - all default: all - - &631 + - &633 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -50734,7 +50872,7 @@ paths: description: Response content: application/json: - schema: &632 + schema: &634 title: Rule Suites description: Response type: array @@ -50789,7 +50927,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &633 + default: &635 value: - id: 21 actor_id: 12 @@ -50833,7 +50971,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &634 + - &636 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -50849,7 +50987,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &637 title: Rule Suite description: Response type: object @@ -50948,7 +51086,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &636 + default: &638 value: id: 21 actor_id: 12 @@ -51021,9 +51159,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *6 '500': *55 put: @@ -51067,16 +51205,16 @@ paths: - tag - push - repository - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *315 + items: *316 + conditions: *317 rules: description: An array of rules within the ruleset. type: array - items: *339 + items: *341 examples: default: value: @@ -51111,9 +51249,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *6 '422': *15 '500': *55 @@ -51171,7 +51309,7 @@ paths: application/json: schema: type: array - items: &340 + items: &342 title: Ruleset version type: object description: The historical version of a ruleset @@ -51195,7 +51333,7 @@ paths: type: string format: date-time examples: - default: &638 + default: &640 value: - version_id: 3 actor: @@ -51248,9 +51386,9 @@ paths: description: Response content: application/json: - schema: &639 + schema: &641 allOf: - - *340 + - *342 - type: object required: - state @@ -51320,7 +51458,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &640 + - &642 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51331,7 +51469,7 @@ paths: enum: - open - resolved - - &641 + - &643 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51341,7 +51479,7 @@ paths: required: false schema: type: string - - &642 + - &644 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51352,7 +51490,7 @@ paths: required: false schema: type: string - - &643 + - &645 name: exclude_providers in: query description: |- @@ -51363,7 +51501,7 @@ paths: required: false schema: type: string - - &644 + - &646 name: providers in: query description: |- @@ -51374,7 +51512,7 @@ paths: required: false schema: type: string - - &645 + - &647 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51383,7 +51521,7 @@ paths: required: false schema: type: string - - &646 + - &648 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51402,7 +51540,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &647 + - &649 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. @@ -51417,7 +51555,7 @@ paths: - *62 - *19 - *17 - - &648 + - &650 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 @@ -51427,7 +51565,7 @@ paths: required: false schema: type: string - - &649 + - &651 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 @@ -51437,7 +51575,7 @@ paths: required: false schema: type: string - - &650 + - &652 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51446,7 +51584,7 @@ paths: required: false schema: type: string - - &651 + - &653 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51455,7 +51593,7 @@ paths: schema: type: boolean default: false - - &652 + - &654 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51464,7 +51602,7 @@ paths: schema: type: boolean default: false - - &653 + - &655 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51473,7 +51611,7 @@ paths: schema: type: boolean default: false - - &654 + - &656 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51494,8 +51632,8 @@ paths: items: type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -51503,21 +51641,21 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &655 + state: &657 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: &656 + resolution: &658 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -51634,8 +51772,8 @@ paths: pull request. ' - oneOf: &657 - - &659 + oneOf: &659 + - &661 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -51693,7 +51831,7 @@ paths: - blob_url - commit_sha - commit_url - - &660 + - &662 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -51748,7 +51886,7 @@ paths: - page_url - commit_sha - commit_url - - &661 + - &663 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -51768,7 +51906,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &662 + - &664 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -51788,7 +51926,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &663 + - &665 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -51808,7 +51946,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &664 + - &666 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -51822,7 +51960,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &665 + - &667 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -51836,7 +51974,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &666 + - &668 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -51850,7 +51988,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &667 + - &669 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -51870,7 +52008,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &668 + - &670 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -51890,7 +52028,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &669 + - &671 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -51910,7 +52048,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &670 + - &672 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -51930,7 +52068,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &671 + - &673 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52193,7 +52331,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &342 + pattern_config_version: &344 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -52202,7 +52340,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &341 + items: &343 type: object properties: token_type: @@ -52268,7 +52406,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *341 + items: *343 examples: default: value: @@ -52325,7 +52463,7 @@ paths: schema: type: object properties: - pattern_config_version: *342 + pattern_config_version: *344 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -52351,7 +52489,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *342 + custom_pattern_version: *344 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -52449,7 +52587,7 @@ paths: application/json: schema: type: array - items: &675 + items: &677 description: A repository security advisory. type: object properties: @@ -52651,7 +52789,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 credits_detailed: type: array nullable: true @@ -52661,7 +52799,7 @@ paths: type: object properties: user: *4 - type: *343 + type: *345 state: type: string description: The state of the user's acceptance of the @@ -52685,7 +52823,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *208 + items: *210 private_fork: readOnly: true nullable: true @@ -52721,7 +52859,7 @@ paths: - private_fork additionalProperties: false examples: - default: &676 + default: &678 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -53108,7 +53246,7 @@ paths: application/json: schema: type: array - items: *344 + items: *346 examples: default: value: @@ -53326,9 +53464,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53397,7 +53535,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -53420,7 +53558,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -53461,7 +53599,7 @@ paths: type: integer network_configurations: type: array - items: &345 + items: &347 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -53607,9 +53745,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: &346 + default: &348 value: id: 123456789ABCDEF name: My network configuration @@ -53638,7 +53776,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - &347 + - &349 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -53650,9 +53788,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 headers: Link: *70 x-github: @@ -53674,7 +53812,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - *347 + - *349 requestBody: required: true content: @@ -53727,9 +53865,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53749,7 +53887,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *78 - - *347 + - *349 responses: '204': description: Response @@ -53889,13 +54027,13 @@ paths: application/json: schema: type: array - items: *348 + items: *350 examples: - default: *349 + default: *351 '500': *55 '403': *29 '404': *6 - '422': *350 + '422': *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53935,9 +54073,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 headers: Link: *70 '403': *29 @@ -54023,7 +54161,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &353 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -54086,8 +54224,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *270 - required: *271 + properties: *272 + required: *273 nullable: true members_count: type: integer @@ -54350,7 +54488,7 @@ paths: - repos_count - organization examples: - default: &352 + default: &354 value: id: 1 node_id: MDQ6VGVhbTE= @@ -54427,9 +54565,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 x-github: githubCloudOnly: false @@ -54513,16 +54651,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '201': description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 '422': *15 '403': *29 @@ -54552,7 +54690,7 @@ paths: responses: '204': description: Response - '422': &353 + '422': &355 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -54586,12 +54724,12 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 - '422': *353 + '422': *355 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54673,7 +54811,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &356 title: Team Membership description: Team Membership type: object @@ -54700,7 +54838,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &691 + response-if-user-is-a-team-maintainer: &693 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -54763,9 +54901,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: &692 + response-if-users-membership-with-team-is-now-pending: &694 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -54839,9 +54977,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 x-github: @@ -54872,14 +55010,14 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &693 + schema: &695 title: Team Repository description: A team's access to a repository. type: object @@ -55443,8 +55581,8 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -55491,8 +55629,8 @@ paths: parameters: - *78 - *80 - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -55527,9 +55665,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: &694 + response-if-child-teams-exist: &696 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -55683,7 +55821,7 @@ paths: resources: type: object properties: - core: &357 + core: &359 title: Rate Limit type: object properties: @@ -55700,17 +55838,17 @@ paths: - remaining - reset - used - graphql: *357 - search: *357 - code_search: *357 - source_import: *357 - integration_manifest: *357 - code_scanning_upload: *357 - actions_runner_registration: *357 - scim: *357 - dependency_snapshots: *357 - dependency_sbom: *357 - code_scanning_autofix: *357 + graphql: *359 + search: *359 + code_search: *359 + source_import: *359 + integration_manifest: *359 + code_scanning_upload: *359 + actions_runner_registration: *359 + scim: *359 + dependency_snapshots: *359 + dependency_sbom: *359 + code_scanning_autofix: *359 required: - core - search @@ -55812,14 +55950,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *358 + schema: *360 examples: default-response: summary: Default response @@ -56323,7 +56461,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56341,8 +56479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -56640,10 +56778,10 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 - '307': &361 + default: *362 + '307': &363 description: Temporary Redirect content: application/json: @@ -56672,8 +56810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -56695,7 +56833,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *361 + '307': *363 '404': *6 '409': *54 x-github: @@ -56719,11 +56857,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - - &393 + - &395 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -56746,7 +56884,7 @@ paths: type: integer artifacts: type: array - items: &362 + items: &364 title: Artifact description: An artifact type: object @@ -56824,7 +56962,7 @@ paths: - expires_at - updated_at examples: - default: &394 + default: &396 value: total_count: 2 artifacts: @@ -56885,9 +57023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *355 - - *356 - - &363 + - *357 + - *358 + - &365 name: artifact_id description: The unique identifier of the artifact. in: path @@ -56899,7 +57037,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *364 examples: default: value: @@ -56937,9 +57075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *355 - - *356 - - *363 + - *357 + - *358 + - *365 responses: '204': description: Response @@ -56963,9 +57101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *355 - - *356 - - *363 + - *357 + - *358 + - *365 - name: archive_format in: path required: true @@ -56975,11 +57113,11 @@ paths: '302': description: Response headers: - Location: &516 + Location: &518 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': &555 + '410': &557 description: Gone content: application/json: @@ -57004,14 +57142,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &364 + schema: &366 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -57044,13 +57182,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *364 + schema: *366 examples: selected_actions: *42 responses: @@ -57079,14 +57217,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &365 + schema: &367 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -57119,13 +57257,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *365 + schema: *367 examples: selected_actions: *44 responses: @@ -57156,14 +57294,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -57189,11 +57327,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - - &367 + - &369 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 @@ -57227,7 +57365,7 @@ paths: description: Response content: application/json: - schema: &368 + schema: &370 title: Repository actions caches description: Repository actions caches type: object @@ -57269,7 +57407,7 @@ paths: - total_count - actions_caches examples: - default: &369 + default: &371 value: total_count: 1 actions_caches: @@ -57301,23 +57439,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: - - *355 - - *356 + - *357 + - *358 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *367 + - *369 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *369 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57337,8 +57475,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: - - *355 - - *356 + - *357 + - *358 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -57367,8 +57505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *48 responses: @@ -57450,8 +57588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -57603,9 +57741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *355 - - *356 - - &370 + - *357 + - *358 + - &372 name: job_id description: The unique identifier of the job. in: path @@ -57617,7 +57755,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &399 title: Job description: Information of a job execution in a workflow run type: object @@ -57924,9 +58062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *355 - - *356 - - *370 + - *357 + - *358 + - *372 responses: '302': description: Response @@ -57954,9 +58092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *355 - - *356 - - *370 + - *357 + - *358 + - *372 requestBody: required: false content: @@ -57982,7 +58120,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -58006,8 +58144,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Status response @@ -58066,8 +58204,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -58106,7 +58244,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -58135,8 +58273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -58154,7 +58292,7 @@ paths: type: integer secrets: type: array - items: &399 + items: &401 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -58174,7 +58312,7 @@ paths: - created_at - updated_at examples: - default: &400 + default: &402 value: total_count: 2 secrets: @@ -58207,9 +58345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -58226,7 +58364,7 @@ paths: type: integer variables: type: array - items: &401 + items: &403 title: Actions Variable type: object properties: @@ -58256,7 +58394,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &404 value: total_count: 2 variables: @@ -58289,8 +58427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -58299,12 +58437,12 @@ paths: schema: type: object properties: - enabled: &372 + enabled: &374 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *146 - selected_actions_url: *371 - sha_pinning_required: *147 + allowed_actions: *148 + selected_actions_url: *373 + sha_pinning_required: *149 required: - enabled examples: @@ -58332,8 +58470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -58344,9 +58482,9 @@ paths: schema: type: object properties: - enabled: *372 - allowed_actions: *146 - sha_pinning_required: *147 + enabled: *374 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled examples: @@ -58376,14 +58514,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &373 + schema: &375 type: object properties: access_level: @@ -58400,7 +58538,7 @@ paths: required: - access_level examples: - default: &374 + default: &376 value: access_level: organization x-github: @@ -58424,15 +58562,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 responses: '204': description: Response @@ -58456,14 +58594,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -58487,8 +58625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Empty response for successful settings update @@ -58498,7 +58636,7 @@ paths: required: true content: application/json: - schema: *376 + schema: *378 examples: default: summary: Set retention days @@ -58522,16 +58660,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *377 + default: *379 '404': *6 x-github: enabledForGitHubApps: true @@ -58550,8 +58688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -58561,7 +58699,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -58585,16 +58723,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: - default: *149 + default: *151 '403': *29 '404': *6 x-github: @@ -58614,15 +58752,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *379 + schema: *381 examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -58646,16 +58784,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58674,8 +58812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -58683,9 +58821,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58707,16 +58845,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *380 + schema: *382 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58737,8 +58875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Success response @@ -58749,9 +58887,9 @@ paths: required: true content: application/json: - schema: *381 + schema: *383 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58778,8 +58916,8 @@ paths: in: query schema: type: string - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -58797,9 +58935,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -58823,8 +58961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -58832,9 +58970,9 @@ paths: application/json: schema: type: array - items: *382 + items: *384 examples: - default: *383 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58856,8 +58994,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -58900,7 +59038,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *384 + '201': *386 '404': *6 '422': *7 '409': *54 @@ -58931,16 +59069,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *385 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58968,16 +59106,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *386 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58999,17 +59137,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *387 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59030,9 +59168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: '204': description: Response @@ -59058,11 +59196,11 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: - '200': *167 + '200': *169 '404': *6 x-github: githubCloudOnly: false @@ -59084,9 +59222,9 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 requestBody: required: true content: @@ -59110,7 +59248,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59134,9 +59272,9 @@ 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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 requestBody: required: true content: @@ -59161,7 +59299,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59185,11 +59323,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: - - *355 - - *356 - - *162 + - *357 + - *358 + - *164 responses: - '200': *388 + '200': *390 '404': *6 x-github: githubCloudOnly: false @@ -59216,12 +59354,12 @@ 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: - - *355 - - *356 - - *162 - - *389 + - *357 + - *358 + - *164 + - *391 responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -59247,9 +59385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *355 - - *356 - - &405 + - *357 + - *358 + - &407 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. @@ -59257,7 +59395,7 @@ paths: required: false schema: type: string - - &406 + - &408 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -59265,7 +59403,7 @@ paths: required: false schema: type: string - - &407 + - &409 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -59274,7 +59412,7 @@ paths: required: false schema: type: string - - &408 + - &410 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 @@ -59301,7 +59439,7 @@ paths: - pending - *17 - *19 - - &409 + - &411 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)." @@ -59310,7 +59448,7 @@ paths: schema: type: string format: date-time - - &390 + - &392 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -59319,13 +59457,13 @@ paths: schema: type: boolean default: false - - &410 + - &412 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &411 + - &413 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -59348,7 +59486,7 @@ paths: type: integer workflow_runs: type: array - items: &391 + items: &393 title: Workflow Run description: An invocation of a workflow type: object @@ -59496,7 +59634,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &435 + properties: &437 id: type: string description: SHA for the commit @@ -59547,7 +59685,7 @@ paths: - name - email nullable: true - required: &436 + required: &438 - id - tree_id - message @@ -59555,8 +59693,8 @@ paths: - author - committer nullable: true - repository: *161 - head_repository: *161 + repository: *163 + head_repository: *163 head_repository_id: type: integer example: 5 @@ -59594,7 +59732,7 @@ paths: - workflow_url - pull_requests examples: - default: &412 + default: &414 value: total_count: 1 workflow_runs: @@ -59830,24 +59968,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *355 - - *356 - - &392 + - *357 + - *358 + - &394 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *390 + - *392 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &395 + default: &397 value: id: 30433642 name: Build @@ -60088,9 +60226,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '204': description: Response @@ -60113,9 +60251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -60234,15 +60372,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -60269,12 +60407,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - *17 - *19 - - *393 + - *395 - *62 responses: '200': @@ -60291,9 +60429,9 @@ paths: type: integer artifacts: type: array - items: *362 + items: *364 examples: - default: *394 + default: *396 headers: Link: *70 x-github: @@ -60317,25 +60455,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *355 - - *356 - - *392 - - &396 + - *357 + - *358 + - *394 + - &398 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *390 + - *392 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *395 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60358,10 +60496,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *355 - - *356 - - *392 - - *396 + - *357 + - *358 + - *394 + - *398 - *17 - *19 responses: @@ -60379,9 +60517,9 @@ paths: type: integer jobs: type: array - items: *397 + items: *399 examples: - default: &398 + default: &400 value: total_count: 1 jobs: @@ -60494,10 +60632,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *355 - - *356 - - *392 - - *396 + - *357 + - *358 + - *394 + - *398 responses: '302': description: Response @@ -60525,15 +60663,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -60573,9 +60711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - *17 - *47 - *48 @@ -60746,9 +60884,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: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: true content: @@ -60815,15 +60953,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -60850,9 +60988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 - 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 @@ -60882,9 +61020,9 @@ paths: type: integer jobs: type: array - items: *397 + items: *399 examples: - default: *398 + default: *400 headers: Link: *70 x-github: @@ -60909,9 +61047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '302': description: Response @@ -60938,9 +61076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '204': description: Response @@ -60967,9 +61105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -61029,7 +61167,7 @@ paths: items: type: object properties: - type: &523 + type: &525 type: string description: The type of reviewer. enum: @@ -61039,7 +61177,7 @@ paths: reviewer: anyOf: - *4 - - *208 + - *210 required: - environment - wait_timer @@ -61114,9 +61252,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: true content: @@ -61163,12 +61301,12 @@ paths: application/json: schema: type: array - items: &518 + items: &520 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &765 + properties: &766 url: type: string format: uri @@ -61253,7 +61391,7 @@ paths: nullable: true properties: *83 required: *84 - required: &766 + required: &767 - id - node_id - sha @@ -61269,7 +61407,7 @@ paths: - created_at - updated_at examples: - default: &519 + default: &521 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -61325,9 +61463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: false content: @@ -61348,7 +61486,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61371,9 +61509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 requestBody: required: false content: @@ -61394,7 +61532,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61426,9 +61564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *355 - - *356 - - *392 + - *357 + - *358 + - *394 responses: '200': description: Response @@ -61565,8 +61703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -61584,9 +61722,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -61611,16 +61749,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61642,17 +61780,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: &413 + default: &415 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -61678,9 +61816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -61711,7 +61849,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61737,9 +61875,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -61764,9 +61902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -61783,9 +61921,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -61808,8 +61946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -61836,7 +61974,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61861,17 +61999,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: &414 + default: &416 value: name: USERNAME value: octocat @@ -61897,9 +62035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 requestBody: required: true content: @@ -61941,9 +62079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '204': description: Response @@ -61968,8 +62106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -61987,7 +62125,7 @@ paths: type: integer workflows: type: array - items: &403 + items: &405 title: Workflow description: A GitHub Actions workflow type: object @@ -62094,9 +62232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *355 - - *356 - - &404 + - *357 + - *358 + - &406 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -62111,7 +62249,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *405 examples: default: value: @@ -62144,9 +62282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '204': description: Response @@ -62171,9 +62309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '200': description: Response including the workflow run ID and URLs. @@ -62253,9 +62391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '204': description: Response @@ -62282,19 +62420,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *355 - - *356 - - *404 - - *405 + - *357 + - *358 - *406 - *407 - *408 - - *17 - - *19 - *409 - - *390 - *410 + - *17 + - *19 - *411 + - *392 + - *412 + - *413 responses: '200': description: Response @@ -62310,9 +62448,9 @@ paths: type: integer workflow_runs: type: array - items: *391 + items: *393 examples: - default: *412 + default: *414 headers: Link: *70 x-github: @@ -62344,9 +62482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *355 - - *356 - - *404 + - *357 + - *358 + - *406 responses: '200': description: Response @@ -62407,8 +62545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *355 - - *356 + - *357 + - *358 - *62 - *17 - *47 @@ -62577,8 +62715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -62596,9 +62734,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -62622,9 +62760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -62641,9 +62779,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -62668,8 +62806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -62687,9 +62825,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -62714,16 +62852,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62745,17 +62883,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: *413 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62777,9 +62915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -62810,7 +62948,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62836,9 +62974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -62863,9 +63001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *355 - - *356 - - *178 + - *357 + - *358 + - *180 - *19 responses: '200': @@ -62882,9 +63020,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -62907,8 +63045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -62935,7 +63073,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62960,17 +63098,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *414 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62991,9 +63129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 requestBody: required: true content: @@ -63035,9 +63173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *355 - - *356 - - *172 + - *357 + - *358 + - *174 responses: '204': description: Response @@ -63058,8 +63196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -63096,8 +63234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *355 - - *356 + - *357 + - *358 - name: assignee in: path required: true @@ -63133,8 +63271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -63244,8 +63382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *47 - *48 @@ -63286,7 +63424,7 @@ paths: initiator: type: string examples: - default: *415 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63306,8 +63444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -63315,7 +63453,7 @@ paths: application/json: schema: type: array - items: &416 + items: &418 title: Autolink reference description: An autolink reference. type: object @@ -63369,8 +63507,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -63409,9 +63547,9 @@ paths: description: response content: application/json: - schema: *416 + schema: *418 examples: - default: &417 + default: &419 value: id: 1 key_prefix: TICKET- @@ -63442,9 +63580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *355 - - *356 - - &418 + - *357 + - *358 + - &420 name: autolink_id description: The unique identifier of the autolink. in: path @@ -63456,9 +63594,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: *417 + default: *419 '404': *6 x-github: githubCloudOnly: false @@ -63478,9 +63616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *355 - - *356 - - *418 + - *357 + - *358 + - *420 responses: '204': description: Response @@ -63504,8 +63642,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response if Dependabot is enabled @@ -63553,8 +63691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -63575,8 +63713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -63596,8 +63734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *355 - - *356 + - *357 + - *358 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -63635,7 +63773,7 @@ paths: - url protected: type: boolean - protection: &420 + protection: &422 title: Branch Protection description: Branch Protection type: object @@ -63677,7 +63815,7 @@ paths: required: - contexts - checks - enforce_admins: &423 + enforce_admins: &425 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -63692,7 +63830,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &425 + required_pull_request_reviews: &427 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -63713,7 +63851,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *208 + items: *210 apps: description: The list of apps with review dismissal access. @@ -63742,7 +63880,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *208 + items: *210 apps: description: The list of apps allowed to bypass pull request requirements. @@ -63768,7 +63906,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &422 + restrictions: &424 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -63831,7 +63969,7 @@ paths: type: string teams: type: array - items: *208 + items: *210 apps: type: array items: @@ -64045,9 +64183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *355 - - *356 - - &421 + - *357 + - *358 + - &423 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). @@ -64061,14 +64199,14 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &488 + commit: &490 title: Commit description: Commit type: object @@ -64102,7 +64240,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &419 + properties: &421 name: type: string example: '"Chris Wanstrath"' @@ -64118,7 +64256,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true message: type: string @@ -64139,7 +64277,7 @@ paths: required: - sha - url - verification: &541 + verification: &543 title: Verification type: object properties: @@ -64173,12 +64311,12 @@ paths: nullable: true oneOf: - *4 - - *170 + - *172 committer: nullable: true oneOf: - *4 - - *170 + - *172 parents: type: array items: @@ -64209,7 +64347,7 @@ paths: type: integer files: type: array - items: &501 + items: &503 title: Diff Entry description: Diff Entry type: object @@ -64293,7 +64431,7 @@ paths: - self protected: type: boolean - protection: *420 + protection: *422 protection_url: type: string format: uri @@ -64400,7 +64538,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *359 + '301': *361 '404': *6 x-github: githubCloudOnly: false @@ -64422,15 +64560,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *420 + schema: *422 examples: default: value: @@ -64624,9 +64762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -64881,7 +65019,7 @@ paths: url: type: string format: uri - required_status_checks: &428 + required_status_checks: &430 title: Status Check Policy description: Status Check Policy type: object @@ -64957,7 +65095,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -64975,7 +65113,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -65033,7 +65171,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *422 + restrictions: *424 required_conversation_resolution: type: object properties: @@ -65145,9 +65283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65172,17 +65310,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: &424 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -65204,17 +65342,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65233,9 +65371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65260,17 +65398,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: &426 + default: &428 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -65366,9 +65504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -65466,9 +65604,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 '422': *15 x-github: githubCloudOnly: false @@ -65489,9 +65627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65518,17 +65656,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: &427 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -65551,17 +65689,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *423 + schema: *425 examples: - default: *427 + default: *429 '404': *6 x-github: githubCloudOnly: false @@ -65581,9 +65719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65608,17 +65746,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *428 + schema: *430 examples: - default: &429 + default: &431 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -65644,9 +65782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -65698,9 +65836,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *430 examples: - default: *429 + default: *431 '404': *6 '422': *15 x-github: @@ -65722,9 +65860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -65748,9 +65886,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -65784,9 +65922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -65853,9 +65991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -65919,9 +66057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: content: application/json: @@ -65987,15 +66125,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response content: application/json: - schema: *422 + schema: *424 examples: default: value: @@ -66086,9 +66224,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '204': description: Response @@ -66111,9 +66249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66123,7 +66261,7 @@ paths: type: array items: *5 examples: - default: &430 + default: &432 value: - id: 1 slug: octoapp @@ -66180,9 +66318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66216,7 +66354,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66237,9 +66375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66273,7 +66411,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66294,9 +66432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66330,7 +66468,7 @@ paths: type: array items: *5 examples: - default: *430 + default: *432 '422': *15 x-github: githubCloudOnly: false @@ -66352,9 +66490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66362,9 +66500,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '404': *6 x-github: githubCloudOnly: false @@ -66384,9 +66522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66422,9 +66560,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66445,9 +66583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: false content: @@ -66483,9 +66621,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66506,9 +66644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: content: application/json: @@ -66543,9 +66681,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 '422': *15 x-github: githubCloudOnly: false @@ -66567,9 +66705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 responses: '200': description: Response @@ -66603,9 +66741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66663,9 +66801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66723,9 +66861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66785,9 +66923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 requestBody: required: true content: @@ -66809,7 +66947,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: default: value: @@ -66925,8 +67063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -67205,7 +67343,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &434 title: CheckRun description: A check performed on the code of a given code change type: object @@ -67325,7 +67463,7 @@ paths: check. type: array items: *93 - deployment: &758 + deployment: &759 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -67605,9 +67743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *355 - - *356 - - &433 + - *357 + - *358 + - &435 name: check_run_id description: The unique identifier of the check run. in: path @@ -67619,9 +67757,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *434 examples: - default: &434 + default: &436 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -67721,9 +67859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 requestBody: required: true content: @@ -67963,9 +68101,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *434 examples: - default: *434 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67985,9 +68123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 - *17 - *19 responses: @@ -68082,15 +68220,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *355 - - *356 - - *433 + - *357 + - *358 + - *435 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -68128,8 +68266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -68151,7 +68289,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &437 + schema: &439 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -68228,7 +68366,7 @@ paths: nullable: true properties: *83 required: *84 - repository: *161 + repository: *163 created_at: type: string format: date-time @@ -68237,12 +68375,12 @@ paths: type: string format: date-time nullable: true - head_commit: &786 + head_commit: &787 title: Simple Commit description: A commit. type: object - properties: *435 - required: *436 + properties: *437 + required: *438 latest_check_runs_count: type: integer check_runs_url: @@ -68270,7 +68408,7 @@ paths: - check_runs_url - pull_requests examples: - default: &438 + default: &440 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -68561,9 +68699,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68582,8 +68720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -68644,7 +68782,7 @@ paths: required: - app_id - setting - repository: *161 + repository: *163 examples: default: value: @@ -68892,9 +69030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *355 - - *356 - - &439 + - *357 + - *358 + - &441 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -68906,9 +69044,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68931,17 +69069,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *355 - - *356 - - *439 - - &494 + - *357 + - *358 + - *441 + - &496 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &495 + - &497 name: status description: Returns check runs with the specified `status`. in: query @@ -68980,9 +69118,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *434 examples: - default: &496 + default: &498 value: total_count: 1 check_runs: @@ -69084,15 +69222,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *355 - - *356 - - *439 + - *357 + - *358 + - *441 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -69115,8 +69253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -69206,8 +69344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -69268,7 +69406,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -69335,21 +69473,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *355 - - *356 - - *440 - - *441 + - *357 + - *358 + - *442 + - *443 - *19 - *17 - - &458 + - &460 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: *442 - - &459 + schema: *444 + - &461 name: pr description: The number of the pull request for the results you want to list. in: query @@ -69374,13 +69512,13 @@ paths: be returned. in: query required: false - schema: *443 + schema: *445 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *444 + schema: *446 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -69399,14 +69537,14 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *445 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *447 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -69414,12 +69552,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *446 - dismissed_comment: *447 - rule: *448 - tool: *449 - most_recent_instance: *450 + dismissed_at: *194 + dismissed_reason: *448 + dismissed_comment: *449 + rule: *450 + tool: *451 + most_recent_instance: *452 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69545,7 +69683,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &451 + '403': &453 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -69572,9 +69710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *355 - - *356 - - &452 + - *357 + - *358 + - &454 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -69582,23 +69720,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: &453 + schema: &455 type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *445 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *447 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -69606,9 +69744,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *446 - dismissed_comment: *447 + dismissed_at: *194 + dismissed_reason: *448 + dismissed_comment: *449 rule: type: object properties: @@ -69662,8 +69800,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *449 - most_recent_instance: *450 + tool: *451 + most_recent_instance: *452 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69762,7 +69900,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -69782,9 +69920,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: true content: @@ -69799,8 +69937,8 @@ paths: enum: - open - dismissed - dismissed_reason: *446 - dismissed_comment: *447 + dismissed_reason: *448 + dismissed_comment: *449 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -69828,7 +69966,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: default: value: @@ -69904,7 +70042,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &457 + '403': &459 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -69931,15 +70069,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 responses: '200': description: Response content: application/json: - schema: &454 + schema: &456 type: object properties: status: @@ -69965,13 +70103,13 @@ paths: - description - started_at examples: - default: &455 + default: &457 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &456 + '400': &458 description: Bad Request content: application/json: @@ -69982,7 +70120,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': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70007,29 +70145,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 responses: '200': description: OK content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 '202': description: Accepted content: application/json: - schema: *454 + schema: *456 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *456 + '400': *458 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -70061,9 +70199,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: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: false content: @@ -70108,8 +70246,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *456 - '403': *457 + '400': *458 + '403': *459 '404': *6 '422': description: Unprocessable Entity @@ -70133,13 +70271,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 - *19 - *17 - - *458 - - *459 + - *460 + - *461 responses: '200': description: Response @@ -70150,10 +70288,10 @@ paths: items: type: object properties: - ref: *442 - analysis_key: *460 - environment: *461 - category: *462 + ref: *444 + analysis_key: *462 + environment: *463 + category: *464 state: type: string description: State of a code scanning alert instance. @@ -70168,7 +70306,7 @@ paths: properties: text: type: string - location: *463 + location: *465 html_url: type: string classifications: @@ -70176,7 +70314,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *464 + items: *466 examples: default: value: @@ -70213,7 +70351,7 @@ paths: end_column: 50 classifications: - source - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70247,25 +70385,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *355 - - *356 - - *440 - - *441 + - *357 + - *358 + - *442 + - *443 - *19 - *17 - - *459 + - *461 - 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: *442 + schema: *444 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &465 + schema: &467 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -70286,23 +70424,23 @@ paths: application/json: schema: type: array - items: &466 + items: &468 type: object properties: - ref: *442 - commit_sha: &474 + ref: *444 + commit_sha: &476 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *460 + analysis_key: *462 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *462 + category: *464 error: type: string example: error reading field xyz @@ -70326,8 +70464,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *465 - tool: *449 + sarif_id: *467 + tool: *451 deletable: type: boolean warning: @@ -70388,7 +70526,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70424,8 +70562,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: - - *355 - - *356 + - *357 + - *358 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70438,7 +70576,7 @@ paths: description: Response content: application/json: - schema: *466 + schema: *468 examples: response: summary: application/json response @@ -70492,7 +70630,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *451 + '403': *453 '404': *6 '422': description: Response if analysis could not be processed @@ -70579,8 +70717,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: - - *355 - - *356 + - *357 + - *358 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70633,7 +70771,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': *457 + '403': *459 '404': *6 '503': *122 x-github: @@ -70655,8 +70793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -70664,7 +70802,7 @@ paths: application/json: schema: type: array - items: &467 + items: &469 title: CodeQL Database description: A CodeQL database. type: object @@ -70775,7 +70913,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': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70804,8 +70942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: language in: path description: The language of the CodeQL database. @@ -70817,7 +70955,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: default: value: @@ -70849,9 +70987,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': &505 + '302': &507 description: Found - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -70873,8 +71011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *355 - - *356 + - *357 + - *358 - name: language in: path description: The language of the CodeQL database. @@ -70884,7 +71022,7 @@ paths: responses: '204': description: Response - '403': *457 + '403': *459 '404': *6 '503': *122 x-github: @@ -70912,8 +71050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -70922,7 +71060,7 @@ paths: type: object additionalProperties: false properties: - language: &468 + language: &470 type: string description: The language targeted by the CodeQL query enum: @@ -71002,7 +71140,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &472 + schema: &474 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -71012,7 +71150,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *468 + query_language: *470 query_pack_url: type: string description: The download url for the query pack. @@ -71059,7 +71197,7 @@ paths: items: type: object properties: - repository: &469 + repository: &471 title: Repository Identifier description: Repository Identifier type: object @@ -71095,7 +71233,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &473 + analysis_status: &475 type: string description: The new status of the CodeQL variant analysis repository task. @@ -71127,7 +71265,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &470 + access_mismatch_repos: &472 type: object properties: repository_count: @@ -71141,7 +71279,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: *469 + items: *471 required: - repository_count - repositories @@ -71163,8 +71301,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *470 - over_limit_repos: *470 + no_codeql_db_repos: *472 + over_limit_repos: *472 required: - access_mismatch_repos - not_found_repos @@ -71180,7 +71318,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &471 + value: &473 summary: Default response value: id: 1 @@ -71326,10 +71464,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *471 + value: *473 repository_lists: summary: Response for a successful variant analysis submission - value: *471 + value: *473 '404': *6 '422': description: Unable to process variant analysis submission @@ -71357,8 +71495,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: - - *355 - - *356 + - *357 + - *358 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -71370,9 +71508,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *471 + default: *473 '404': *6 '503': *122 x-github: @@ -71395,7 +71533,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: - - *355 + - *357 - name: repo in: path description: The name of the controller repository. @@ -71430,7 +71568,7 @@ paths: type: object properties: repository: *67 - analysis_status: *473 + analysis_status: *475 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -71555,8 +71693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -71639,7 +71777,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *451 + '403': *453 '404': *6 '503': *122 x-github: @@ -71660,8 +71798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -71728,7 +71866,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -71753,7 +71891,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *457 + '403': *459 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -71824,8 +71962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -71833,7 +71971,7 @@ paths: schema: type: object properties: - commit_sha: *474 + commit_sha: *476 ref: type: string description: |- @@ -71891,7 +72029,7 @@ paths: schema: type: object properties: - id: *465 + id: *467 url: type: string description: The REST API URL for checking the status of the upload. @@ -71905,7 +72043,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': *457 + '403': *459 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -71928,8 +72066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *355 - - *356 + - *357 + - *358 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -71975,7 +72113,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': *451 + '403': *453 '404': description: Not Found if the sarif id does not match any upload '503': *122 @@ -72000,8 +72138,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72082,8 +72220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *355 - - *356 + - *357 + - *358 - 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 @@ -72203,8 +72341,8 @@ paths: parameters: - *17 - *19 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72220,7 +72358,7 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: default: value: @@ -72518,8 +72656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -72582,17 +72720,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '400': *14 '401': *25 '403': *29 @@ -72621,8 +72759,8 @@ paths: parameters: - *17 - *19 - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -72686,8 +72824,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -72722,14 +72860,14 @@ paths: type: integer machines: type: array - items: &699 + items: &701 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *476 - required: *477 + properties: *478 + required: *479 examples: - default: &700 + default: &702 value: total_count: 2 machines: @@ -72769,8 +72907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *355 - - *356 + - *357 + - *358 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -72854,8 +72992,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: - - *355 - - *356 + - *357 + - *358 - 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 @@ -72921,8 +73059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -72940,7 +73078,7 @@ paths: type: integer secrets: type: array - items: &481 + items: &483 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -72960,7 +73098,7 @@ paths: - created_at - updated_at examples: - default: *478 + default: *480 headers: Link: *70 x-github: @@ -72983,16 +73121,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -73012,17 +73150,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *482 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73042,9 +73180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -73072,7 +73210,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -73096,9 +73234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -73126,8 +73264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *355 - - *356 + - *357 + - *358 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -73169,7 +73307,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &483 + properties: &485 login: type: string example: octocat @@ -73262,7 +73400,7 @@ paths: user_view_type: type: string example: public - required: &484 + required: &486 - avatar_url - events_url - followers_url @@ -73336,8 +73474,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '204': @@ -73384,8 +73522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 requestBody: required: false @@ -73412,7 +73550,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &554 + schema: &556 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -73423,7 +73561,7 @@ paths: example: 42 type: integer format: int64 - repository: *161 + repository: *163 invitee: title: Simple User description: A GitHub user. @@ -73601,7 +73739,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *130 + schema: *132 '403': *29 x-github: triggersNotification: true @@ -73641,8 +73779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '204': @@ -73674,8 +73812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *355 - - *356 + - *357 + - *358 - *74 responses: '200': @@ -73696,8 +73834,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *483 - required: *484 + properties: *485 + required: *486 nullable: true required: - permission @@ -73752,8 +73890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -73763,7 +73901,7 @@ paths: application/json: schema: type: array - items: &485 + items: &487 title: Commit Comment description: Commit Comment type: object @@ -73821,7 +73959,7 @@ paths: - created_at - updated_at examples: - default: &490 + default: &492 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73880,17 +74018,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: &491 + default: &493 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73947,8 +74085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -73971,7 +74109,7 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: default: value: @@ -74022,8 +74160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -74045,8 +74183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -74073,7 +74211,7 @@ paths: application/json: schema: type: array - items: &486 + items: &488 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -74116,7 +74254,7 @@ paths: - content - created_at examples: - default: &558 + default: &560 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -74161,8 +74299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -74195,9 +74333,9 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: &487 + default: &489 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -74226,9 +74364,9 @@ paths: description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -74250,10 +74388,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - &559 + - &561 name: reaction_id description: The unique identifier of the reaction. in: path @@ -74308,8 +74446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *355 - - *356 + - *357 + - *358 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -74365,9 +74503,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: &610 + default: &612 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74461,9 +74599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *355 - - *356 - - &489 + - *357 + - *358 + - &491 name: commit_sha description: The SHA of the commit. in: path @@ -74535,9 +74673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 - *17 - *19 responses: @@ -74547,9 +74685,9 @@ paths: application/json: schema: type: array - items: *485 + items: *487 examples: - default: *490 + default: *492 headers: Link: *70 x-github: @@ -74577,9 +74715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 requestBody: required: true content: @@ -74614,9 +74752,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: *491 + default: *493 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74644,9 +74782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 - *17 - *19 responses: @@ -74656,9 +74794,9 @@ paths: application/json: schema: type: array - items: *492 + items: *494 examples: - default: &602 + default: &604 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -75195,11 +75333,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 - - &493 + - &495 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)" @@ -75214,9 +75352,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: &589 + default: &591 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75304,7 +75442,7 @@ paths: schema: type: string examples: - default: &502 + default: &504 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -75317,7 +75455,7 @@ paths: schema: type: string examples: - default: &503 + default: &505 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -75370,11 +75508,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *355 - - *356 - - *493 - - *494 + - *357 + - *358 - *495 + - *496 + - *497 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -75408,9 +75546,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *434 examples: - default: *496 + default: *498 headers: Link: *70 x-github: @@ -75435,9 +75573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -75445,7 +75583,7 @@ paths: schema: type: integer example: 1 - - *494 + - *496 - *17 - *19 responses: @@ -75463,7 +75601,7 @@ paths: type: integer check_suites: type: array - items: *437 + items: *439 examples: default: value: @@ -75663,9 +75801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - *17 - *19 responses: @@ -75732,7 +75870,7 @@ paths: type: string total_count: type: integer - repository: *161 + repository: *163 commit_url: type: string format: uri @@ -75863,9 +76001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *355 - - *356 - - *493 + - *357 + - *358 + - *495 - *17 - *19 responses: @@ -75875,7 +76013,7 @@ paths: application/json: schema: type: array - items: &680 + items: &682 title: Status description: The status of a commit. type: object @@ -75956,7 +76094,7 @@ paths: site_admin: false headers: Link: *70 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75984,8 +76122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -76014,20 +76152,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *497 - required: *498 + properties: *499 + required: *500 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &499 + properties: &501 url: type: string format: uri html_url: type: string format: uri - required: &500 + required: &502 - url - html_url nullable: true @@ -76041,26 +76179,26 @@ paths: contributing: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true readme: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true issue_template: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true pull_request_template: title: Community Health File type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true required: - code_of_conduct @@ -76187,8 +76325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 - name: basehead @@ -76231,8 +76369,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *488 - merge_base_commit: *488 + base_commit: *490 + merge_base_commit: *490 status: type: string enum: @@ -76252,10 +76390,10 @@ paths: example: 6 commits: type: array - items: *488 + items: *490 files: type: array - items: *501 + items: *503 required: - url - html_url @@ -76501,12 +76639,12 @@ paths: schema: type: string examples: - default: *502 + default: *504 application/vnd.github.patch: schema: type: string examples: - default: *503 + default: *505 '404': *6 '500': *55 '503': *122 @@ -76551,8 +76689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -76712,7 +76850,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &504 + response-if-content-is-a-file-github-object: &506 summary: Response if content is a file value: type: file @@ -76844,7 +76982,7 @@ paths: - size - type - url - - &615 + - &617 title: Content File description: Content File type: object @@ -77045,7 +77183,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *504 + response-if-content-is-a-file: *506 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -77114,7 +77252,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *505 + '302': *507 '304': *37 x-github: githubCloudOnly: false @@ -77137,8 +77275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -77231,7 +77369,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &508 title: File Commit description: File Commit type: object @@ -77383,7 +77521,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: example-for-creating-a-file: value: @@ -77437,7 +77575,7 @@ paths: schema: oneOf: - *3 - - &536 + - &538 description: Repository rule violation was detected type: object properties: @@ -77458,7 +77596,7 @@ paths: items: type: object properties: - placeholder_id: &672 + placeholder_id: &674 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -77490,8 +77628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *355 - - *356 + - *357 + - *358 - name: path description: path parameter in: path @@ -77552,7 +77690,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: default: value: @@ -77607,8 +77745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *355 - - *356 + - *357 + - *358 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -77737,8 +77875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -77870,24 +78008,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *355 - - *356 - - *210 - - *211 + - *357 + - *358 - *212 - *213 - *214 + - *215 + - *216 - 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 - - *215 - - *507 - - *216 - *217 + - *509 - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -77899,11 +78037,11 @@ paths: application/json: schema: type: array - items: &511 + items: &513 type: object description: A Dependabot alert. properties: - number: *186 + number: *188 state: type: string description: The state of the Dependabot alert. @@ -77946,13 +78084,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *508 + security_advisory: *510 security_vulnerability: *66 - url: *189 - html_url: *190 - created_at: *187 - updated_at: *188 - dismissed_at: *192 + url: *191 + html_url: *192 + created_at: *189 + updated_at: *190 + dismissed_at: *194 dismissed_by: title: Simple User description: A GitHub user. @@ -77976,9 +78114,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *191 - auto_dismissed_at: *509 - dismissal_request: *510 + fixed_at: *193 + auto_dismissed_at: *511 + dismissal_request: *512 assignees: type: array description: The users assigned to this alert. @@ -78233,9 +78371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *355 - - *356 - - &512 + - *357 + - *358 + - &514 name: alert_number in: path description: |- @@ -78244,13 +78382,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: default: value: @@ -78382,9 +78520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *355 - - *356 - - *512 + - *357 + - *358 + - *514 requestBody: required: true content: @@ -78440,7 +78578,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: default: value: @@ -78570,8 +78708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -78589,7 +78727,7 @@ paths: type: integer secrets: type: array - items: &515 + items: &517 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -78642,16 +78780,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *514 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78671,15 +78809,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '200': description: Response content: application/json: - schema: *515 + schema: *517 examples: default: value: @@ -78705,9 +78843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 requestBody: required: true content: @@ -78735,7 +78873,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -78759,9 +78897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *355 - - *356 - - *169 + - *357 + - *358 + - *171 responses: '204': description: Response @@ -78783,8 +78921,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: - - *355 - - *356 + - *357 + - *358 - 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 @@ -78947,8 +79085,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -79186,8 +79324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: sbom_uuid in: path required: true @@ -79198,7 +79336,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *516 + Location: *518 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -79219,8 +79357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response @@ -79258,8 +79396,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -79334,7 +79472,7 @@ paths: - version - url additionalProperties: false - metadata: &517 + metadata: &519 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -79367,7 +79505,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *517 + metadata: *519 resolved: type: object description: A collection of resolved package dependencies. @@ -79380,7 +79518,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *517 + metadata: *519 relationship: type: string description: A notation of whether a dependency is requested @@ -79509,8 +79647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *355 - - *356 + - *357 + - *358 - name: sha description: The SHA recorded at creation time. in: query @@ -79550,9 +79688,9 @@ paths: application/json: schema: type: array - items: *518 + items: *520 examples: - default: *519 + default: *521 headers: Link: *70 x-github: @@ -79618,8 +79756,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -79700,7 +79838,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *520 examples: simple-example: summary: Simple example @@ -79773,9 +79911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *355 - - *356 - - &520 + - *357 + - *358 + - &522 name: deployment_id description: deployment_id parameter in: path @@ -79787,7 +79925,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *520 examples: default: value: @@ -79852,9 +79990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 responses: '204': description: Response @@ -79876,9 +80014,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 - *17 - *19 responses: @@ -79888,7 +80026,7 @@ paths: application/json: schema: type: array - items: &521 + items: &523 title: Deployment Status description: The status of a deployment. type: object @@ -80049,9 +80187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 requestBody: required: true content: @@ -80126,9 +80264,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: &522 + default: &524 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -80184,9 +80322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *355 - - *356 - - *520 + - *357 + - *358 + - *522 - name: status_id in: path required: true @@ -80197,9 +80335,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: *522 + default: *524 '404': *6 x-github: githubCloudOnly: false @@ -80224,8 +80362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -80282,8 +80420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -80300,7 +80438,7 @@ paths: type: integer environments: type: array - items: &524 + items: &526 title: Environment description: Details of a deployment environment type: object @@ -80352,7 +80490,7 @@ paths: type: type: string example: wait_timer - wait_timer: &526 + wait_timer: &528 type: integer example: 30 description: The amount of time to delay a job after @@ -80389,11 +80527,11 @@ paths: items: type: object properties: - type: *523 + type: *525 reviewer: anyOf: - *4 - - *208 + - *210 required: - id - node_id @@ -80413,7 +80551,7 @@ paths: - id - node_id - type - deployment_branch_policy: &527 + deployment_branch_policy: &529 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -80529,9 +80667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *355 - - *356 - - &525 + - *357 + - *358 + - &527 name: environment_name in: path required: true @@ -80544,9 +80682,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: &528 + default: &530 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -80630,9 +80768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: false content: @@ -80641,7 +80779,7 @@ paths: type: object nullable: true properties: - wait_timer: *526 + wait_timer: *528 prevent_self_review: type: boolean example: false @@ -80658,13 +80796,13 @@ paths: items: type: object properties: - type: *523 + type: *525 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *527 + deployment_branch_policy: *529 additionalProperties: false examples: default: @@ -80684,9 +80822,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: *528 + default: *530 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -80710,9 +80848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 responses: '204': description: Default response @@ -80737,9 +80875,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 - *17 - *19 responses: @@ -80757,7 +80895,7 @@ paths: example: 2 branch_policies: type: array - items: &529 + items: &531 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -80814,9 +80952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: true content: @@ -80862,9 +81000,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - example-wildcard: &530 + example-wildcard: &532 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -80906,10 +81044,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - &531 + - *357 + - *358 + - *527 + - &533 name: branch_policy_id in: path required: true @@ -80921,9 +81059,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80942,10 +81080,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - *531 + - *357 + - *358 + - *527 + - *533 requestBody: required: true content: @@ -80973,9 +81111,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80994,10 +81132,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *355 - - *356 - - *525 - - *531 + - *357 + - *358 + - *527 + - *533 responses: '204': description: Response @@ -81022,9 +81160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 responses: '200': description: List of deployment protection rules @@ -81040,7 +81178,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &532 + items: &534 title: Deployment protection rule description: Deployment protection rule type: object @@ -81059,7 +81197,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &533 + app: &535 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -81158,9 +81296,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: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 requestBody: content: application/json: @@ -81181,9 +81319,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *532 + schema: *534 examples: - default: &534 + default: &536 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -81218,9 +81356,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: - - *525 - - *356 - - *355 + - *527 + - *358 + - *357 - *19 - *17 responses: @@ -81239,7 +81377,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *533 + items: *535 examples: default: value: @@ -81274,10 +81412,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *355 - - *356 - - *525 - - &535 + - *357 + - *358 + - *527 + - &537 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -81289,9 +81427,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *534 examples: - default: *534 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81312,10 +81450,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *525 - - *356 - - *355 - - *535 + - *527 + - *358 + - *357 + - *537 responses: '204': description: Response @@ -81341,9 +81479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 - *17 - *19 responses: @@ -81361,9 +81499,9 @@ paths: type: integer secrets: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -81388,17 +81526,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81420,18 +81558,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 responses: '200': description: Response content: application/json: - schema: *399 + schema: *401 examples: - default: *413 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81453,10 +81591,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 requestBody: required: true content: @@ -81487,7 +81625,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -81513,10 +81651,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *355 - - *356 - - *525 - - *169 + - *357 + - *358 + - *527 + - *171 responses: '204': description: Default response @@ -81541,10 +81679,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *355 - - *356 - - *525 - - *178 + - *357 + - *358 + - *527 + - *180 - *19 responses: '200': @@ -81561,9 +81699,9 @@ paths: type: integer variables: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -81586,9 +81724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *355 - - *356 - - *525 + - *357 + - *358 + - *527 requestBody: required: true content: @@ -81615,7 +81753,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -81640,18 +81778,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *355 - - *356 - - *525 - - *172 + - *357 + - *358 + - *527 + - *174 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *414 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81672,10 +81810,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *355 - - *356 - - *172 - - *525 + - *357 + - *358 + - *174 + - *527 requestBody: required: true content: @@ -81717,10 +81855,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *355 - - *356 - - *172 - - *525 + - *357 + - *358 + - *174 + - *527 responses: '204': description: Response @@ -81742,8 +81880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -81811,8 +81949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *355 - - *356 + - *357 + - *358 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -81834,7 +81972,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -81971,8 +82109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -82004,9 +82142,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *14 '422': *15 '403': *29 @@ -82027,8 +82165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82087,8 +82225,8 @@ paths: application/json: schema: oneOf: - - *130 - - *536 + - *132 + - *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82113,8 +82251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *355 - - *356 + - *357 + - *358 - name: file_sha in: path required: true @@ -82213,8 +82351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82323,7 +82461,7 @@ paths: description: Response content: application/json: - schema: &537 + schema: &539 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -82537,15 +82675,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *355 - - *356 - - *489 + - *357 + - *358 + - *491 responses: '200': description: Response content: application/json: - schema: *537 + schema: *539 examples: default: value: @@ -82601,9 +82739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *355 - - *356 - - &538 + - *357 + - *358 + - &540 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. @@ -82620,7 +82758,7 @@ paths: application/json: schema: type: array - items: &539 + items: &541 title: Git Reference description: Git references within a repository type: object @@ -82695,17 +82833,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 responses: '200': description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: &540 + default: &542 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -82734,8 +82872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82764,9 +82902,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -82792,9 +82930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 requestBody: required: true content: @@ -82823,9 +82961,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 '422': *15 '409': *54 x-github: @@ -82843,9 +82981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *355 - - *356 - - *538 + - *357 + - *358 + - *540 responses: '204': description: Response @@ -82900,8 +83038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -82968,7 +83106,7 @@ paths: description: Response content: application/json: - schema: &542 + schema: &544 title: Git Tag description: Metadata for a Git tag type: object @@ -83019,7 +83157,7 @@ paths: - sha - type - url - verification: *541 + verification: *543 required: - sha - url @@ -83029,7 +83167,7 @@ paths: - tag - message examples: - default: &543 + default: &545 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -83102,8 +83240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *355 - - *356 + - *357 + - *358 - name: tag_sha in: path required: true @@ -83114,9 +83252,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *544 examples: - default: *543 + default: *545 '404': *6 '409': *54 x-github: @@ -83140,8 +83278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -83214,7 +83352,7 @@ paths: description: Response content: application/json: - schema: &544 + schema: &546 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -83310,8 +83448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *355 - - *356 + - *357 + - *358 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -83334,7 +83472,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: default-response: summary: Default response @@ -83392,8 +83530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -83436,8 +83574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -83447,7 +83585,7 @@ paths: application/json: schema: type: array - items: &545 + items: &547 title: Webhook description: Webhooks for repositories. type: object @@ -83501,7 +83639,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &794 + last_response: &795 title: Hook Response type: object properties: @@ -83575,8 +83713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -83628,9 +83766,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: &546 + default: &548 value: type: Repository id: 12345678 @@ -83678,17 +83816,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '200': description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -83708,9 +83846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 requestBody: required: true content: @@ -83755,9 +83893,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '422': *15 '404': *6 x-github: @@ -83778,9 +83916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -83804,9 +83942,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '200': description: Response @@ -83833,9 +83971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 requestBody: required: false content: @@ -83879,12 +84017,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 - - *17 - - *229 + - *357 + - *358 - *230 + - *17 + - *231 + - *232 responses: '200': description: Response @@ -83892,9 +84030,9 @@ paths: application/json: schema: type: array - items: *231 + items: *233 examples: - default: *232 + default: *234 '400': *14 '422': *15 x-github: @@ -83913,18 +84051,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 - *16 responses: '200': description: Response content: application/json: - schema: *233 + schema: *235 examples: - default: *234 + default: *236 '400': *14 '422': *15 x-github: @@ -83943,9 +84081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 - *16 responses: '202': *39 @@ -83968,9 +84106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -83995,9 +84133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *355 - - *356 - - *228 + - *357 + - *358 + - *230 responses: '204': description: Response @@ -84020,8 +84158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response if immutable releases are enabled @@ -84067,8 +84205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '409': *54 @@ -84088,8 +84226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '409': *54 @@ -84146,14 +84284,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &547 + schema: &549 title: Import description: A repository import from an external source. type: object @@ -84252,7 +84390,7 @@ paths: - html_url - authors_url examples: - default: &550 + default: &552 value: vcs: subversion use_lfs: true @@ -84268,7 +84406,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': &548 + '503': &550 description: Unavailable due to service under maintenance. content: application/json: @@ -84297,8 +84435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -84346,7 +84484,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: default: value: @@ -84371,7 +84509,7 @@ paths: type: string '422': *15 '404': *6 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84399,8 +84537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -84449,7 +84587,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: example-1: summary: Example 1 @@ -84497,7 +84635,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': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84520,12 +84658,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84551,9 +84689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *355 - - *356 - - &722 + - *357 + - *358 + - &724 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -84567,7 +84705,7 @@ paths: application/json: schema: type: array - items: &549 + items: &551 title: Porter Author description: Porter Author type: object @@ -84621,7 +84759,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': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84646,8 +84784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *355 - - *356 + - *357 + - *358 - name: author_id in: path required: true @@ -84677,7 +84815,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: default: value: @@ -84690,7 +84828,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84714,8 +84852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -84756,7 +84894,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84784,8 +84922,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -84812,11 +84950,11 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: *550 + default: *552 '422': *15 - '503': *548 + '503': *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84839,8 +84977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -84848,8 +84986,8 @@ paths: application/json: schema: *22 examples: - default: *551 - '301': *359 + default: *553 + '301': *361 '404': *6 x-github: githubCloudOnly: false @@ -84869,8 +85007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -84878,12 +85016,12 @@ paths: application/json: schema: anyOf: - - *247 + - *249 - type: object properties: {} additionalProperties: false examples: - default: &553 + default: &555 value: limit: collaborators_only origin: repository @@ -84908,13 +85046,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: application/json: - schema: *552 + schema: *554 examples: default: summary: Example request body @@ -84926,9 +85064,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *553 + default: *555 '409': description: Response x-github: @@ -84950,8 +85088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -84974,8 +85112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -84985,9 +85123,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: &714 + default: &716 value: - id: 1 repository: @@ -85118,9 +85256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *355 - - *356 - - *251 + - *357 + - *358 + - *253 requestBody: required: false content: @@ -85149,7 +85287,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -85280,9 +85418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *355 - - *356 - - *251 + - *357 + - *358 + - *253 responses: '204': description: Response @@ -85313,8 +85451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *355 - - *356 + - *357 + - *358 - 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 @@ -85376,7 +85514,7 @@ paths: required: false schema: type: string - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -85401,7 +85539,7 @@ paths: type: array items: *88 examples: - default: &566 + default: &568 value: - id: 1 node_id: MDU6SXNzdWUx @@ -85550,7 +85688,7 @@ paths: state_reason: completed headers: Link: *70 - '301': *359 + '301': *361 '422': *15 '404': *6 x-github: @@ -85579,8 +85717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -85678,7 +85816,7 @@ paths: application/json: schema: *88 examples: - default: &563 + default: &565 value: id: 1 node_id: MDU6SXNzdWUx @@ -85816,7 +85954,7 @@ paths: '422': *15 '503': *122 '404': *6 - '410': *555 + '410': *557 x-github: triggersNotification: true githubCloudOnly: false @@ -85844,8 +85982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -85866,9 +86004,9 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: &565 + default: &567 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85926,17 +86064,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: &557 + default: &559 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85991,8 +86129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -86015,9 +86153,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *557 + default: *559 '422': *15 x-github: githubCloudOnly: false @@ -86035,8 +86173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -86065,15 +86203,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: default: value: @@ -86129,7 +86267,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -86146,8 +86284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -86155,7 +86293,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 '503': *122 x-github: githubCloudOnly: false @@ -86173,8 +86311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86201,9 +86339,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -86224,8 +86362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -86258,16 +86396,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -86289,10 +86427,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - *559 + - *561 responses: '204': description: Response @@ -86312,8 +86450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -86323,7 +86461,7 @@ paths: application/json: schema: type: array - items: &562 + items: &564 title: Issue Event description: Issue Event type: object @@ -86366,8 +86504,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *560 - required: *561 + properties: *562 + required: *563 nullable: true label: title: Issue Event Label @@ -86411,7 +86549,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *208 + requested_team: *210 dismissed_review: title: Issue Event Dismissed Review type: object @@ -86675,8 +86813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *355 - - *356 + - *357 + - *358 - name: event_id in: path required: true @@ -86687,7 +86825,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *564 examples: default: value: @@ -86880,7 +87018,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *555 + '410': *557 '403': *29 x-github: githubCloudOnly: false @@ -86914,9 +87052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *355 - - *356 - - &564 + - *357 + - *358 + - &566 name: issue_number description: The number that identifies the issue. in: path @@ -86932,7 +87070,7 @@ paths: examples: default: summary: Issue - value: *563 + value: *565 pinned_comment: summary: Issue with pinned comment value: @@ -87112,9 +87250,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 '304': *37 x-github: githubCloudOnly: false @@ -87139,9 +87277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -87262,13 +87400,13 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 '422': *15 '503': *122 '403': *29 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87286,9 +87424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -87316,7 +87454,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87332,9 +87470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: content: application/json: @@ -87361,7 +87499,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87383,9 +87521,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: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: assignee in: path required: true @@ -87425,9 +87563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *95 - *17 - *19 @@ -87438,13 +87576,13 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: *565 + default: *567 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87473,9 +87611,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -87497,16 +87635,16 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *557 + default: *559 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -87534,9 +87672,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -87548,12 +87686,12 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87581,9 +87719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -87607,15 +87745,15 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *359 + '301': *361 '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -87646,9 +87784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -87662,13 +87800,13 @@ paths: application/json: schema: *88 examples: - default: *563 - '301': *359 + default: *565 + '301': *361 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *555 + '410': *557 x-github: triggersNotification: true githubCloudOnly: false @@ -87694,9 +87832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -87708,12 +87846,12 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87730,9 +87868,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -87746,7 +87884,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &570 + - &572 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -87800,7 +87938,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &573 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -87936,7 +88074,7 @@ paths: - performed_via_github_app - assignee - assigner - - &572 + - &574 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -87987,7 +88125,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &575 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -88038,7 +88176,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &576 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -88092,7 +88230,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &577 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -88126,7 +88264,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -88139,7 +88277,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &578 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -88173,7 +88311,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -88186,7 +88324,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &579 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -88246,7 +88384,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &580 title: Locked Issue Event description: Locked Issue Event type: object @@ -88294,7 +88432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &581 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -88360,7 +88498,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &582 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -88426,7 +88564,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &583 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -88492,7 +88630,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &584 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -88583,7 +88721,7 @@ paths: color: red headers: Link: *70 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88600,9 +88738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -88612,9 +88750,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: &568 + default: &570 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -88638,9 +88776,9 @@ paths: value: '2025-12-25' headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88669,9 +88807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -88735,9 +88873,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *567 + items: *569 examples: - default: *568 + default: *570 '400': *14 '403': *29 '404': *6 @@ -88773,9 +88911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -88840,9 +88978,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *567 + items: *569 examples: - default: *568 + default: *570 '400': *14 '403': *29 '404': *6 @@ -88873,10 +89011,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *355 - - *356 - - *564 - - *254 + - *357 + - *358 + - *566 + - *256 responses: '204': description: Issue field value deleted successfully @@ -88901,9 +89039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -88915,7 +89053,7 @@ paths: type: array items: *87 examples: - default: &569 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -88933,9 +89071,9 @@ paths: default: false headers: Link: *70 - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88951,9 +89089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -88998,10 +89136,10 @@ paths: type: array items: *87 examples: - default: *569 - '301': *359 + default: *571 + '301': *361 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -89018,9 +89156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -89082,10 +89220,10 @@ paths: type: array items: *87 examples: - default: *569 - '301': *359 + default: *571 + '301': *361 '404': *6 - '410': *555 + '410': *557 '422': *15 x-github: githubCloudOnly: false @@ -89102,15 +89240,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '204': description: Response - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89129,9 +89267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - name: name in: path required: true @@ -89155,9 +89293,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *359 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89177,9 +89315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: false content: @@ -89207,7 +89345,7 @@ paths: '204': description: Response '403': *29 - '410': *555 + '410': *557 '404': *6 '422': *15 x-github: @@ -89225,9 +89363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '204': description: Response @@ -89257,9 +89395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 responses: '200': description: Response @@ -89267,10 +89405,10 @@ paths: application/json: schema: *88 examples: - default: *563 - '301': *359 + default: *565 + '301': *361 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89287,9 +89425,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - 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. @@ -89315,13 +89453,13 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89339,9 +89477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89373,16 +89511,16 @@ paths: description: Response content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Response content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -89404,10 +89542,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *355 - - *356 - - *564 - - *559 + - *357 + - *358 + - *566 + - *561 responses: '204': description: Response @@ -89436,9 +89574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89462,7 +89600,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -89495,9 +89633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -89509,11 +89647,11 @@ paths: type: array items: *88 examples: - default: *566 + default: *568 headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89541,9 +89679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89572,14 +89710,14 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *555 + '410': *557 '422': *15 '404': *6 x-github: @@ -89599,9 +89737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 requestBody: required: true content: @@ -89634,7 +89772,7 @@ paths: application/json: schema: *88 examples: - default: *563 + default: *565 '403': *29 '404': *6 '422': *7 @@ -89656,9 +89794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *355 - - *356 - - *564 + - *357 + - *358 + - *566 - *17 - *19 responses: @@ -89673,8 +89811,6 @@ paths: description: Timeline Event type: object anyOf: - - *570 - - *571 - *572 - *573 - *574 @@ -89686,6 +89822,8 @@ paths: - *580 - *581 - *582 + - *583 + - *584 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -89746,8 +89884,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true required: - event @@ -90002,7 +90140,7 @@ paths: type: string comments: type: array - items: &604 + items: &606 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -90217,7 +90355,7 @@ paths: type: string comments: type: array - items: *485 + items: *487 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -90506,7 +90644,7 @@ paths: headers: Link: *70 '404': *6 - '410': *555 + '410': *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90523,8 +90661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -90534,7 +90672,7 @@ paths: application/json: schema: type: array - items: &585 + items: &587 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -90600,8 +90738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -90637,9 +90775,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *587 examples: - default: &586 + default: &588 value: id: 1 key: ssh-rsa AAA... @@ -90673,9 +90811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *355 - - *356 - - &587 + - *357 + - *358 + - &589 name: key_id description: The unique identifier of the key. in: path @@ -90687,9 +90825,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *587 examples: - default: *586 + default: *588 '404': *6 x-github: githubCloudOnly: false @@ -90707,9 +90845,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *355 - - *356 - - *587 + - *357 + - *358 + - *589 responses: '204': description: Response @@ -90729,8 +90867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -90742,7 +90880,7 @@ paths: type: array items: *87 examples: - default: *569 + default: *571 headers: Link: *70 '404': *6 @@ -90763,8 +90901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -90802,7 +90940,7 @@ paths: application/json: schema: *87 examples: - default: &588 + default: &590 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -90834,8 +90972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -90848,7 +90986,7 @@ paths: application/json: schema: *87 examples: - default: *588 + default: *590 '404': *6 x-github: githubCloudOnly: false @@ -90865,8 +91003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -90931,8 +91069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *355 - - *356 + - *357 + - *358 - name: name in: path required: true @@ -90958,8 +91096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -90998,9 +91136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *355 - - *356 - - *458 + - *357 + - *358 + - *460 responses: '200': description: Response @@ -91145,8 +91283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91211,8 +91349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91246,9 +91384,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *488 + schema: *490 examples: - default: *589 + default: *591 '204': description: Response when already merged '404': @@ -91273,8 +91411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *355 - - *356 + - *357 + - *358 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -91315,12 +91453,12 @@ paths: application/json: schema: type: array - items: &590 + items: &592 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 examples: default: value: @@ -91376,8 +91514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91417,9 +91555,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: &591 + default: &593 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -91478,9 +91616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *355 - - *356 - - &592 + - *357 + - *358 + - &594 name: milestone_number description: The number that identifies the milestone. in: path @@ -91492,9 +91630,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: *591 + default: *593 '404': *6 x-github: githubCloudOnly: false @@ -91511,9 +91649,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 requestBody: required: false content: @@ -91551,9 +91689,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: *591 + default: *593 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91569,9 +91707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 responses: '204': description: Response @@ -91592,9 +91730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *355 - - *356 - - *592 + - *357 + - *358 + - *594 - *17 - *19 responses: @@ -91606,7 +91744,7 @@ paths: type: array items: *87 examples: - default: *569 + default: *571 headers: Link: *70 x-github: @@ -91625,12 +91763,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *355 - - *356 - - *593 - - *594 - - *95 + - *357 + - *358 - *595 + - *596 + - *95 + - *597 - *17 - *19 responses: @@ -91642,7 +91780,7 @@ paths: type: array items: *115 examples: - default: *596 + default: *598 headers: Link: *70 x-github: @@ -91666,8 +91804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -91725,14 +91863,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: &597 + schema: &599 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -91857,7 +91995,7 @@ paths: - custom_404 - public examples: - default: &598 + default: &600 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -91898,8 +92036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -91953,9 +92091,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *599 examples: - default: *598 + default: *600 '422': *15 '409': *54 x-github: @@ -91978,8 +92116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92078,8 +92216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -92105,8 +92243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -92116,7 +92254,7 @@ paths: application/json: schema: type: array - items: &599 + items: &601 title: Page Build description: Page Build type: object @@ -92210,8 +92348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *355 - - *356 + - *357 + - *358 responses: '201': description: Response @@ -92256,16 +92394,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: &600 + default: &602 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -92313,8 +92451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *355 - - *356 + - *357 + - *358 - name: build_id in: path required: true @@ -92325,9 +92463,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: *600 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92347,8 +92485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92453,9 +92591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *355 - - *356 - - &601 + - *357 + - *358 + - &603 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -92513,9 +92651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *355 - - *356 - - *601 + - *357 + - *358 + - *603 responses: '204': *61 '404': *6 @@ -92542,8 +92680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -92774,7 +92912,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -92801,8 +92939,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: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Private vulnerability reporting status @@ -92839,8 +92977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '422': *14 @@ -92861,8 +92999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': *61 '422': *14 @@ -92884,8 +93022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -92893,7 +93031,7 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: default: value: @@ -92924,8 +93062,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: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -92937,7 +93075,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *307 + items: *309 required: - properties examples: @@ -92987,8 +93125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *355 - - *356 + - *357 + - *358 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -93048,9 +93186,9 @@ paths: application/json: schema: type: array - items: *492 + items: *494 examples: - default: *602 + default: *604 headers: Link: *70 '304': *37 @@ -93082,8 +93220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -93148,7 +93286,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &608 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -93259,8 +93397,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true active_lock_reason: type: string @@ -93292,7 +93430,7 @@ paths: items: *4 requested_teams: type: array - items: *344 + items: *346 head: type: object properties: @@ -93330,14 +93468,14 @@ paths: _links: type: object properties: - comments: *294 - commits: *294 - statuses: *294 - html: *294 - issue: *294 - review_comments: *294 - review_comment: *294 - self: *294 + comments: *296 + commits: *296 + statuses: *296 + html: *296 + issue: *296 + review_comments: *296 + review_comment: *296 + self: *296 required: - comments - commits @@ -93348,7 +93486,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *603 + auto_merge: *605 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -93438,7 +93576,7 @@ paths: - merged_by - review_comments examples: - default: &607 + default: &609 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -93945,8 +94083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *355 - - *356 + - *357 + - *358 - name: sort in: query required: false @@ -93975,9 +94113,9 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: - default: &609 + default: &611 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94054,17 +94192,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '200': description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: &605 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94139,8 +94277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -94163,9 +94301,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: *605 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94181,8 +94319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 + - *357 + - *358 - *104 responses: '204': @@ -94204,8 +94342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -94232,9 +94370,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -94255,8 +94393,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *355 - - *356 + - *357 + - *358 - *104 requestBody: required: true @@ -94289,16 +94427,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -94320,10 +94458,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *355 - - *356 + - *357 + - *358 - *104 - - *559 + - *561 responses: '204': description: Response @@ -94366,9 +94504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *355 - - *356 - - &608 + - *357 + - *358 + - &610 name: pull_number description: The number that identifies the pull request. in: path @@ -94381,9 +94519,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '304': *37 '404': *6 '406': @@ -94418,9 +94556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -94462,9 +94600,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 '403': *29 x-github: @@ -94486,9 +94624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -94548,17 +94686,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -94588,9 +94726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -94611,9 +94749,9 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: - default: *609 + default: *611 headers: Link: *70 x-github: @@ -94646,9 +94784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -94753,7 +94891,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: example-for-a-multi-line-comment: value: @@ -94841,9 +94979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *104 requestBody: required: true @@ -94866,7 +95004,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: default: value: @@ -94952,9 +95090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -94964,9 +95102,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *610 + default: *612 headers: Link: *70 x-github: @@ -94996,9 +95134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -95008,7 +95146,7 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: default: value: @@ -95046,9 +95184,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 responses: '204': description: Response if pull request has been merged @@ -95071,9 +95209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -95184,9 +95322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 responses: '200': description: Response @@ -95202,7 +95340,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 required: - users - teams @@ -95261,9 +95399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -95300,7 +95438,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -95836,9 +95974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: true content: @@ -95872,7 +96010,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -96357,9 +96495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 - *17 - *19 responses: @@ -96369,7 +96507,7 @@ paths: application/json: schema: type: array - items: &611 + items: &613 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -96520,9 +96658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -96608,9 +96746,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: &613 + default: &615 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -96673,10 +96811,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - &612 + - *357 + - *358 + - *610 + - &614 name: review_id description: The unique identifier of the review. in: path @@ -96688,9 +96826,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: &614 + default: &616 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -96749,10 +96887,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -96775,7 +96913,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: default: value: @@ -96837,18 +96975,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 responses: '200': description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: *613 + default: *615 '422': *7 '404': *6 x-github: @@ -96875,10 +97013,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 - *17 - *19 responses: @@ -96961,9 +97099,9 @@ paths: _links: type: object properties: - self: *294 - html: *294 - pull_request: *294 + self: *296 + html: *296 + pull_request: *296 required: - self - html @@ -97113,10 +97251,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -97144,7 +97282,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: default: value: @@ -97207,10 +97345,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *355 - - *356 - - *608 - - *612 + - *357 + - *358 + - *610 + - *614 requestBody: required: true content: @@ -97245,9 +97383,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: *614 + default: *616 '404': *6 '422': *7 '403': *29 @@ -97269,9 +97407,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *355 - - *356 - - *608 + - *357 + - *358 + - *610 requestBody: required: false content: @@ -97334,8 +97472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *355 - - *356 + - *357 + - *358 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -97348,9 +97486,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: - default: &616 + default: &618 value: type: file encoding: base64 @@ -97392,8 +97530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *355 - - *356 + - *357 + - *358 - name: dir description: The alternate path to look for a README file in: path @@ -97413,9 +97551,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: - default: *616 + default: *618 '404': *6 '422': *15 x-github: @@ -97437,8 +97575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -97448,7 +97586,7 @@ paths: application/json: schema: type: array - items: *617 + items: *619 examples: default: value: @@ -97542,8 +97680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -97619,9 +97757,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: &621 + default: &623 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -97726,9 +97864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *355 - - *356 - - &619 + - *357 + - *358 + - &621 name: asset_id description: The unique identifier of the asset. in: path @@ -97740,9 +97878,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: &620 + default: &622 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 @@ -97777,7 +97915,7 @@ paths: type: User site_admin: false '404': *6 - '302': *505 + '302': *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97793,9 +97931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *355 - - *356 - - *619 + - *357 + - *358 + - *621 requestBody: required: false content: @@ -97823,9 +97961,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: *620 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97841,9 +97979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *355 - - *356 - - *619 + - *357 + - *358 + - *621 responses: '204': description: Response @@ -97868,8 +98006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -97954,16 +98092,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -97981,8 +98119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *355 - - *356 + - *357 + - *358 - name: tag description: tag parameter in: path @@ -97995,9 +98133,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -98019,9 +98157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *355 - - *356 - - &622 + - *357 + - *358 + - &624 name: release_id description: The unique identifier of the release. in: path @@ -98035,9 +98173,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: *617 + schema: *619 examples: - default: *621 + default: *623 '401': description: Unauthorized x-github: @@ -98055,9 +98193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 requestBody: required: false content: @@ -98121,9 +98259,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *621 + default: *623 '404': description: Not Found if the discussion category name is invalid content: @@ -98144,9 +98282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 responses: '204': description: Response @@ -98167,9 +98305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - *17 - *19 responses: @@ -98179,7 +98317,7 @@ paths: application/json: schema: type: array - items: *618 + items: *620 examples: default: value: @@ -98260,9 +98398,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: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - name: name in: query required: true @@ -98288,7 +98426,7 @@ paths: description: Response for successful upload content: application/json: - schema: *618 + schema: *620 examples: response-for-successful-upload: value: @@ -98343,9 +98481,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 - 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. @@ -98369,9 +98507,9 @@ paths: application/json: schema: type: array - items: *486 + items: *488 examples: - default: *558 + default: *560 headers: Link: *70 '404': *6 @@ -98392,9 +98530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *355 - - *356 - - *622 + - *357 + - *358 + - *624 requestBody: required: true content: @@ -98424,16 +98562,16 @@ paths: description: Reaction exists content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '201': description: Reaction created content: application/json: - schema: *486 + schema: *488 examples: - default: *487 + default: *489 '422': *15 x-github: githubCloudOnly: false @@ -98455,10 +98593,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *355 - - *356 - - *622 - - *559 + - *357 + - *358 + - *624 + - *561 responses: '204': description: Response @@ -98482,9 +98620,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *355 - - *356 - - *421 + - *357 + - *358 + - *423 - *17 - *19 responses: @@ -98500,8 +98638,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *316 - - &623 + - *318 + - &625 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -98520,69 +98658,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *317 - - *623 - - allOf: - - *318 - - *623 - allOf: - *319 - - *623 - - allOf: - - *624 - - *623 + - *625 - allOf: - *320 - - *623 + - *625 - allOf: - *321 - - *623 + - *625 + - allOf: + - *626 + - *625 - allOf: - *322 - - *623 + - *625 - allOf: - *323 - - *623 + - *625 - allOf: - *324 - - *623 + - *625 - allOf: - *325 - - *623 + - *625 - allOf: - *326 - - *623 + - *625 - allOf: - *327 - - *623 + - *625 - allOf: - *328 - - *623 + - *625 - allOf: - *329 - - *623 + - *625 - allOf: - - *334 - - *623 + - *330 + - *625 - allOf: - - *335 - - *623 + - *331 + - *625 - allOf: - *336 - - *623 + - *625 - allOf: - - *330 - - *623 + - *337 + - *625 - allOf: - - *331 - - *623 + - *338 + - *625 - allOf: - *332 - - *623 + - *625 - allOf: - *333 - - *623 + - *625 + - allOf: + - *334 + - *625 + - allOf: + - *335 + - *625 examples: default: value: @@ -98621,8 +98759,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - name: includes_parents @@ -98633,7 +98771,7 @@ paths: schema: type: boolean default: true - - *625 + - *627 responses: '200': description: Response @@ -98641,7 +98779,7 @@ paths: application/json: schema: type: array - items: *337 + items: *339 examples: default: value: @@ -98688,8 +98826,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 requestBody: description: Request body required: true @@ -98709,16 +98847,16 @@ paths: - tag - push default: branch - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *311 + items: *316 + conditions: *313 rules: type: array description: An array of rules within the ruleset. - items: *626 + items: *628 required: - name - enforcement @@ -98749,9 +98887,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: &637 + default: &639 value: id: 42 name: super cool ruleset @@ -98799,13 +98937,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *355 - - *356 - - *627 - - *628 + - *357 + - *358 - *629 - *630 - *631 + - *632 + - *633 - *17 - *19 responses: @@ -98813,9 +98951,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *634 examples: - default: *633 + default: *635 '404': *6 '500': *55 x-github: @@ -98836,17 +98974,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *355 - - *356 - - *634 + - *357 + - *358 + - *636 responses: '200': description: Response content: application/json: - schema: *635 + schema: *637 examples: - default: *636 + default: *638 '404': *6 '500': *55 x-github: @@ -98874,8 +99012,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98895,9 +99033,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *637 + default: *639 '404': *6 '500': *55 put: @@ -98915,8 +99053,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98941,16 +99079,16 @@ paths: - branch - tag - push - enforcement: *313 + enforcement: *315 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *314 - conditions: *311 + items: *316 + conditions: *313 rules: description: An array of rules within the ruleset. type: array - items: *626 + items: *628 examples: default: value: @@ -98978,9 +99116,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *637 + default: *639 '404': *6 '422': *15 '500': *55 @@ -98999,8 +99137,8 @@ paths: category: repos subcategory: rules parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99023,8 +99161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 - name: ruleset_id @@ -99040,9 +99178,9 @@ paths: application/json: schema: type: array - items: *340 + items: *342 examples: - default: *638 + default: *640 '404': *6 '500': *55 x-github: @@ -99061,8 +99199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *355 - - *356 + - *357 + - *358 - name: ruleset_id description: The ID of the ruleset. in: path @@ -99080,7 +99218,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -99135,26 +99273,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *355 - - *356 - - *640 - - *641 + - *357 + - *358 - *642 - *643 - *644 - *645 - *646 - *647 + - *648 + - *649 - *62 - *19 - *17 - - *648 - - *649 - *650 - *651 - *652 - *653 - *654 + - *655 + - *656 responses: '200': description: Response @@ -99162,11 +99300,11 @@ paths: application/json: schema: type: array - items: &658 + items: &660 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -99174,15 +99312,15 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *657 + resolution: *658 resolved_at: type: string format: date-time @@ -99288,7 +99426,7 @@ paths: pull request. ' - oneOf: *657 + oneOf: *659 nullable: true has_more_locations: type: boolean @@ -99452,16 +99590,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 - - *653 + - *357 + - *358 + - *454 + - *655 responses: '200': description: Response content: application/json: - schema: *658 + schema: *660 examples: default: value: @@ -99515,9 +99653,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 requestBody: required: true content: @@ -99525,8 +99663,8 @@ paths: schema: type: object properties: - state: *655 - resolution: *656 + state: *657 + resolution: *658 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -99570,7 +99708,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *660 examples: default: value: @@ -99669,9 +99807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *355 - - *356 - - *452 + - *357 + - *358 + - *454 - *19 - *17 responses: @@ -99682,7 +99820,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &816 + items: &817 type: object properties: type: @@ -99708,8 +99846,6 @@ paths: example: commit details: oneOf: - - *659 - - *660 - *661 - *662 - *663 @@ -99721,6 +99857,8 @@ paths: - *669 - *670 - *671 + - *672 + - *673 examples: default: value: @@ -99806,8 +99944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -99815,14 +99953,14 @@ paths: schema: type: object properties: - reason: &673 + reason: &675 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *672 + placeholder_id: *674 required: - reason - placeholder_id @@ -99839,7 +99977,7 @@ paths: schema: type: object properties: - reason: *673 + reason: *675 expire_at: type: string format: date-time @@ -99885,8 +100023,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: - - *355 - - *356 + - *357 + - *358 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -99901,7 +100039,7 @@ paths: properties: incremental_scans: type: array - items: &674 + items: &676 description: Information on a single scan performed by secret scanning on the repository type: object @@ -99932,15 +100070,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *674 + items: *676 backfill_scans: type: array - items: *674 + items: *676 custom_pattern_backfill_scans: type: array items: allOf: - - *674 + - *676 - type: object properties: pattern_name: @@ -99953,7 +100091,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *674 + items: *676 examples: default: value: @@ -100018,8 +100156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *355 - - *356 + - *357 + - *358 - *62 - name: sort description: The property to sort the results by. @@ -100063,9 +100201,9 @@ paths: application/json: schema: type: array - items: *675 + items: *677 examples: - default: *676 + default: *678 '400': *14 '404': *6 x-github: @@ -100088,8 +100226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -100162,7 +100300,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 required: - login - type @@ -100249,9 +100387,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: &678 + default: &680 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -100481,8 +100619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -100586,7 +100724,7 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: default: value: @@ -100732,17 +100870,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '200': description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *678 + default: *680 '403': *29 '404': *6 x-github: @@ -100766,9 +100904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 requestBody: required: true content: @@ -100841,7 +100979,7 @@ paths: login: type: string description: The username of the user credited. - type: *343 + type: *345 required: - login - type @@ -100927,17 +101065,17 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *678 - add_credit: *678 + default: *680 + add_credit: *680 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *130 + schema: *132 examples: invalid_state_transition: value: @@ -100968,9 +101106,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: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '202': *39 '400': *14 @@ -100997,17 +101135,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *355 - - *356 - - *677 + - *357 + - *358 + - *679 responses: '202': description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *14 '422': *15 '403': *29 @@ -101033,8 +101171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -101133,8 +101271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -101143,7 +101281,7 @@ paths: application/json: schema: type: array - items: &679 + items: &681 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -101176,8 +101314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -101253,8 +101391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -101350,8 +101488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -101505,8 +101643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -101516,7 +101654,7 @@ paths: application/json: schema: type: array - items: *679 + items: *681 examples: default: value: @@ -101549,8 +101687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *355 - - *356 + - *357 + - *358 - name: sha in: path required: true @@ -101604,7 +101742,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *682 examples: default: value: @@ -101658,8 +101796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -101691,14 +101829,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &681 + schema: &683 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -101766,8 +101904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: false content: @@ -101793,7 +101931,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: default: value: @@ -101820,8 +101958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -101841,8 +101979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -101921,8 +102059,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *355 - - *356 + - *357 + - *358 - name: ref in: path required: true @@ -101958,8 +102096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *355 - - *356 + - *357 + - *358 - *17 - *19 responses: @@ -101969,9 +102107,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *272 + default: *274 headers: Link: *70 '404': *6 @@ -101991,8 +102129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *355 - - *356 + - *357 + - *358 - *19 - *17 responses: @@ -102000,7 +102138,7 @@ paths: description: Response content: application/json: - schema: &682 + schema: &684 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -102012,7 +102150,7 @@ paths: required: - names examples: - default: &683 + default: &685 value: names: - octocat @@ -102035,8 +102173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -102067,9 +102205,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *684 examples: - default: *683 + default: *685 '404': *6 '422': *7 x-github: @@ -102090,9 +102228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *355 - - *356 - - &684 + - *357 + - *358 + - &686 name: per description: The time frame to display results for. in: query @@ -102121,7 +102259,7 @@ paths: example: 128 clones: type: array - items: &685 + items: &687 title: Traffic type: object properties: @@ -102208,8 +102346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -102299,8 +102437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *355 - - *356 + - *357 + - *358 responses: '200': description: Response @@ -102360,9 +102498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *355 - - *356 - - *684 + - *357 + - *358 + - *686 responses: '200': description: Response @@ -102381,7 +102519,7 @@ paths: example: 3782 views: type: array - items: *685 + items: *687 required: - uniques - count @@ -102458,8 +102596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *355 - - *356 + - *357 + - *358 requestBody: required: true content: @@ -102495,7 +102633,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *163 examples: default: value: @@ -102732,8 +102870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -102756,8 +102894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -102779,8 +102917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -102806,8 +102944,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *355 - - *356 + - *357 + - *358 - name: ref in: path required: true @@ -102899,9 +103037,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -102942,7 +103080,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -103134,7 +103272,7 @@ paths: html_url: type: string format: uri - repository: *161 + repository: *163 score: type: number file_size: @@ -103152,7 +103290,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &686 + text_matches: &688 title: Search Result Text Matches type: array items: @@ -103314,7 +103452,7 @@ paths: enum: - author-date - committer-date - - &687 + - &689 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 @@ -103385,7 +103523,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true comment_count: type: integer @@ -103405,7 +103543,7 @@ paths: url: type: string format: uri - verification: *541 + verification: *543 required: - author - committer @@ -103424,7 +103562,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *419 + properties: *421 nullable: true parents: type: array @@ -103437,12 +103575,12 @@ paths: type: string sha: type: string - repository: *161 + repository: *163 score: type: number node_id: type: string - text_matches: *686 + text_matches: *688 required: - sha - node_id @@ -103634,7 +103772,7 @@ paths: - interactions - created - updated - - *687 + - *689 - *17 - *19 - name: advanced_search @@ -103748,11 +103886,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: type: string state_reason: @@ -103762,8 +103900,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *292 - required: *293 + properties: *294 + required: *295 nullable: true comments: type: integer @@ -103777,7 +103915,7 @@ paths: type: string format: date-time nullable: true - text_matches: *686 + text_matches: *688 pull_request: type: object properties: @@ -103821,7 +103959,7 @@ paths: timeline_url: type: string format: uri - type: *255 + type: *257 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -104057,7 +104195,7 @@ paths: enum: - created - updated - - *687 + - *689 - *17 - *19 responses: @@ -104101,7 +104239,7 @@ paths: nullable: true score: type: number - text_matches: *686 + text_matches: *688 required: - id - node_id @@ -104186,7 +104324,7 @@ paths: - forks - help-wanted-issues - updated - - *687 + - *689 - *17 - *19 responses: @@ -104434,7 +104572,7 @@ paths: - admin - pull - push - text_matches: *686 + text_matches: *688 temp_clone_token: type: string allow_merge_commit: @@ -104734,7 +104872,7 @@ paths: type: string format: uri nullable: true - text_matches: *686 + text_matches: *688 related: type: array nullable: true @@ -104925,7 +105063,7 @@ paths: - followers - repositories - joined - - *687 + - *689 - *17 - *19 responses: @@ -105029,7 +105167,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *686 + text_matches: *688 blog: type: string nullable: true @@ -105108,7 +105246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &690 + - &692 name: team_id description: The unique identifier of the team. in: path @@ -105120,9 +105258,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 x-github: githubCloudOnly: false @@ -105149,7 +105287,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *690 + - *692 requestBody: required: true content: @@ -105212,16 +105350,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '201': description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '404': *6 '422': *15 '403': *29 @@ -105249,7 +105387,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *690 + - *692 responses: '204': description: Response @@ -105278,7 +105416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -105288,9 +105426,9 @@ paths: application/json: schema: type: array - items: *249 + items: *251 examples: - default: *250 + default: *252 headers: Link: *70 x-github: @@ -105316,7 +105454,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *690 + - *692 - name: role description: Filters members returned by their role in the team. in: query @@ -105367,7 +105505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105404,7 +105542,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105444,7 +105582,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105481,16 +105619,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 responses: '200': description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-user-is-a-team-maintainer: *691 + response-if-user-is-a-team-maintainer: *693 '404': *6 x-github: githubCloudOnly: false @@ -105523,7 +105661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 requestBody: required: false @@ -105549,9 +105687,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: *692 + response-if-users-membership-with-team-is-now-pending: *694 '403': description: Forbidden if team synchronization is set up '422': @@ -105585,7 +105723,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *690 + - *692 - *74 responses: '204': @@ -105613,7 +105751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -105623,9 +105761,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 '404': *6 @@ -105655,15 +105793,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *693 + schema: *695 examples: alternative-response-with-extra-repository-information: value: @@ -105813,9 +105951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 requestBody: required: false content: @@ -105865,9 +106003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *690 - - *355 - - *356 + - *692 + - *357 + - *358 responses: '204': description: Response @@ -105892,7 +106030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *690 + - *692 - *17 - *19 responses: @@ -105902,9 +106040,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: *694 + response-if-child-teams-exist: *696 headers: Link: *70 '404': *6 @@ -105937,7 +106075,7 @@ paths: application/json: schema: oneOf: - - &695 + - &697 title: Private User description: Private User type: object @@ -106140,7 +106278,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &721 + - &723 title: Public User description: Public User type: object @@ -106452,7 +106590,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: default: value: @@ -106655,9 +106793,9 @@ paths: type: integer codespaces: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '304': *37 '500': *55 '401': *25 @@ -106796,17 +106934,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -106850,7 +106988,7 @@ paths: type: integer secrets: type: array - items: &696 + items: &698 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -106890,7 +107028,7 @@ paths: - visibility - selected_repositories_url examples: - default: *478 + default: *480 headers: Link: *70 x-github: @@ -106960,13 +107098,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *696 + schema: *698 examples: default: value: @@ -106996,7 +107134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 requestBody: required: true content: @@ -107041,7 +107179,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -107069,7 +107207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '204': description: Response @@ -107094,7 +107232,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 responses: '200': description: Response @@ -107110,9 +107248,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *209 + default: *211 '401': *25 '403': *29 '404': *6 @@ -107137,7 +107275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 requestBody: required: true content: @@ -107191,7 +107329,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -107224,7 +107362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -107256,15 +107394,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '304': *37 '500': *55 '401': *25 @@ -107290,7 +107428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 requestBody: required: false content: @@ -107320,9 +107458,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '401': *25 '403': *29 '404': *6 @@ -107344,7 +107482,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '202': *39 '304': *37 @@ -107373,13 +107511,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '202': description: Response content: application/json: - schema: &697 + schema: &699 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107420,7 +107558,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &698 + default: &700 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -107452,7 +107590,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *262 + - *264 - name: export_id in: path required: true @@ -107465,9 +107603,9 @@ paths: description: Response content: application/json: - schema: *697 + schema: *699 examples: - default: *698 + default: *700 '404': *6 x-github: githubCloudOnly: false @@ -107488,7 +107626,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *262 + - *264 responses: '200': description: Response @@ -107504,9 +107642,9 @@ paths: type: integer machines: type: array - items: *699 + items: *701 examples: - default: *700 + default: *702 '304': *37 '500': *55 '401': *25 @@ -107535,7 +107673,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *262 + - *264 requestBody: required: true content: @@ -107585,13 +107723,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *358 + repository: *360 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *476 - required: *477 + properties: *478 + required: *479 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -108365,15 +108503,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '304': *37 '500': *55 '400': *14 @@ -108405,15 +108543,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *262 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *475 + default: *477 '500': *55 '401': *25 '403': *29 @@ -108443,9 +108581,9 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: &711 + default: &713 value: - id: 197 name: hello_docker @@ -108546,7 +108684,7 @@ paths: application/json: schema: type: array - items: &701 + items: &703 title: Email description: Email type: object @@ -108611,9 +108749,9 @@ paths: application/json: schema: type: array - items: *701 + items: *703 examples: - default: &713 + default: &715 value: - email: octocat@github.com verified: true @@ -108688,7 +108826,7 @@ paths: application/json: schema: type: array - items: *701 + items: *703 examples: default: value: @@ -108944,7 +109082,7 @@ paths: application/json: schema: type: array - items: &702 + items: &704 title: GPG Key description: A unique encryption key type: object @@ -109075,7 +109213,7 @@ paths: - subkeys - revoked examples: - default: &731 + default: &733 value: - id: 3 name: Octocat's GPG Key @@ -109160,9 +109298,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *704 examples: - default: &703 + default: &705 value: id: 3 name: Octocat's GPG Key @@ -109219,7 +109357,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &704 + - &706 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109231,9 +109369,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *704 examples: - default: *703 + default: *705 '404': *6 '304': *37 '403': *29 @@ -109256,7 +109394,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *704 + - *706 responses: '204': description: Response @@ -109458,7 +109596,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *153 + default: *155 headers: Link: *70 '404': *6 @@ -109484,7 +109622,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -109510,7 +109648,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -109544,12 +109682,12 @@ paths: application/json: schema: anyOf: - - *247 + - *249 - type: object properties: {} additionalProperties: false examples: - default: *248 + default: *250 '204': description: Response when there are no restrictions x-github: @@ -109573,7 +109711,7 @@ paths: required: true content: application/json: - schema: *552 + schema: *554 examples: default: value: @@ -109584,7 +109722,7 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: default: value: @@ -109665,7 +109803,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -109690,7 +109828,7 @@ paths: type: array items: *88 examples: - default: *259 + default: *261 headers: Link: *70 '404': *6 @@ -109723,7 +109861,7 @@ paths: application/json: schema: type: array - items: &705 + items: &707 title: Key description: Key type: object @@ -109824,9 +109962,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: &706 + default: &708 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109859,15 +109997,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *587 + - *589 responses: '200': description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: *706 + default: *708 '404': *6 '304': *37 '403': *29 @@ -109890,7 +110028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *587 + - *589 responses: '204': description: Response @@ -109923,7 +110061,7 @@ paths: application/json: schema: type: array - items: &707 + items: &709 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -109991,7 +110129,7 @@ paths: - account - plan examples: - default: &708 + default: &710 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -110053,9 +110191,9 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: *708 + default: *710 headers: Link: *70 '304': *37 @@ -110095,7 +110233,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -110209,7 +110347,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -110296,7 +110434,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -110368,7 +110506,7 @@ paths: application/json: schema: type: array - items: *266 + items: *268 examples: default: value: @@ -110621,7 +110759,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -110801,7 +110939,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *267 + - *269 - name: exclude in: query required: false @@ -110814,7 +110952,7 @@ paths: description: Response content: application/json: - schema: *266 + schema: *268 examples: default: value: @@ -111008,7 +111146,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *267 + - *269 responses: '302': description: Response @@ -111034,7 +111172,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *267 + - *269 responses: '204': description: Response @@ -111063,8 +111201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *267 - - *709 + - *269 + - *711 responses: '204': description: Response @@ -111088,7 +111226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *267 + - *269 - *17 - *19 responses: @@ -111177,7 +111315,7 @@ paths: - docker - nuget - container - - *710 + - *712 - *19 - *17 responses: @@ -111187,10 +111325,10 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *711 - '400': *712 + default: *713 + '400': *714 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111210,16 +111348,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 responses: '200': description: Response content: application/json: - schema: *273 + schema: *275 examples: - default: &732 + default: &734 value: id: 40201 name: octo-name @@ -111332,8 +111470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 responses: '204': description: Response @@ -111363,8 +111501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 + - *278 - name: token description: package token schema: @@ -111396,8 +111534,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: - - *275 - - *276 + - *277 + - *278 - *19 - *17 - name: state @@ -111417,7 +111555,7 @@ paths: application/json: schema: type: array - items: *277 + items: *279 examples: default: value: @@ -111466,15 +111604,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -111510,9 +111648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '204': description: Response @@ -111542,9 +111680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 responses: '204': description: Response @@ -111581,9 +111719,9 @@ paths: application/json: schema: type: array - items: *701 + items: *703 examples: - default: *713 + default: *715 headers: Link: *70 '304': *37 @@ -111696,7 +111834,7 @@ paths: type: array items: *82 examples: - default: &720 + default: &722 summary: Default response value: - id: 1296269 @@ -112000,9 +112138,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -112041,9 +112179,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: *714 + default: *716 headers: Link: *70 '304': *37 @@ -112066,7 +112204,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *251 + - *253 responses: '204': description: Response @@ -112090,7 +112228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *251 + - *253 responses: '204': description: Response @@ -112123,7 +112261,7 @@ paths: application/json: schema: type: array - items: &715 + items: &717 title: Social account description: Social media account type: object @@ -112138,7 +112276,7 @@ paths: - provider - url examples: - default: &716 + default: &718 value: - provider: twitter url: https://twitter.com/github @@ -112200,9 +112338,9 @@ paths: application/json: schema: type: array - items: *715 + items: *717 examples: - default: *716 + default: *718 '422': *15 '304': *37 '404': *6 @@ -112289,7 +112427,7 @@ paths: application/json: schema: type: array - items: &717 + items: &719 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112309,7 +112447,7 @@ paths: - title - created_at examples: - default: &750 + default: &751 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112373,9 +112511,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: &718 + default: &720 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112405,7 +112543,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: - - &719 + - &721 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112417,9 +112555,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: *718 + default: *720 '404': *6 '304': *37 '403': *29 @@ -112442,7 +112580,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: - - *719 + - *721 responses: '204': description: Response @@ -112471,7 +112609,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &751 + - &752 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 @@ -112496,11 +112634,11 @@ paths: type: array items: *82 examples: - default-response: *720 + default-response: *722 application/vnd.github.v3.star+json: schema: type: array - items: &752 + items: &753 title: Starred Repository description: Starred Repository type: object @@ -112656,8 +112794,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: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response if this repository is starred by you @@ -112685,8 +112823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -112710,8 +112848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *355 - - *356 + - *357 + - *358 responses: '204': description: Response @@ -112744,9 +112882,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 '304': *37 @@ -112783,7 +112921,7 @@ paths: application/json: schema: type: array - items: *351 + items: *353 examples: default: value: @@ -112869,10 +113007,10 @@ paths: application/json: schema: oneOf: - - *695 - - *721 + - *697 + - *723 examples: - default-response: &725 + default-response: &727 summary: Default response value: login: octocat @@ -112907,7 +113045,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &726 + response-with-git-hub-plan-information: &728 summary: Response with GitHub plan information value: login: octocat @@ -112964,14 +113102,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &723 + - &725 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *291 + - *293 requestBody: required: true description: Details of the draft item to create in the project. @@ -113005,9 +113143,9 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: - draft_issue: *298 + draft_issue: *300 '304': *37 '403': *29 '401': *25 @@ -113030,7 +113168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *722 + - *724 - *17 responses: '200': @@ -113065,8 +113203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *723 - - *291 + - *725 + - *293 requestBody: required: true content: @@ -113137,17 +113275,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *724 + schema: *726 examples: table_view: summary: Response for creating a table view - value: *302 + value: *304 board_view: summary: Response for creating a board view with filter - value: *302 + value: *304 roadmap_view: summary: Response for creating a roadmap view - value: *302 + value: *304 '304': *37 '403': *29 '401': *25 @@ -113189,11 +113327,11 @@ paths: application/json: schema: oneOf: - - *695 - - *721 + - *697 + - *723 examples: - default-response: *725 - response-with-git-hub-plan-information: *726 + default-response: *727 + response-with-git-hub-plan-information: *728 '404': *6 x-github: githubCloudOnly: false @@ -113243,8 +113381,8 @@ paths: required: - subject_digests examples: - default: *727 - withPredicateType: *728 + default: *729 + withPredicateType: *730 responses: '200': description: Response @@ -113283,7 +113421,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *729 + default: *731 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113472,12 +113610,12 @@ paths: initiator: type: string examples: - default: *415 + default: *417 '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -113539,7 +113677,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *202 + items: *204 examples: default: summary: Example response for listing user copilot spaces @@ -113751,9 +113889,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &730 + default: &732 summary: Example response for a user copilot space value: id: 42 @@ -113852,9 +113990,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *730 + default: *732 '403': *29 '404': *6 x-github: @@ -113975,9 +114113,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *730 + default: *732 '403': *29 '404': *6 '422': *15 @@ -114054,7 +114192,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *204 + items: *206 examples: default: value: @@ -114197,7 +114335,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -114308,7 +114446,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -114438,7 +114576,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *205 + items: *207 examples: default: value: @@ -114530,7 +114668,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -114546,7 +114684,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -114599,7 +114737,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -114666,7 +114804,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -114743,9 +114881,9 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *711 + default: *713 '403': *29 '401': *25 x-github: @@ -115129,9 +115267,9 @@ paths: application/json: schema: type: array - items: *702 + items: *704 examples: - default: *731 + default: *733 headers: Link: *70 x-github: @@ -115235,7 +115373,7 @@ paths: application/json: schema: *22 examples: - default: *551 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115359,7 +115497,7 @@ paths: - docker - nuget - container - - *710 + - *712 - *74 - *19 - *17 @@ -115370,12 +115508,12 @@ paths: application/json: schema: type: array - items: *273 + items: *275 examples: - default: *711 + default: *713 '403': *29 '401': *25 - '400': *712 + '400': *714 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115395,17 +115533,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 responses: '200': description: Response content: application/json: - schema: *273 + schema: *275 examples: - default: *732 + default: *734 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115426,8 +115564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 responses: '204': @@ -115460,8 +115598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *275 - - *276 + - *277 + - *278 - *74 - name: token description: package token @@ -115494,8 +115632,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: - - *275 - - *276 + - *277 + - *278 - *74 responses: '200': @@ -115504,7 +115642,7 @@ paths: application/json: schema: type: array - items: *277 + items: *279 examples: default: value: @@ -115562,16 +115700,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *275 - - *276 + - *277 - *278 + - *280 - *74 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -115606,10 +115744,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *275 - - *276 - - *74 + - *277 - *278 + - *74 + - *280 responses: '204': description: Response @@ -115641,10 +115779,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *275 - - *276 - - *74 + - *277 - *278 + - *74 + - *280 responses: '204': description: Response @@ -115685,9 +115823,9 @@ paths: application/json: schema: type: array - items: *289 + items: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -115709,16 +115847,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *291 + - *293 - *74 responses: '200': description: Response content: application/json: - schema: *289 + schema: *291 examples: - default: *290 + default: *292 headers: Link: *70 '304': *37 @@ -115740,7 +115878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *291 + - *293 - *74 - *17 - *47 @@ -115752,9 +115890,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *733 + default: *735 headers: Link: *70 '304': *37 @@ -115776,7 +115914,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *74 - - *291 + - *293 requestBody: required: true content: @@ -115814,7 +115952,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *734 + items: *736 required: - name - data_type @@ -115830,7 +115968,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *735 + iteration_configuration: *737 required: - name - data_type @@ -115852,20 +115990,20 @@ paths: value: name: Due date data_type: date - single_select_field: *736 - iteration_field: *737 + single_select_field: *738 + iteration_field: *739 responses: '201': description: Response content: application/json: - schema: *295 + schema: *297 examples: - text_field: *738 - number_field: *739 - date_field: *740 - single_select_field: *741 - iteration_field: *742 + text_field: *740 + number_field: *741 + date_field: *742 + single_select_field: *743 + iteration_field: *744 '304': *37 '403': *29 '401': *25 @@ -115886,17 +116024,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *291 - - *743 + - *293 + - *745 - *74 responses: '200': description: Response content: application/json: - schema: *295 + schema: *297 examples: - default: *744 + default: *746 headers: Link: *70 '304': *37 @@ -115919,7 +116057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *291 + - *293 - *74 - *47 - *48 @@ -115952,9 +116090,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -115976,7 +116114,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *74 - - *291 + - *293 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -116046,22 +116184,22 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *298 + value: *300 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *298 + value: *300 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *298 + value: *300 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *298 + value: *300 '304': *37 '403': *29 '401': *25 @@ -116081,9 +116219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *291 + - *293 - *74 - - *301 + - *303 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -116103,9 +116241,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -116126,9 +116264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *291 + - *293 - *74 - - *301 + - *303 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -116198,13 +116336,13 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - text_field: *300 - number_field: *300 - date_field: *300 - single_select_field: *300 - iteration_field: *300 + text_field: *302 + number_field: *302 + date_field: *302 + single_select_field: *302 + iteration_field: *302 '401': *25 '403': *29 '404': *6 @@ -116224,9 +116362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *291 + - *293 - *74 - - *301 + - *303 responses: '204': description: Response @@ -116248,9 +116386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *291 + - *293 - *74 - - *745 + - *747 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -116276,9 +116414,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *300 + default: *302 headers: Link: *70 '304': *37 @@ -116497,9 +116635,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 x-github: @@ -116507,6 +116645,139 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - *74 + - *124 + - *125 + - *126 + - *128 + - *129 + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -116523,10 +116794,10 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *746 - - *127 + - *126 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -116656,8 +116927,8 @@ paths: parameters: - *74 - *124 - - *747 - - *125 + - *748 + - *126 responses: '200': description: Response when getting a billing usage report @@ -116753,11 +117024,11 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *748 - - *127 + - *126 - *749 + - *129 + - *750 responses: '200': description: Response when getting a billing usage summary @@ -116891,9 +117162,9 @@ paths: application/json: schema: type: array - items: *715 + items: *717 examples: - default: *716 + default: *718 headers: Link: *70 x-github: @@ -116923,9 +117194,9 @@ paths: application/json: schema: type: array - items: *717 + items: *719 examples: - default: *750 + default: *751 headers: Link: *70 x-github: @@ -116950,7 +117221,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *751 + - *752 - *62 - *17 - *19 @@ -116962,11 +117233,11 @@ paths: schema: anyOf: - type: array - items: *752 + items: *753 - type: array items: *82 examples: - default-response: *720 + default-response: *722 headers: Link: *70 x-github: @@ -116995,9 +117266,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *286 + default: *288 headers: Link: *70 x-github: @@ -117125,7 +117396,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &753 + enterprise: &754 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117183,7 +117454,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &754 + installation: &755 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117202,7 +117473,7 @@ x-webhooks: required: - id - node_id - organization: &755 + organization: &756 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117262,13 +117533,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &756 + repository: &757 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &788 + properties: &789 id: description: Unique identifier of the repository example: 42 @@ -117952,7 +118223,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &789 + required: &790 - archive_url - assignees_url - blobs_url @@ -118103,10 +118374,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -118182,11 +118453,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: &757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: &758 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) @@ -118409,11 +118680,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: *758 sender: *4 required: - action @@ -118596,11 +118867,11 @@ x-webhooks: - everyone required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + rule: *758 sender: *4 required: - action @@ -118684,7 +118955,7 @@ x-webhooks: type: string enum: - completed - check_run: &759 + check_run: &760 title: CheckRun description: A check performed on the code of a given code change type: object @@ -118738,7 +119009,7 @@ x-webhooks: pull_requests: type: array items: *93 - repository: *161 + repository: *163 status: example: completed type: string @@ -118775,7 +119046,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *758 + deployment: *759 details_url: example: https://example.com type: string @@ -118860,10 +119131,10 @@ x-webhooks: - output - app - pull_requests - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -119254,11 +119525,11 @@ x-webhooks: type: string enum: - created - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -119652,11 +119923,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 requested_action: description: The action requested by the user. type: object @@ -120059,11 +120330,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *760 + installation: *755 + enterprise: *754 + organization: *756 + repository: *757 sender: *4 required: - check_run @@ -121033,10 +121304,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -121730,10 +122001,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -122421,10 +122692,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -122590,7 +122861,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -122735,20 +123006,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &760 + commit_oid: &761 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: *753 - installation: *754 - organization: *755 - ref: &761 + enterprise: *754 + installation: *755 + organization: *756 + ref: &762 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: *756 + repository: *757 sender: *4 required: - action @@ -122913,7 +123184,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -123143,12 +123414,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -123243,7 +123514,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -123414,12 +123685,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -123585,7 +123856,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -123751,12 +124022,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -123855,7 +124126,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124030,16 +124301,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *756 + repository: *757 sender: *4 required: - action @@ -124136,7 +124407,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124276,12 +124547,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *761 + enterprise: *754 + installation: *755 + organization: *756 + ref: *762 + repository: *757 sender: *4 required: - action @@ -124447,7 +124718,7 @@ x-webhooks: required: - login - id - dismissed_comment: *447 + dismissed_comment: *449 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124592,10 +124863,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -124850,10 +125121,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -124933,18 +125204,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *755 - pusher_type: &762 + organization: *756 + pusher_type: &763 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &763 + ref: &764 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -124954,7 +125225,7 @@ x-webhooks: enum: - tag - branch - repository: *756 + repository: *757 sender: *4 required: - ref @@ -125036,10 +125307,10 @@ x-webhooks: type: string enum: - created - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125124,9 +125395,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125203,10 +125474,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125283,10 +125554,10 @@ x-webhooks: type: string enum: - updated - definition: *303 - enterprise: *753 - installation: *754 - organization: *755 + definition: *305 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -125363,19 +125634,19 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - repository: *756 - organization: *755 + enterprise: *754 + installation: *755 + repository: *757 + organization: *756 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *307 + items: *309 old_property_values: type: array description: The old custom property values for the repository. - items: *307 + items: *309 required: - action - repository @@ -125451,18 +125722,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - pusher_type: *762 - ref: *763 + enterprise: *754 + installation: *755 + organization: *756 + pusher_type: *763 + ref: *764 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *756 + repository: *757 sender: *4 required: - ref @@ -125542,11 +125813,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -125626,11 +125897,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -125711,11 +125982,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -125796,11 +126067,11 @@ x-webhooks: type: string enum: - created - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -125879,11 +126150,11 @@ x-webhooks: type: string enum: - dismissed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -125962,11 +126233,11 @@ x-webhooks: type: string enum: - fixed - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126046,11 +126317,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126129,11 +126400,11 @@ x-webhooks: type: string enum: - reopened - alert: *511 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + alert: *513 + installation: *755 + organization: *756 + enterprise: *754 + repository: *757 sender: *4 required: - action @@ -126210,9 +126481,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - key: &764 + enterprise: *754 + installation: *755 + key: &765 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126248,8 +126519,8 @@ x-webhooks: - verified - created_at - read_only - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -126326,11 +126597,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - key: *764 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + key: *765 + organization: *756 + repository: *757 sender: *4 required: - action @@ -126886,12 +127157,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: &770 + workflow: &771 title: Workflow type: object nullable: true @@ -127632,15 +127903,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *765 - required: *766 + properties: *766 + required: *767 nullable: true pull_requests: type: array - items: *606 - repository: *756 - organization: *755 - installation: *754 + items: *608 + repository: *757 + organization: *756 + installation: *755 sender: *4 responses: '200': @@ -127711,7 +127982,7 @@ x-webhooks: type: string enum: - approved - approver: &767 + approver: &768 type: object properties: avatar_url: @@ -127754,11 +128025,11 @@ x-webhooks: type: string comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: &768 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + reviewers: &769 type: array items: type: object @@ -127837,7 +128108,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &769 + workflow_job_run: &770 type: object properties: conclusion: @@ -128568,18 +128839,18 @@ x-webhooks: type: string enum: - rejected - approver: *767 + approver: *768 comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: *768 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + reviewers: *769 sender: *4 since: type: string - workflow_job_run: *769 + workflow_job_run: *770 workflow_job_runs: type: array items: @@ -129283,13 +129554,13 @@ x-webhooks: type: string enum: - requested - enterprise: *753 + enterprise: *754 environment: type: string - installation: *754 - organization: *755 - repository: *756 - requestor: &775 + installation: *755 + organization: *756 + repository: *757 + requestor: &776 title: User type: object nullable: true @@ -131178,12 +131449,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Deployment Workflow Run type: object @@ -131863,7 +132134,7 @@ x-webhooks: type: string enum: - answered - answer: &773 + answer: &774 type: object properties: author_association: @@ -132020,11 +132291,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132151,11 +132422,11 @@ x-webhooks: - from required: - category - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132238,11 +132509,11 @@ x-webhooks: type: string enum: - closed - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132324,7 +132595,7 @@ x-webhooks: type: string enum: - created - comment: &772 + comment: &773 type: object properties: author_association: @@ -132481,11 +132752,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132568,12 +132839,12 @@ x-webhooks: type: string enum: - deleted - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *773 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132668,12 +132939,12 @@ x-webhooks: - from required: - body - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *773 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132757,11 +133028,11 @@ x-webhooks: type: string enum: - created - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132843,11 +133114,11 @@ x-webhooks: type: string enum: - deleted - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -132947,11 +133218,11 @@ x-webhooks: type: string required: - from - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133033,10 +133304,10 @@ x-webhooks: type: string enum: - labeled - discussion: *771 - enterprise: *753 - installation: *754 - label: &774 + discussion: *772 + enterprise: *754 + installation: *755 + label: &775 title: Label type: object properties: @@ -133068,8 +133339,8 @@ x-webhooks: - color - default - description - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133152,11 +133423,11 @@ x-webhooks: type: string enum: - locked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133238,11 +133509,11 @@ x-webhooks: type: string enum: - pinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133324,11 +133595,11 @@ x-webhooks: type: string enum: - reopened - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133413,16 +133684,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *771 - new_repository: *756 + new_discussion: *772 + new_repository: *757 required: - new_discussion - new_repository - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133505,10 +133776,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *771 - old_answer: *773 - organization: *755 - repository: *756 + discussion: *772 + old_answer: *774 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133590,12 +133861,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *771 - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133678,11 +133949,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133764,11 +134035,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *772 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -133841,7 +134112,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *753 + enterprise: *754 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -134501,9 +134772,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - forkee @@ -134649,9 +134920,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pages: description: The pages that were updated. type: array @@ -134688,7 +134959,7 @@ x-webhooks: - action - sha - html_url - repository: *756 + repository: *757 sender: *4 required: - pages @@ -134764,10 +135035,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: &776 + organization: *756 + repositories: &777 description: An array of repository objects that the installation can access. type: array @@ -134793,8 +135064,8 @@ x-webhooks: - name - full_name - private - repository: *756 - requester: *775 + repository: *757 + requester: *776 sender: *4 required: - action @@ -134869,11 +135140,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -134949,11 +135220,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135029,10 +135300,10 @@ x-webhooks: type: string enum: - added - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories_added: &777 + organization: *756 + repositories_added: &778 description: An array of repository objects, which were added to the installation. type: array @@ -135078,15 +135349,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *756 - repository_selection: &778 + repository: *757 + repository_selection: &779 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *775 + requester: *776 sender: *4 required: - action @@ -135165,10 +135436,10 @@ x-webhooks: type: string enum: - removed - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories_added: *777 + organization: *756 + repositories_added: *778 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135195,9 +135466,9 @@ x-webhooks: - name - full_name - private - repository: *756 - repository_selection: *778 - requester: *775 + repository: *757 + repository_selection: *779 + requester: *776 sender: *4 required: - action @@ -135276,11 +135547,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135458,10 +135729,10 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 target_type: type: string @@ -135540,11 +135811,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *753 + enterprise: *754 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *756 + repositories: *777 + repository: *757 requester: nullable: true sender: *4 @@ -135718,8 +135989,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true user: title: User @@ -135804,8 +136075,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136594,8 +136865,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136611,7 +136882,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -136944,8 +137215,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -137025,7 +137296,7 @@ x-webhooks: type: string enum: - deleted - comment: &779 + comment: &780 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137182,8 +137453,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true required: - url @@ -137198,8 +137469,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137984,8 +138255,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138001,7 +138272,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -138336,8 +138607,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -138417,7 +138688,7 @@ x-webhooks: type: string enum: - edited - changes: &808 + changes: &809 description: The changes to the comment. type: object properties: @@ -138429,9 +138700,9 @@ x-webhooks: type: string required: - from - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139219,8 +139490,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139236,7 +139507,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -139569,8 +139840,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -139651,9 +139922,9 @@ x-webhooks: type: string enum: - pinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140443,8 +140714,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140460,7 +140731,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -140795,8 +141066,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -140876,9 +141147,9 @@ x-webhooks: type: string enum: - unpinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *780 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141668,8 +141939,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141685,7 +141956,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -142020,8 +142291,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142110,9 +142381,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142201,9 +142472,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142291,9 +142562,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142382,9 +142653,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -142464,10 +142735,10 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - issue: &780 + assignee: *776 + enterprise: *754 + installation: *755 + issue: &781 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143259,11 +143530,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143279,7 +143550,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -143380,8 +143651,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -143461,8 +143732,8 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144259,11 +144530,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144279,7 +144550,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -144515,8 +144786,8 @@ x-webhooks: required: - state - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -144595,8 +144866,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145384,11 +145655,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145404,7 +145675,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -145504,8 +145775,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -145584,8 +145855,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146395,11 +146666,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146415,7 +146686,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -146494,7 +146765,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &781 + milestone: &782 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146632,8 +146903,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -146732,8 +147003,8 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147525,11 +147796,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147542,7 +147813,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -147646,9 +147917,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -147728,9 +147999,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *754 + installation: *755 + issue: *781 issue_field: type: object description: The issue field whose value was set or updated on the @@ -147839,8 +148110,8 @@ x-webhooks: - id required: - from - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -147920,9 +148191,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *754 + installation: *755 + issue: *781 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -147980,8 +148251,8 @@ x-webhooks: nullable: true required: - id - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -148061,8 +148332,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148853,11 +149124,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148870,7 +149141,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -148974,9 +149245,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -149056,8 +149327,8 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149872,11 +150143,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149889,7 +150160,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *255 + type: *257 title: description: Title of the issue type: string @@ -149970,8 +150241,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -150050,8 +150321,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150860,11 +151131,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150880,7 +151151,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -150958,9 +151229,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *781 - organization: *755 - repository: *756 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -151823,11 +152094,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151928,7 +152199,7 @@ x-webhooks: required: - login - id - type: *255 + type: *257 required: - id - number @@ -152408,8 +152679,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153193,11 +153464,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153213,7 +153484,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -153321,8 +153592,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -153402,9 +153673,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *753 - installation: *754 - issue: &782 + enterprise: *754 + installation: *755 + issue: &783 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -154190,11 +154461,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154210,7 +154481,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -154310,8 +154581,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -154390,8 +154661,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155204,11 +155475,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155302,9 +155573,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *255 - organization: *755 - repository: *756 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -156173,11 +156444,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156193,7 +156464,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -156772,11 +157043,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *783 + organization: *756 + repository: *757 sender: *4 required: - action @@ -156856,12 +157127,12 @@ x-webhooks: type: string enum: - typed - enterprise: *753 - installation: *754 - issue: *780 - type: *255 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -156942,7 +157213,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &811 + assignee: &812 title: User type: object nullable: true @@ -157012,11 +157283,11 @@ x-webhooks: required: - login - id - enterprise: *753 - installation: *754 - issue: *780 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157095,12 +157366,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - issue: *780 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -157180,8 +157451,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157994,11 +158265,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *688 - issue_dependencies_summary: *689 + sub_issues_summary: *690 + issue_dependencies_summary: *691 issue_field_values: type: array - items: *567 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158014,7 +158285,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *255 + type: *257 updated_at: type: string format: date-time @@ -158092,8 +158363,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158173,11 +158444,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *783 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158256,12 +158527,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *753 - installation: *754 - issue: *780 - type: *255 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + issue: *781 + type: *257 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158341,11 +158612,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158423,11 +158694,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158537,11 +158808,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + label: *775 + organization: *756 + repository: *757 sender: *4 required: - action @@ -158623,9 +158894,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: &783 + enterprise: *754 + installation: *755 + marketplace_purchase: &784 title: Marketplace Purchase type: object required: @@ -158708,8 +158979,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: &784 + organization: *756 + previous_marketplace_purchase: &785 title: Marketplace Purchase type: object properties: @@ -158789,7 +159060,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -158869,10 +159140,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -158955,7 +159226,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -159037,10 +159308,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159122,7 +159393,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *757 sender: *4 required: - action @@ -159203,8 +159474,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 marketplace_purchase: title: Marketplace Purchase type: object @@ -159286,9 +159557,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + organization: *756 + previous_marketplace_purchase: *785 + repository: *757 sender: *4 required: - action @@ -159368,12 +159639,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + enterprise: *754 + installation: *755 + marketplace_purchase: *784 + organization: *756 + previous_marketplace_purchase: *785 + repository: *757 sender: *4 required: - action @@ -159475,11 +159746,11 @@ x-webhooks: type: string required: - to - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -159579,11 +159850,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -159662,11 +159933,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 sender: *4 required: - action @@ -159744,11 +160015,11 @@ x-webhooks: type: string enum: - added - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 scope: description: The scope of the membership. Currently, can only be `team`. @@ -159824,7 +160095,7 @@ x-webhooks: required: - login - id - team: &785 + team: &786 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -160047,11 +160318,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + member: *776 + organization: *756 + repository: *757 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160128,7 +160399,7 @@ x-webhooks: required: - login - id - team: *785 + team: *786 required: - action - scope @@ -160210,8 +160481,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *754 - merge_group: &787 + installation: *755 + merge_group: &788 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -160230,15 +160501,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *786 + head_commit: *787 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160324,10 +160595,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *754 - merge_group: *787 - organization: *755 - repository: *756 + installation: *755 + merge_group: *788 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160400,7 +160671,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *754 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -160509,16 +160780,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *754 - organization: *755 + installation: *755 + organization: *756 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -160599,11 +160870,11 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160682,9 +160953,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - milestone: &790 + enterprise: *754 + installation: *755 + milestone: &791 title: Milestone description: A collection of related issues and pull requests. type: object @@ -160821,8 +161092,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -160901,11 +161172,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161015,11 +161286,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *782 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161099,11 +161370,11 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - milestone: *790 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + milestone: *791 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161182,11 +161453,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *776 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161265,11 +161536,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *776 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161348,9 +161619,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - membership: &791 + enterprise: *754 + installation: *755 + membership: &792 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -161457,8 +161728,8 @@ x-webhooks: - role - organization_url - user - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161536,11 +161807,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161619,8 +161890,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -161736,10 +162007,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 - user: *775 + user: *776 required: - action - invitation @@ -161817,11 +162088,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161908,11 +162179,11 @@ x-webhooks: properties: from: type: string - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + membership: *792 + organization: *756 + repository: *757 sender: *4 required: - action @@ -161989,9 +162260,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 package: description: Information about the package. type: object @@ -162490,7 +162761,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &792 + items: &793 title: Ruby Gems metadata type: object properties: @@ -162585,7 +162856,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -162661,9 +162932,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 package: description: Information about the package. type: object @@ -163016,7 +163287,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *793 source_url: type: string format: uri @@ -163086,7 +163357,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -163262,12 +163533,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *753 + enterprise: *754 id: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - id @@ -163344,7 +163615,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &793 + personal_access_token_request: &794 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -163490,10 +163761,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *753 - organization: *755 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -163570,11 +163841,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *794 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -163650,11 +163921,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *794 + enterprise: *754 + organization: *756 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -163729,11 +164000,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *793 - organization: *755 - enterprise: *753 + personal_access_token_request: *794 + organization: *756 + enterprise: *754 sender: *4 - installation: *754 + installation: *755 required: - action - personal_access_token_request @@ -163838,7 +164109,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *794 + last_response: *795 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -163870,8 +164141,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 zen: description: Random string of GitHub zen. @@ -164116,10 +164387,10 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: &795 + enterprise: *754 + installation: *755 + organization: *756 + project_card: &796 title: Project Card type: object properties: @@ -164238,7 +164509,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -164319,11 +164590,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_card: *796 + repository: *757 sender: *4 required: - action @@ -164403,9 +164674,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 project_card: title: Project Card type: object @@ -164533,8 +164804,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -164628,11 +164899,11 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_card: *796 + repository: *757 sender: *4 required: - action @@ -164726,9 +164997,9 @@ x-webhooks: - from required: - column_id - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 project_card: allOf: - title: Project Card @@ -164918,7 +165189,7 @@ x-webhooks: type: string required: - after_id - repository: *756 + repository: *757 sender: *4 required: - action @@ -164998,10 +165269,10 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - organization: *755 - project: &797 + enterprise: *754 + installation: *755 + organization: *756 + project: &798 title: Project type: object properties: @@ -165125,7 +165396,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -165205,10 +165476,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_column: &796 + enterprise: *754 + installation: *755 + organization: *756 + project_column: &797 title: Project Column type: object properties: @@ -165247,7 +165518,7 @@ x-webhooks: - name - created_at - updated_at - repository: *756 + repository: *757 sender: *4 required: - action @@ -165326,18 +165597,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -165427,11 +165698,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 + repository: *757 sender: *4 required: - action @@ -165511,11 +165782,11 @@ x-webhooks: type: string enum: - moved - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project_column: *797 + repository: *757 sender: *4 required: - action @@ -165595,11 +165866,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -165679,18 +165950,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project: *797 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *789 + required: *790 nullable: true sender: *4 required: @@ -165792,11 +166063,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -165875,11 +166146,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + project: *798 + repository: *757 sender: *4 required: - action @@ -165960,9 +166231,9 @@ x-webhooks: type: string enum: - closed - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166043,9 +166314,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166126,9 +166397,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166245,9 +166516,9 @@ x-webhooks: type: string to: type: string - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -166330,7 +166601,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &802 type: object properties: archived_at: @@ -166344,9 +166615,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *754 - organization: *755 - projects_v2_item: &798 + installation: *755 + organization: *756 + projects_v2_item: &799 title: Projects v2 Item description: An item belonging to a project type: object @@ -166364,7 +166635,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *296 + content_type: *298 creator: *4 created_at: type: string @@ -166481,9 +166752,9 @@ x-webhooks: nullable: true to: type: string - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -166565,9 +166836,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -166648,9 +166919,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -166756,7 +167027,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &800 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -166778,7 +167049,7 @@ x-webhooks: required: - id - name - - &800 + - &801 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -166812,8 +167083,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - *800 + - *801 required: - field_value - type: object @@ -166829,9 +167100,9 @@ x-webhooks: nullable: true required: - body - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -166926,9 +167197,9 @@ x-webhooks: to: type: string nullable: true - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167011,10 +167282,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *754 - organization: *755 - projects_v2_item: *798 + changes: *802 + installation: *755 + organization: *756 + projects_v2_item: *799 sender: *4 required: - action @@ -167096,9 +167367,9 @@ x-webhooks: type: string enum: - reopened - installation: *754 - organization: *755 - projects_v2: *289 + installation: *755 + organization: *756 + projects_v2: *291 sender: *4 required: - action @@ -167179,14 +167450,14 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_status_update: &804 + installation: *755 + organization: *756 + projects_v2_status_update: &805 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *802 - required: *803 + properties: *803 + required: *804 sender: *4 required: - action @@ -167267,9 +167538,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *755 + organization: *756 + projects_v2_status_update: *805 sender: *4 required: - action @@ -167405,9 +167676,9 @@ x-webhooks: type: string format: date nullable: true - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *755 + organization: *756 + projects_v2_status_update: *805 sender: *4 required: - action @@ -167478,10 +167749,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - repository @@ -167558,13 +167829,13 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - number: &805 + assignee: *776 + enterprise: *754 + installation: *755 + number: &806 description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -169851,7 +170122,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -169933,11 +170204,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -172219,7 +172490,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *757 sender: *4 required: - action @@ -172301,11 +172572,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -174587,7 +174858,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *757 sender: *4 required: - action @@ -174669,13 +174940,13 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: &806 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: &807 allOf: - - *606 + - *608 - type: object properties: allow_auto_merge: @@ -174737,7 +175008,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *756 + repository: *757 sender: *4 required: - action @@ -174818,12 +175089,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -174903,11 +175174,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - milestone: *590 - number: *805 - organization: *755 - pull_request: &807 + enterprise: *754 + milestone: *592 + number: *806 + organization: *756 + pull_request: &808 title: Pull Request type: object properties: @@ -177188,7 +177459,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -177267,11 +177538,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -179571,7 +179842,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *756 + repository: *757 sender: *4 required: - action @@ -179695,12 +179966,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -179780,11 +180051,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -182069,7 +182340,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -182149,11 +182420,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + label: *775 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -184439,7 +184710,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -184520,10 +184791,10 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -186807,7 +187078,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -186887,12 +187158,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - milestone: *590 - number: *805 - organization: *755 - pull_request: *807 - repository: *756 + enterprise: *754 + milestone: *592 + number: *806 + organization: *756 + pull_request: *808 + repository: *757 sender: *4 required: - action @@ -186971,12 +187242,12 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -187057,12 +187328,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -187142,12 +187413,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 + pull_request: *807 + repository: *757 sender: *4 required: - action @@ -187513,9 +187784,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -189689,7 +189960,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -189769,7 +190040,7 @@ x-webhooks: type: string enum: - deleted - comment: &809 + comment: &810 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -190054,9 +190325,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -192218,7 +192489,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -192298,11 +192569,11 @@ x-webhooks: type: string enum: - edited - changes: *808 - comment: *809 - enterprise: *753 - installation: *754 - organization: *755 + changes: *809 + comment: *810 + enterprise: *754 + installation: *755 + organization: *756 pull_request: type: object properties: @@ -194467,7 +194738,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *757 sender: *4 required: - action @@ -194548,9 +194819,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -196727,7 +196998,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 review: description: The review that was affected. type: object @@ -196974,9 +197245,9 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -199026,8 +199297,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: &810 + repository: *757 + review: &811 description: The review that was affected. type: object properties: @@ -199260,12 +199531,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -201552,7 +201823,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_reviewer: title: User type: object @@ -201636,12 +201907,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -203935,7 +204206,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204127,12 +204398,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -206421,7 +206692,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_reviewer: title: User type: object @@ -206506,12 +206777,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *754 + installation: *755 number: description: The pull request number. type: integer - organization: *755 + organization: *756 pull_request: title: Pull Request type: object @@ -208791,7 +209062,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 requested_team: title: Team description: Groups of organization members that gives permissions @@ -208972,9 +209243,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -211153,8 +211424,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: *810 + repository: *757 + review: *811 sender: *4 required: - action @@ -211234,9 +211505,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -213324,7 +213595,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 sender: *4 thread: type: object @@ -213711,9 +213982,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 pull_request: title: Simple Pull Request type: object @@ -215787,7 +216058,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *757 sender: *4 thread: type: object @@ -216177,10 +216448,10 @@ x-webhooks: type: string before: type: string - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -218455,7 +218726,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -218537,11 +218808,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *811 - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + assignee: *812 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -220828,7 +221099,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -220907,11 +221178,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + label: *775 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -223188,7 +223459,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -223269,10 +223540,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *754 + installation: *755 + number: *806 + organization: *756 pull_request: title: Pull Request type: object @@ -225541,7 +225812,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *757 sender: *4 required: - action @@ -225741,7 +226012,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *753 + enterprise: *754 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -225833,8 +226104,8 @@ x-webhooks: - url - author - committer - installation: *754 - organization: *755 + installation: *755 + organization: *756 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -226420,9 +226691,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 registry_package: type: object properties: @@ -226868,7 +227139,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *792 + items: *793 summary: type: string tag_name: @@ -226922,7 +227193,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -227000,9 +227271,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 registry_package: type: object properties: @@ -227310,7 +227581,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *793 summary: type: string tag_name: @@ -227359,7 +227630,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *757 sender: *4 required: - action @@ -227436,10 +227707,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - release: &812 + enterprise: *754 + installation: *755 + organization: *756 + release: &813 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227757,7 +228028,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *756 + repository: *757 sender: *4 required: - action @@ -227834,11 +228105,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -227955,11 +228226,11 @@ x-webhooks: type: boolean required: - to - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -228037,9 +228308,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -228361,7 +228632,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *757 sender: *4 required: - action @@ -228437,10 +228708,10 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - release: &813 + enterprise: *754 + installation: *755 + organization: *756 + release: &814 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228759,7 +229030,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *757 sender: *4 required: - action @@ -228835,11 +229106,11 @@ x-webhooks: type: string enum: - released - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *813 + repository: *757 sender: *4 required: - action @@ -228915,11 +229186,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *753 - installation: *754 - organization: *755 - release: *813 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + release: *814 + repository: *757 sender: *4 required: - action @@ -228995,11 +229266,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *675 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_advisory: *677 sender: *4 required: - action @@ -229075,11 +229346,11 @@ x-webhooks: type: string enum: - reported - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *675 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_advisory: *677 sender: *4 required: - action @@ -229155,10 +229426,10 @@ x-webhooks: type: string enum: - archived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229235,10 +229506,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229316,10 +229587,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229403,10 +229674,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229518,10 +229789,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229593,10 +229864,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 status: type: string @@ -229677,10 +229948,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229757,10 +230028,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229854,10 +230125,10 @@ x-webhooks: - name required: - repository - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -229937,11 +230208,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 sender: *4 required: - action @@ -230019,11 +230290,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 sender: *4 required: - action @@ -230101,11 +230372,11 @@ x-webhooks: type: string enum: - edited - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_ruleset: *337 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + repository_ruleset: *339 changes: type: object properties: @@ -230124,16 +230395,16 @@ x-webhooks: properties: added: type: array - items: *311 + items: *313 deleted: type: array - items: *311 + items: *313 updated: type: array items: type: object properties: - condition: *311 + condition: *313 changes: type: object properties: @@ -230166,16 +230437,16 @@ x-webhooks: properties: added: type: array - items: *626 + items: *628 deleted: type: array - items: *626 + items: *628 updated: type: array items: type: object properties: - rule: *626 + rule: *628 changes: type: object properties: @@ -230409,10 +230680,10 @@ x-webhooks: - from required: - owner - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230490,10 +230761,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230571,7 +230842,7 @@ x-webhooks: type: string enum: - create - alert: &814 + alert: &815 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -230693,10 +230964,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230902,10 +231173,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -230983,11 +231254,11 @@ x-webhooks: type: string enum: - reopen - alert: *814 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *815 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231186,10 +231457,10 @@ x-webhooks: enum: - fixed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231267,11 +231538,11 @@ x-webhooks: type: string enum: - assigned - alert: &815 + alert: &816 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -231279,8 +231550,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri @@ -231410,10 +231681,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231491,11 +231762,11 @@ x-webhooks: type: string enum: - created - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231576,11 +231847,11 @@ x-webhooks: type: string enum: - created - alert: *815 - installation: *754 - location: *816 - organization: *755 - repository: *756 + alert: *816 + installation: *755 + location: *817 + organization: *756 + repository: *757 sender: *4 required: - location @@ -231818,11 +232089,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231900,11 +232171,11 @@ x-webhooks: type: string enum: - reopened - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -231982,11 +232253,11 @@ x-webhooks: type: string enum: - resolved - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232064,12 +232335,12 @@ x-webhooks: type: string enum: - unassigned - alert: *815 + alert: *816 assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232147,11 +232418,11 @@ x-webhooks: type: string enum: - validated - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *816 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -232277,10 +232548,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *756 - enterprise: *753 - installation: *754 - organization: *755 + repository: *757 + enterprise: *754 + installation: *755 + organization: *756 sender: *4 required: - action @@ -232358,11 +232629,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: &817 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + security_advisory: &818 description: The details of the security advisory, including summary, description, and severity. type: object @@ -232533,11 +232804,11 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: *817 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 + security_advisory: *818 sender: *4 required: - action @@ -232610,10 +232881,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -232785,11 +233056,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *310 - enterprise: *753 - installation: *754 - organization: *755 - repository: *358 + security_and_analysis: *312 + enterprise: *754 + installation: *755 + organization: *756 + repository: *360 sender: *4 required: - changes @@ -232867,12 +233138,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: &818 + sponsorship: &819 type: object properties: created_at: @@ -233173,12 +233444,12 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - sponsorship @@ -233266,12 +233537,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -233348,17 +233619,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &819 + effective_date: &820 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: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - sponsorship @@ -233432,7 +233703,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &820 + changes: &821 type: object properties: tier: @@ -233476,13 +233747,13 @@ x-webhooks: - from required: - tier - effective_date: *819 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + effective_date: *820 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -233559,13 +233830,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *820 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + changes: *821 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - sponsorship: *818 + sponsorship: *819 required: - action - changes @@ -233639,10 +233910,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233725,10 +233996,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234148,15 +234419,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *753 + enterprise: *754 id: description: The unique identifier of the status. type: integer - installation: *754 + installation: *755 name: type: string - organization: *755 - repository: *756 + organization: *756 + repository: *757 sender: *4 sha: description: The Commit SHA. @@ -234271,9 +234542,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -234362,9 +234633,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -234453,9 +234724,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -234544,9 +234815,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -234622,12 +234893,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - team: &821 + team: &822 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -234850,9 +235121,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -235310,7 +235581,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -235386,9 +235657,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -235846,7 +236117,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -235923,9 +236194,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -236383,7 +236654,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -236527,9 +236798,9 @@ x-webhooks: - from required: - permissions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -236987,7 +237258,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - changes @@ -237065,9 +237336,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *754 + installation: *755 + organization: *756 repository: title: Repository description: A git repository @@ -237525,7 +237796,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *822 required: - action - team @@ -237601,10 +237872,10 @@ x-webhooks: type: string enum: - started - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 required: - action @@ -237677,16 +237948,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *753 + enterprise: *754 inputs: type: object nullable: true additionalProperties: true - installation: *754 - organization: *755 + installation: *755 + organization: *756 ref: type: string - repository: *756 + repository: *757 sender: *4 workflow: type: string @@ -237768,10 +238039,10 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: allOf: @@ -238008,7 +238279,7 @@ x-webhooks: type: string required: - conclusion - deployment: *518 + deployment: *520 required: - action - repository @@ -238087,10 +238358,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: allOf: @@ -238350,7 +238621,7 @@ x-webhooks: required: - status - steps - deployment: *518 + deployment: *520 required: - action - repository @@ -238429,10 +238700,10 @@ x-webhooks: type: string enum: - queued - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: type: object @@ -238567,7 +238838,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *518 + deployment: *520 required: - action - repository @@ -238646,10 +238917,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 workflow_job: type: object @@ -238785,7 +239056,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *518 + deployment: *520 required: - action - repository @@ -238865,12 +239136,12 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object @@ -239869,12 +240140,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object @@ -240858,12 +241129,12 @@ x-webhooks: type: string enum: - requested - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *754 + installation: *755 + organization: *756 + repository: *757 sender: *4 - workflow: *770 + workflow: *771 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 6cf866a6c..5aabf28d3 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -25450,8 +25450,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25609,8 +25609,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -25774,8 +25774,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -25938,8 +25938,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -26097,8 +26097,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -76646,6 +76646,395 @@ } } }, + "/organizations/{org}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an organization", + "description": "Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "user", + "description": "The user name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "organization": { + "type": "string", + "description": "The unique identifier of the organization." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "organization", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "organization": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -128556,8 +128945,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -128718,8 +129107,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -128883,8 +129272,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -129050,8 +129439,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -129212,8 +129601,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -758372,6 +758761,382 @@ } } }, + "/users/{username}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for a user", + "description": "Gets a report of AI credit usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-user", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user" + }, + "parameters": [ + { + "name": "username", + "description": "The handle for the GitHub user account.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "user": { + "type": "string", + "description": "The unique identifier of the user." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "user", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "user": "monalisa", + "usageItems": [ + { + "product": "Copilot AI Credits", + "sku": "AI Credit", + "model": "GPT-5", + "unitType": "ai-credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "billing", + "subcategory": "usage" + } + } + }, "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 8eac5d9bb..854137ecf 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -888,7 +888,7 @@ paths: - subscriptions_url - type - url - type: &345 + type: &347 type: string description: The type of credit the user is receiving. enum: @@ -1048,7 +1048,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &131 + schema: &133 title: Validation Error Simple description: Validation Error Simple type: object @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &680 + - &682 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4169,7 +4169,7 @@ paths: schema: type: integer default: 30 - - &230 + - &232 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 @@ -4178,7 +4178,7 @@ paths: required: false schema: type: string - - &231 + - &233 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4198,7 +4198,7 @@ paths: application/json: schema: type: array - items: &232 + items: &234 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4278,7 +4278,7 @@ paths: - installation_id - repository_id examples: - default: &233 + default: &235 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4337,7 +4337,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &130 + schema: &132 title: Validation Error description: Validation Error type: object @@ -4406,7 +4406,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &236 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4520,7 +4520,7 @@ paths: - request - response examples: - default: &235 + default: &237 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5516,7 +5516,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &309 + properties: &311 id: description: Unique identifier of the repository example: 42 @@ -5967,7 +5967,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &310 + required: &312 - archive_url - assignees_url - blobs_url @@ -6041,7 +6041,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &311 + x-github-breaking-changes: &313 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -9997,7 +9997,7 @@ paths: required: true content: application/json: - schema: &143 + schema: &145 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -10697,7 +10697,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &199 type: array description: A list of default code security configurations items: @@ -10713,7 +10713,7 @@ paths: default configuration: *49 examples: - default: &198 + default: &200 value: - default_for_new_repos: public configuration: @@ -11175,7 +11175,7 @@ paths: default: value: default_for_new_repos: all - configuration: &196 + configuration: &198 value: id: 1325 target_type: organization @@ -11265,7 +11265,7 @@ paths: application/json: schema: type: array - items: &199 + items: &201 type: object description: Repositories associated with a code security configuration and attachment status @@ -11566,7 +11566,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &200 + repository: &202 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -11698,8 +11698,8 @@ paths: default: &58 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' '500': *55 '403': *29 @@ -11764,8 +11764,8 @@ paths: default: &60 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' '500': *55 @@ -12107,7 +12107,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &210 + - &212 name: classification in: query description: |- @@ -12116,7 +12116,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &211 + - &213 name: state in: query description: |- @@ -12125,7 +12125,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &212 + - &214 name: severity in: query description: |- @@ -12134,7 +12134,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &213 + - &215 name: ecosystem in: query description: |- @@ -12143,14 +12143,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &214 + - &216 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 - - &215 + - &217 name: epss_percentage in: query description: |- @@ -12162,7 +12162,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &509 + - &511 name: has in: query description: |- @@ -12176,7 +12176,7 @@ paths: type: string enum: - patch - - &216 + - &218 name: assignee in: query description: |- @@ -12185,7 +12185,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &217 + - &219 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12195,7 +12195,7 @@ paths: enum: - development - runtime - - &218 + - &220 name: sort in: query description: |- @@ -12221,11 +12221,11 @@ paths: application/json: schema: type: array - items: &219 + items: &221 type: object description: A Dependabot alert. properties: - number: &186 + number: &188 type: integer description: The security alert number. readOnly: true @@ -12288,7 +12288,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &510 + security_advisory: &512 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12517,29 +12517,29 @@ paths: - withdrawn_at version: '2026-03-10' security_vulnerability: *66 - url: &189 + url: &191 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &190 + html_url: &192 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &187 + created_at: &189 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &188 + updated_at: &190 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &192 + dismissed_at: &194 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -12569,21 +12569,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &191 + fixed_at: &193 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &511 + auto_dismissed_at: &513 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &512 + dismissal_request: &514 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12645,7 +12645,7 @@ paths: - repository additionalProperties: false examples: - default: &220 + default: &222 value: - number: 2 state: dismissed @@ -13030,7 +13030,7 @@ paths: description: Response content: application/json: - schema: &221 + schema: &223 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13056,7 +13056,7 @@ paths: nullable: true additionalProperties: false examples: - default: &222 + default: &224 value: default_level: public accessible_repositories: @@ -13740,7 +13740,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &206 + properties: &208 login: type: string example: github @@ -13781,7 +13781,7 @@ paths: type: string example: A great organization nullable: true - required: &207 + required: &209 - login - url - id @@ -14271,7 +14271,7 @@ paths: properties: action: type: string - discussion: &774 + discussion: &775 title: Discussion description: A Discussion in a repository. type: object @@ -14638,7 +14638,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &562 + properties: &564 id: type: integer format: int64 @@ -14751,7 +14751,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &293 + properties: &295 url: type: string format: uri @@ -14821,7 +14821,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &294 + required: &296 - closed_issues - creator - description @@ -14900,7 +14900,7 @@ paths: timeline_url: type: string format: uri - type: &256 + type: &258 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15016,7 +15016,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &691 + sub_issues_summary: &693 title: Sub-issues Summary type: object properties: @@ -15103,7 +15103,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &586 + properties: &588 pinned_at: type: string format: date-time @@ -15115,7 +15115,7 @@ paths: properties: *20 required: *21 nullable: true - required: &587 + required: &589 - pinned_at - pinned_by nullable: true @@ -15129,7 +15129,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &692 + issue_dependencies_summary: &694 title: Issue Dependencies Summary type: object properties: @@ -15148,7 +15148,7 @@ paths: - total_blocking issue_field_values: type: array - items: &570 + items: &572 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15209,7 +15209,7 @@ paths: - node_id - data_type - value - required: &563 + required: &565 - assignee - closed_at - comments @@ -15230,7 +15230,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &564 + x-github-breaking-changes: &566 - changeset: deprecate_beta_media_type patch: properties: @@ -15290,7 +15290,7 @@ paths: action: type: string issue: *88 - comment: &558 + comment: &560 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15954,7 +15954,7 @@ paths: type: string release: allOf: - - &620 + - &622 title: Release description: A release. type: object @@ -16025,7 +16025,7 @@ paths: author: *4 assets: type: array - items: &621 + items: &623 title: Release Asset description: Data related to a release. type: object @@ -16645,7 +16645,7 @@ paths: url: type: string format: uri - user: &698 + user: &700 title: Public User description: Public User type: object @@ -18536,7 +18536,7 @@ paths: - closed - all default: open - - &259 + - &261 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18587,7 +18587,7 @@ paths: type: array items: *88 examples: - default: &260 + default: &262 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19972,14 +19972,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &357 + - &359 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &358 + - &360 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20041,7 +20041,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &361 + '301': &363 description: Moved permanently content: application/json: @@ -20063,7 +20063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &596 + - &598 name: all description: If `true`, show notifications marked as read. in: query @@ -20071,7 +20071,7 @@ paths: schema: type: boolean default: false - - &597 + - &599 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20081,7 +20081,7 @@ paths: type: boolean default: false - *95 - - &598 + - &600 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: @@ -20113,11 +20113,11 @@ paths: properties: id: type: string - repository: &161 + repository: &163 title: Minimal Repository description: Minimal Repository type: object - properties: &224 + properties: &226 id: type: integer format: int64 @@ -20403,7 +20403,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &312 + security_and_analysis: &314 nullable: true type: object properties: @@ -20523,7 +20523,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &225 + required: &227 - archive_url - assignees_url - blobs_url @@ -20570,7 +20570,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &226 + x-github-breaking-changes: &228 - changeset: remove_has_downloads patch: properties: @@ -20617,7 +20617,7 @@ paths: - url - subscription_url examples: - default: &599 + default: &601 value: - id: '1' repository: @@ -21319,6 +21319,185 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/organizations/{org}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an organization + description: |- + Gets a report of AI credit usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization + parameters: + - *78 + - &124 + 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, + `2025`. Default value is the current year. + in: query + required: false + schema: + type: integer + - &125 + name: month + description: If specified, only return results for a single month. The value + of `month` is an integer between `1` and `12`. Default value is the current + month. If no year is specified the default `year` is used. + in: query + required: false + schema: + type: integer + - &126 + name: day + description: If specified, only return results for a single day. The value + of `day` is an integer between `1` and `31`. If no `year` or `month` is + specified, the default `year` and `month` are used. + in: query + required: false + schema: + type: integer + - &127 + name: user + description: The user name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &128 + name: model + description: The model name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &129 + name: product + description: The product name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + organization: + type: string + description: The unique identifier of the organization. + user: + type: string + description: The name of the user for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - organization + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + organization: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -21866,53 +22045,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *78 - - &124 - 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, - `2025`. Default value is the current year. - in: query - required: false - schema: - type: integer - - &126 - name: month - description: If specified, only return results for a single month. The value - of `month` is an integer between `1` and `12`. Default value is the current - month. If no year is specified the default `year` is used. - in: query - required: false - schema: - type: integer - - &125 - name: day - description: If specified, only return results for a single day. The value - of `day` is an integer between `1` and `31`. If no `year` or `month` is - specified, the default `year` and `month` are used. - in: query - required: false - schema: - type: integer - - name: user - description: The user name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &749 - name: model - description: The model name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &127 - name: product - description: The product name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string + - *124 + - *125 + - *126 + - *127 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -22045,7 +22183,7 @@ paths: parameters: - *78 - *124 - - &750 + - &751 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -22054,7 +22192,7 @@ paths: required: false schema: type: integer - - *125 + - *126 responses: '200': description: Billing usage report response for an organization @@ -22155,17 +22293,17 @@ paths: parameters: - *78 - *124 - - *126 - *125 - - &751 + - *126 + - &752 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *127 - - &752 + - *129 + - &753 name: sku description: The SKU to query for usage. in: query @@ -22308,7 +22446,7 @@ paths: description: Response content: application/json: - schema: &128 + schema: &130 title: Organization Full description: Organization Full type: object @@ -22633,7 +22771,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &129 + default-response: &131 value: login: github id: 1 @@ -22955,17 +23093,17 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: - default: *129 + default: *131 '422': description: Validation failed content: application/json: schema: oneOf: - - *130 - - *131 + - *132 + - *133 '409': *54 x-github: githubCloudOnly: false @@ -23095,7 +23233,7 @@ paths: type: integer repository_cache_usages: type: array - items: &368 + items: &370 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -23168,7 +23306,7 @@ paths: type: integer runners: type: array - items: &132 + items: &134 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -23222,7 +23360,7 @@ paths: - display_name - source nullable: true - machine_size_details: &140 + machine_size_details: &142 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -23318,7 +23456,7 @@ paths: - public_ip_enabled - platform examples: - default: &160 + default: &162 value: total_count: 2 runners: @@ -23455,9 +23593,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: &141 + default: &143 value: id: 5 name: My hosted ubuntu runner @@ -23514,7 +23652,7 @@ paths: type: integer images: type: array - items: &133 + items: &135 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -23565,7 +23703,7 @@ paths: - latest_version - state examples: - default: &135 + default: &137 value: total_count: 2 image_versions: @@ -23597,7 +23735,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *78 - - &134 + - &136 name: image_definition_id description: Image definition ID of custom image in: path @@ -23609,7 +23747,7 @@ paths: description: Response content: application/json: - schema: *133 + schema: *135 examples: default: value: @@ -23640,7 +23778,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *78 - - *134 + - *136 responses: '204': description: Response @@ -23663,7 +23801,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *134 + - *136 - *78 responses: '200': @@ -23680,7 +23818,7 @@ paths: type: integer image_versions: type: array - items: &136 + items: &138 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -23713,7 +23851,7 @@ paths: - created_on - state_details examples: - default: *135 + default: *137 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23734,8 +23872,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - *78 - - *134 - - &137 + - *136 + - &139 name: version description: Version of a custom image in: path @@ -23748,7 +23886,7 @@ paths: description: Response content: application/json: - schema: *136 + schema: *138 examples: default: value: @@ -23775,8 +23913,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *78 - - *134 - - *137 + - *136 + - *139 responses: '204': description: Response @@ -23813,7 +23951,7 @@ paths: type: integer images: type: array - items: &138 + items: &140 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -23849,7 +23987,7 @@ paths: - display_name - source examples: - default: &139 + default: &141 value: id: ubuntu-20.04 platform: linux-x64 @@ -23889,9 +24027,9 @@ paths: type: integer images: type: array - items: *138 + items: *140 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23977,7 +24115,7 @@ paths: type: integer machine_specs: type: array - items: *140 + items: *142 examples: default: value: @@ -24047,7 +24185,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *78 - - &142 + - &144 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -24059,9 +24197,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 headers: Link: *70 x-github: @@ -24082,7 +24220,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 requestBody: required: true content: @@ -24148,9 +24286,9 @@ paths: description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -24167,15 +24305,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *78 - - *142 + - *144 responses: '202': description: Response content: application/json: - schema: *132 + schema: *134 examples: - default: *141 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -24233,7 +24371,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *145 examples: default: *46 responses: @@ -24326,7 +24464,7 @@ paths: required: - include_claim_keys examples: - default: &144 + default: &146 value: include_claim_keys: - repo @@ -24371,13 +24509,13 @@ paths: format. type: boolean examples: - default: *144 + default: *146 responses: '201': description: Empty response content: application/json: - schema: &170 + schema: &172 title: Empty Object description: An object without any properties. type: object @@ -24416,7 +24554,7 @@ paths: schema: type: object properties: - enabled_repositories: &145 + enabled_repositories: &147 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -24429,7 +24567,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &146 + allowed_actions: &148 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -24437,12 +24575,12 @@ paths: - all - local_only - selected - selected_actions_url: &373 + selected_actions_url: &375 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` is set to `selected`. - sha_pinning_required: &147 + sha_pinning_required: &149 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -24484,9 +24622,9 @@ paths: schema: type: object properties: - enabled_repositories: *145 - allowed_actions: *146 - sha_pinning_required: *147 + enabled_repositories: *147 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled_repositories examples: @@ -24520,7 +24658,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &379 type: object properties: days: @@ -24562,7 +24700,7 @@ paths: required: true content: application/json: - schema: &378 + schema: &380 type: object properties: days: @@ -24605,7 +24743,7 @@ paths: description: Response content: application/json: - schema: &148 + schema: &150 type: object properties: approval_policy: @@ -24619,7 +24757,7 @@ paths: required: - approval_policy examples: - default: &379 + default: &381 value: approval_policy: first_time_contributors '404': *6 @@ -24650,7 +24788,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -24678,7 +24816,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &382 type: object required: - run_workflows_from_fork_pull_requests @@ -24704,7 +24842,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &149 + default: &151 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -24732,7 +24870,7 @@ paths: required: true content: application/json: - schema: &381 + schema: &383 type: object required: - run_workflows_from_fork_pull_requests @@ -24755,7 +24893,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -24805,7 +24943,7 @@ paths: type: array items: *82 examples: - default: &153 + default: &155 value: total_count: 1 repositories: @@ -24990,7 +25128,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - &150 + - &152 name: repository_id description: The unique identifier of the repository. in: path @@ -25019,7 +25157,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -25048,7 +25186,7 @@ paths: description: Response content: application/json: - schema: &151 + schema: &153 type: object properties: github_owned_allowed: @@ -25070,7 +25208,7 @@ paths: items: type: string examples: - default: &152 + default: &154 value: github_owned_allowed: true verified_allowed: false @@ -25103,9 +25241,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25237,7 +25375,7 @@ paths: type: array items: *82 examples: - default: *153 + default: *155 '403': *29 '404': *6 x-github: @@ -25306,7 +25444,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -25333,7 +25471,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No content @@ -25367,17 +25505,17 @@ paths: description: Response content: application/json: - schema: &382 + schema: &384 type: object properties: - default_workflow_permissions: &154 + default_workflow_permissions: &156 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &155 + can_approve_pull_request_reviews: &157 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -25385,7 +25523,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &156 + default: &158 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -25418,13 +25556,13 @@ paths: required: false content: application/json: - schema: &383 + schema: &385 type: object properties: - default_workflow_permissions: *154 - can_approve_pull_request_reviews: *155 + default_workflow_permissions: *156 + can_approve_pull_request_reviews: *157 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25469,7 +25607,7 @@ paths: type: number runner_groups: type: array - items: &157 + items: &159 type: object properties: id: @@ -25657,9 +25795,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &159 + default: &161 value: id: 2 name: octo-runner-group @@ -25695,7 +25833,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - &158 + - &160 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -25707,7 +25845,7 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: default: value: @@ -25744,7 +25882,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -25798,9 +25936,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25820,7 +25958,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *78 - - *158 + - *160 responses: '204': description: Response @@ -25844,7 +25982,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -25862,9 +26000,9 @@ paths: type: number runners: type: array - items: *132 + items: *134 examples: - default: *160 + default: *162 headers: Link: *70 x-github: @@ -25887,7 +26025,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 - *19 - *17 responses: @@ -25905,9 +26043,9 @@ paths: type: number repositories: type: array - items: *161 + items: *163 examples: - default: &209 + default: &211 value: total_count: 1 repositories: @@ -26160,7 +26298,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -26205,8 +26343,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -26229,8 +26367,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *78 - - *158 - - *150 + - *160 + - *152 responses: '204': description: Response @@ -26254,7 +26392,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 - *17 - *19 responses: @@ -26272,7 +26410,7 @@ paths: type: number runners: type: array - items: &163 + items: &165 title: Self hosted runners description: A self hosted runner type: object @@ -26301,7 +26439,7 @@ paths: type: boolean labels: type: array - items: &166 + items: &168 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -26338,7 +26476,7 @@ paths: - busy - labels examples: - default: &164 + default: &166 value: total_count: 2 runners: @@ -26400,7 +26538,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *78 - - *158 + - *160 requestBody: required: true content: @@ -26445,8 +26583,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - *78 - - *158 - - &162 + - *160 + - &164 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -26475,8 +26613,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - *78 - - *158 - - *162 + - *160 + - *164 responses: '204': description: Response @@ -26524,9 +26662,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -26558,7 +26696,7 @@ paths: application/json: schema: type: array - items: &384 + items: &386 title: Runner Application description: Runner Application type: object @@ -26583,7 +26721,7 @@ paths: - download_url - filename examples: - default: &385 + default: &387 value: - os: osx architecture: x64 @@ -26669,7 +26807,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &386 + '201': &388 description: Response content: application/json: @@ -26679,7 +26817,7 @@ paths: - runner - encoded_jit_config properties: - runner: *163 + runner: *165 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -26742,7 +26880,7 @@ paths: description: Response content: application/json: - schema: &165 + schema: &167 title: Authentication Token description: Authentication Token type: object @@ -26780,7 +26918,7 @@ paths: - token - expires_at examples: - default: &387 + default: &389 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26817,9 +26955,9 @@ paths: description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: &388 + default: &390 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26845,15 +26983,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &389 + default: &391 value: id: 23 name: MBP @@ -26896,7 +27034,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *78 - - *162 + - *164 responses: '204': description: Response @@ -26923,9 +27061,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &167 + '200': &169 description: Response content: application/json: @@ -26939,7 +27077,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -26979,7 +27117,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -27003,7 +27141,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -27028,7 +27166,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 requestBody: required: true content: @@ -27053,7 +27191,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -27078,9 +27216,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 + - *164 responses: - '200': &390 + '200': &392 description: Response content: application/json: @@ -27094,7 +27232,7 @@ paths: type: integer labels: type: array - items: *166 + items: *168 examples: default: value: @@ -27136,8 +27274,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - *78 - - *162 - - &391 + - *164 + - &393 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27145,7 +27283,7 @@ paths: schema: type: string responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -27188,7 +27326,7 @@ paths: type: integer secrets: type: array - items: &168 + items: &170 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -27220,7 +27358,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &176 value: total_count: 3 secrets: @@ -27267,7 +27405,7 @@ paths: description: Response content: application/json: - schema: &175 + schema: &177 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27296,7 +27434,7 @@ paths: - key_id - key examples: - default: &176 + default: &178 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27322,7 +27460,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *78 - - &169 + - &171 name: secret_name description: The name of the secret. in: path @@ -27334,9 +27472,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: &177 + default: &179 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -27365,7 +27503,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27422,7 +27560,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27449,7 +27587,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -27476,7 +27614,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -27494,9 +27632,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: &173 + default: &175 value: total_count: 1 repositories: @@ -27589,7 +27727,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -27642,7 +27780,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27676,7 +27814,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -27709,7 +27847,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *78 - - &178 + - &180 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)." @@ -27733,7 +27871,7 @@ paths: type: integer variables: type: array - items: &171 + items: &173 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -27776,7 +27914,7 @@ paths: - updated_at - visibility examples: - default: &179 + default: &181 value: total_count: 3 variables: @@ -27866,7 +28004,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -27892,7 +28030,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *78 - - &172 + - &174 name: name description: The name of the variable. in: path @@ -27904,9 +28042,9 @@ paths: description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: &180 + default: &182 value: name: USERNAME value: octocat @@ -27935,7 +28073,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -27998,7 +28136,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -28025,7 +28163,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -28043,9 +28181,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28072,7 +28210,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28122,7 +28260,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28157,7 +28295,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28209,9 +28347,9 @@ paths: type: integer secrets: type: array - items: *168 + items: *170 examples: - default: *174 + default: *176 headers: Link: *70 x-github: @@ -28242,9 +28380,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28267,15 +28405,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *168 + schema: *170 examples: - default: *177 + default: *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28298,7 +28436,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -28355,7 +28493,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -28382,7 +28520,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -28409,7 +28547,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -28427,9 +28565,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28453,7 +28591,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -28506,7 +28644,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -28540,7 +28678,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -28574,7 +28712,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *78 - - *178 + - *180 - *19 responses: '200': @@ -28591,9 +28729,9 @@ paths: type: integer variables: type: array - items: *171 + items: *173 examples: - default: *179 + default: *181 headers: Link: *70 x-github: @@ -28664,7 +28802,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -28690,15 +28828,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '200': description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: *180 + default: *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28720,7 +28858,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28783,7 +28921,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *78 - - *172 + - *174 responses: '204': description: Response @@ -28810,7 +28948,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 - *19 - *17 responses: @@ -28828,9 +28966,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28857,7 +28995,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *78 - - *172 + - *174 requestBody: required: true content: @@ -28907,7 +29045,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -28942,7 +29080,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *78 - - *172 + - *174 - name: repository_id in: path required: true @@ -29106,7 +29244,7 @@ paths: type: integer deployment_records: type: array - items: &181 + items: &183 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -29152,7 +29290,7 @@ paths: required: - total_count examples: - default: &182 + default: &184 value: total_count: 1 deployment_records: @@ -29330,11 +29468,11 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 required: - total_count examples: - default: *182 + default: *184 '403': description: Forbidden content: @@ -29573,9 +29711,9 @@ paths: type: integer deployment_records: type: array - items: *181 + items: *183 examples: - default: *182 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29704,12 +29842,12 @@ paths: required: - subject_digests examples: - default: &730 + default: &732 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &731 + withPredicateType: &733 value: subject_digests: - sha256:abc123 @@ -29767,7 +29905,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &732 + default: &734 value: attestations_subject_digests: - sha256:abc: @@ -30132,7 +30270,7 @@ paths: initiator: type: string examples: - default: &417 + default: &419 value: attestations: - bundle: @@ -30365,7 +30503,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &183 + schema: &185 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -30391,7 +30529,7 @@ paths: application/json: schema: type: array - items: &184 + items: &186 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -30422,7 +30560,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &208 + items: &210 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -30497,7 +30635,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &271 + properties: &273 id: description: Unique identifier of the team type: integer @@ -30569,7 +30707,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &272 + required: &274 - id - node_id - url @@ -30612,7 +30750,7 @@ paths: type: string format: date-time nullable: true - state: *183 + state: *185 contact_link: description: The contact link of the campaign. type: string @@ -30832,9 +30970,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: &185 + default: &187 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -30917,9 +31055,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '404': *6 '422': description: Unprocessable Entity @@ -30996,7 +31134,7 @@ paths: type: string format: uri nullable: true - state: *183 + state: *185 examples: default: value: @@ -31006,9 +31144,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *186 examples: - default: *185 + default: *187 '400': description: Bad Request content: @@ -31075,17 +31213,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *78 - - &442 + - &444 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &193 + schema: &195 type: string description: The name of the tool used to generate the code scanning analysis. - - &443 + - &445 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 @@ -31093,7 +31231,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &194 + schema: &196 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -31108,7 +31246,7 @@ paths: be returned. in: query required: false - schema: &445 + schema: &447 type: string description: State of a code scanning alert. enum: @@ -31131,7 +31269,7 @@ paths: be returned. in: query required: false - schema: &446 + schema: &448 type: string description: Severity of a code scanning alert. enum: @@ -31160,18 +31298,18 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: &447 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: &449 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &195 + state: &197 type: string description: State of a code scanning alert. nullable: true @@ -31179,7 +31317,7 @@ paths: - open - dismissed - fixed - fixed_at: *191 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -31187,8 +31325,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: &448 + dismissed_at: *194 + dismissed_reason: &450 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -31197,13 +31335,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &449 + dismissed_comment: &451 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &450 + rule: &452 type: object properties: id: @@ -31256,42 +31394,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &451 + tool: &453 type: object properties: - name: *193 + name: *195 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *194 - most_recent_instance: &452 + guid: *196 + most_recent_instance: &454 type: object properties: - ref: &444 + ref: &446 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &462 + analysis_key: &464 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &463 + environment: &465 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &464 + category: &466 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *195 + state: *197 commit_sha: type: string message: @@ -31305,7 +31443,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &465 + location: &467 type: object description: Describe a region within a file for the alert. properties: @@ -31326,7 +31464,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &466 + items: &468 type: string description: A classification of the file. For example to identify it as generated. @@ -31965,7 +32103,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31993,9 +32131,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 '304': *37 '403': *29 '404': *6 @@ -32084,7 +32222,7 @@ paths: application/json: schema: *49 examples: - default: *196 + default: *198 '304': *37 '403': *29 '404': *6 @@ -32529,7 +32667,7 @@ paths: default: value: default_for_new_repos: all - configuration: *196 + configuration: *198 '403': *29 '404': *6 x-github: @@ -32582,13 +32720,13 @@ paths: application/json: schema: type: array - items: *199 + items: *201 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *200 + repository: *202 '403': *29 '404': *6 x-github: @@ -32628,7 +32766,7 @@ paths: type: integer codespaces: type: array - items: &261 + items: &263 type: object title: Codespace description: A codespace. @@ -32653,12 +32791,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *161 + repository: *163 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &478 + properties: &480 name: type: string description: The name of the machine. @@ -32700,7 +32838,7 @@ paths: - ready - in_progress nullable: true - required: &479 + required: &481 - name - display_name - operating_system @@ -32905,7 +33043,7 @@ paths: - pulls_url - recent_folders examples: - default: &262 + default: &264 value: total_count: 3 codespaces: @@ -33529,7 +33667,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &203 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -33568,7 +33706,7 @@ paths: - updated_at - visibility examples: - default: &480 + default: &482 value: total_count: 2 secrets: @@ -33606,7 +33744,7 @@ paths: description: Response content: application/json: - schema: &481 + schema: &483 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33635,7 +33773,7 @@ paths: - key_id - key examples: - default: &482 + default: &484 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33659,15 +33797,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: &484 + default: &486 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33695,7 +33833,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33750,7 +33888,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -33777,7 +33915,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -33803,7 +33941,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -33821,9 +33959,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 '404': *6 x-github: githubCloudOnly: false @@ -33846,7 +33984,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -33897,7 +34035,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -33931,7 +34069,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -34001,7 +34139,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &202 + items: &204 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -34382,9 +34520,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &203 + default: &205 summary: Example response for an organization copilot space value: id: 84 @@ -34489,9 +34627,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 x-github: @@ -34617,9 +34755,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 '403': *29 '404': *6 '422': *15 @@ -34702,7 +34840,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &204 + items: &206 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -34925,7 +35063,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -35055,7 +35193,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: user: value: @@ -35206,7 +35344,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &205 + items: &207 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -35349,7 +35487,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35365,7 +35503,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35420,7 +35558,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35489,7 +35627,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -35731,7 +35869,7 @@ paths: currently being billed. seats: type: array - items: &264 + items: &266 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -35748,14 +35886,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *206 - required: *207 + properties: *208 + required: *209 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *208 + - *210 - *71 nullable: true pending_cancellation_date: @@ -36362,12 +36500,12 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 required: - total_count - repositories examples: - default: *209 + default: *211 '500': *55 '401': *25 '403': *29 @@ -36453,7 +36591,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -36487,7 +36625,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: No Content @@ -36702,7 +36840,7 @@ paths: application/json: schema: type: array - items: &350 + items: &352 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -37009,7 +37147,7 @@ paths: - date additionalProperties: true examples: - default: &351 + default: &353 value: - date: '2024-06-24' total_active_users: 24 @@ -37111,7 +37249,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &352 + '422': &354 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -37330,12 +37468,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *78 - - *210 - - *211 - *212 - *213 - *214 - *215 + - *216 + - *217 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37365,7 +37503,7 @@ paths: enum: - patch - deployment - - *216 + - *218 - name: runtime_risk in: query description: |- @@ -37374,8 +37512,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *217 - - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -37387,9 +37525,9 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: - default: *220 + default: *222 '304': *37 '400': *14 '403': *29 @@ -37438,9 +37576,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *223 examples: - default: *222 + default: *224 '403': *29 '404': *6 x-github: @@ -37603,7 +37741,7 @@ paths: type: integer secrets: type: array - items: &223 + items: &225 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37680,7 +37818,7 @@ paths: description: Response content: application/json: - schema: &515 + schema: &517 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37697,7 +37835,7 @@ paths: - key_id - key examples: - default: &516 + default: &518 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37721,13 +37859,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -37756,7 +37894,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37813,7 +37951,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -37846,7 +37984,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -37871,7 +38009,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 - *19 - *17 responses: @@ -37889,9 +38027,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37913,7 +38051,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -37964,7 +38102,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -37996,7 +38134,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *78 - - *169 + - *171 - name: repository_id in: path required: true @@ -38034,7 +38172,7 @@ paths: application/json: schema: type: array - items: &274 + items: &276 title: Package description: A software package type: object @@ -38084,9 +38222,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *224 - required: *225 - x-github-breaking-changes: *226 + properties: *226 + required: *227 + x-github-breaking-changes: *228 nullable: true created_at: type: string @@ -38105,7 +38243,7 @@ paths: - created_at - updated_at examples: - default: &275 + default: &277 value: - id: 197 name: hello_docker @@ -38275,7 +38413,7 @@ paths: application/json: schema: type: array - items: &250 + items: &252 title: Organization Invitation description: Organization Invitation type: object @@ -38322,7 +38460,7 @@ paths: - invitation_teams_url - node_id examples: - default: &251 + default: &253 value: - id: 1 login: monalisa @@ -38389,7 +38527,7 @@ paths: application/json: schema: type: array - items: &227 + items: &229 title: Org Hook description: Org Hook type: object @@ -38560,9 +38698,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: &228 + default: &230 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38610,7 +38748,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *78 - - &229 + - &231 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. @@ -38623,9 +38761,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *228 + default: *230 '404': *6 x-github: githubCloudOnly: false @@ -38653,7 +38791,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *78 - - *229 + - *231 requestBody: required: false content: @@ -38698,7 +38836,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -38740,7 +38878,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *78 - - *229 + - *231 responses: '204': description: Response @@ -38768,7 +38906,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *78 - - *229 + - *231 responses: '200': description: Response @@ -38799,7 +38937,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *78 - - *229 + - *231 requestBody: required: false content: @@ -38850,10 +38988,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *78 - - *229 - - *17 - - *230 - *231 + - *17 + - *232 + - *233 responses: '200': description: Response @@ -38861,9 +38999,9 @@ paths: application/json: schema: type: array - items: *232 + items: *234 examples: - default: *233 + default: *235 '400': *14 '422': *15 x-github: @@ -38889,16 +39027,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *78 - - *229 + - *231 - *16 responses: '200': description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *235 + default: *237 '400': *14 '422': *15 x-github: @@ -38924,7 +39062,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *78 - - *229 + - *231 - *16 responses: '202': *39 @@ -38954,7 +39092,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *78 - - *229 + - *231 responses: '204': description: Response @@ -38977,7 +39115,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *78 - - &240 + - &242 name: actor_type in: path description: The type of the actor @@ -38990,14 +39128,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &241 + - &243 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &236 + - &238 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`.' @@ -39005,7 +39143,7 @@ paths: required: true schema: type: string - - &237 + - &239 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) @@ -39099,12 +39237,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *78 - - *236 - - *237 + - *238 + - *239 - *19 - *17 - *62 - - &246 + - &248 name: sort description: The property to sort the results by. in: query @@ -39182,14 +39320,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *78 - - *236 - - *237 + - *238 + - *239 responses: '200': description: Response content: application/json: - schema: &238 + schema: &240 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39205,7 +39343,7 @@ paths: type: integer format: int64 examples: - default: &239 + default: &241 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39226,23 +39364,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *78 - - &242 + - &244 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *236 - - *237 + - *238 + - *239 responses: '200': description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 x-github: enabledForGitHubApps: true category: orgs @@ -39261,18 +39399,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *78 - - *236 - - *237 - - *240 - - *241 + - *238 + - *239 + - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 x-github: enabledForGitHubApps: true category: orgs @@ -39290,9 +39428,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *78 - - *236 - - *237 - - &243 + - *238 + - *239 + - &245 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39305,7 +39443,7 @@ paths: description: Response content: application/json: - schema: &244 + schema: &246 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39321,7 +39459,7 @@ paths: type: integer format: int64 examples: - default: &245 + default: &247 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39358,18 +39496,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *78 - - *242 - - *236 - - *237 - - *243 + - *244 + - *238 + - *239 + - *245 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *245 + default: *247 x-github: enabledForGitHubApps: true category: orgs @@ -39387,19 +39525,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *78 - - *240 - - *241 - - *236 - - *237 + - *242 - *243 + - *238 + - *239 + - *245 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *245 + default: *247 x-github: enabledForGitHubApps: true category: orgs @@ -39417,13 +39555,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *78 - - *242 - - *236 - - *237 + - *244 + - *238 + - *239 - *19 - *17 - *62 - - *246 + - *248 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39504,7 +39642,7 @@ paths: application/json: schema: *22 examples: - default: &553 + default: &555 value: id: 1 account: @@ -39670,12 +39808,12 @@ paths: application/json: schema: anyOf: - - &248 + - &250 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &247 + limit: &249 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -39700,7 +39838,7 @@ paths: properties: {} additionalProperties: false examples: - default: &249 + default: &251 value: limit: collaborators_only origin: organization @@ -39729,13 +39867,13 @@ paths: required: true content: application/json: - schema: &554 + schema: &556 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *247 + limit: *249 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -39759,9 +39897,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *249 + default: *251 '422': *15 x-github: githubCloudOnly: false @@ -39837,9 +39975,9 @@ paths: application/json: schema: type: array - items: *250 + items: *252 examples: - default: *251 + default: *253 headers: Link: *70 '404': *6 @@ -39916,7 +40054,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *252 examples: default: value: @@ -39971,7 +40109,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *78 - - &252 + - &254 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40002,7 +40140,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *78 - - *252 + - *254 - *17 - *19 responses: @@ -40012,9 +40150,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: &273 + default: &275 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40057,7 +40195,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -40290,9 +40428,9 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: - default: &254 + default: &256 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -40348,7 +40486,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *78 - - &255 + - &257 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -40456,9 +40594,9 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: - default: *254 + default: *256 '404': *6 '422': *7 x-github: @@ -40483,7 +40621,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *78 - - *255 + - *257 responses: '204': *61 '404': *6 @@ -40513,7 +40651,7 @@ paths: application/json: schema: type: array - items: *256 + items: *258 examples: default: value: @@ -40598,9 +40736,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: &257 + default: &259 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -40633,7 +40771,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *78 - - &258 + - &260 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40686,9 +40824,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '404': *6 '422': *7 x-github: @@ -40713,7 +40851,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *78 - - *258 + - *260 responses: '204': description: Response @@ -40776,7 +40914,7 @@ paths: - closed - all default: open - - *259 + - *261 - name: type description: Can be the name of an issue type. in: query @@ -40807,7 +40945,7 @@ paths: type: array items: *88 examples: - default: *260 + default: *262 headers: Link: *70 '404': *6 @@ -40972,9 +41110,9 @@ paths: type: integer codespaces: type: array - items: *261 + items: *263 examples: - default: *262 + default: *264 '304': *37 '500': *55 '401': *25 @@ -41001,7 +41139,7 @@ paths: parameters: - *78 - *74 - - &263 + - &265 name: codespace_name in: path required: true @@ -41036,15 +41174,15 @@ paths: parameters: - *78 - *74 - - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: &477 + default: &479 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41224,7 +41362,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -41300,7 +41438,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &267 title: Org Membership description: Org Membership type: object @@ -41367,7 +41505,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &266 + response-if-user-has-an-active-admin-membership-with-organization: &268 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41468,9 +41606,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *267 examples: - response-if-user-already-had-membership-with-organization: *266 + response-if-user-already-had-membership-with-organization: *268 '422': *15 '403': *29 x-github: @@ -41547,7 +41685,7 @@ paths: application/json: schema: type: array - items: &267 + items: &269 title: Migration description: A migration. type: object @@ -41887,7 +42025,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *269 examples: default: value: @@ -42066,7 +42204,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *78 - - &268 + - &270 name: migration_id description: The unique identifier of the migration. in: path @@ -42093,7 +42231,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *267 + schema: *269 examples: default: value: @@ -42263,7 +42401,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *78 - - *268 + - *270 responses: '302': description: Response @@ -42285,7 +42423,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *78 - - *268 + - *270 responses: '204': description: Response @@ -42309,8 +42447,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *78 - - *268 - - &713 + - *270 + - &715 name: repo_name description: repo_name parameter in: path @@ -42338,7 +42476,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *78 - - *268 + - *270 - *17 - *19 responses: @@ -42348,9 +42486,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: &280 + default: &282 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42523,7 +42661,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &270 + items: &272 title: Organization Role description: Organization roles type: object @@ -42698,7 +42836,7 @@ paths: parameters: - *78 - *80 - - &269 + - &271 name: role_id description: The unique identifier of the role. in: path @@ -42735,7 +42873,7 @@ paths: parameters: - *78 - *80 - - *269 + - *271 responses: '204': description: Response @@ -42788,7 +42926,7 @@ paths: parameters: - *78 - *74 - - *269 + - *271 responses: '204': description: Response @@ -42820,7 +42958,7 @@ paths: parameters: - *78 - *74 - - *269 + - *271 responses: '204': description: Response @@ -42849,13 +42987,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *78 - - *269 + - *271 responses: '200': description: Response content: application/json: - schema: *270 + schema: *272 examples: default: value: @@ -42906,7 +43044,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *78 - - *269 + - *271 - *17 - *19 responses: @@ -42984,8 +43122,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *271 - required: *272 + properties: *273 + required: *274 nullable: true type: description: The ownership type of the team @@ -43017,7 +43155,7 @@ paths: - type - parent examples: - default: *273 + default: *275 headers: Link: *70 '404': @@ -43047,7 +43185,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *78 - - *269 + - *271 - *17 - *19 responses: @@ -43075,13 +43213,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &346 + items: &348 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *271 - required: *272 + properties: *273 + required: *274 name: nullable: true type: string @@ -43369,7 +43507,7 @@ paths: - nuget - container - *78 - - &714 + - &716 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43405,12 +43543,12 @@ paths: application/json: schema: type: array - items: *274 + items: *276 examples: - default: *275 + default: *277 '403': *29 '401': *25 - '400': &716 + '400': &718 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43432,7 +43570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &276 + - &278 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 @@ -43450,7 +43588,7 @@ paths: - docker - nuget - container - - &277 + - &279 name: package_name description: The name of the package. in: path @@ -43463,7 +43601,7 @@ paths: description: Response content: application/json: - schema: *274 + schema: *276 examples: default: value: @@ -43515,8 +43653,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *276 - - *277 + - *278 + - *279 - *78 responses: '204': @@ -43549,8 +43687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *276 - - *277 + - *278 + - *279 - *78 - name: token description: package token @@ -43583,8 +43721,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: - - *276 - - *277 + - *278 + - *279 - *78 - *19 - *17 @@ -43605,7 +43743,7 @@ paths: application/json: schema: type: array - items: &278 + items: &280 title: Package Version description: A version of a software package type: object @@ -43730,10 +43868,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *276 - - *277 + - *278 + - *279 - *78 - - &279 + - &281 name: package_version_id description: Unique identifier of the package version. in: path @@ -43745,7 +43883,7 @@ paths: description: Response content: application/json: - schema: *278 + schema: *280 examples: default: value: @@ -43781,10 +43919,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *276 - - *277 - - *78 + - *278 - *279 + - *78 + - *281 responses: '204': description: Response @@ -43816,10 +43954,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *276 - - *277 - - *78 + - *278 - *279 + - *78 + - *281 responses: '204': description: Response @@ -43849,7 +43987,7 @@ paths: - *78 - *17 - *19 - - &281 + - &283 name: sort description: The property by which to sort the results. in: query @@ -43860,7 +43998,7 @@ paths: - created_at default: created_at - *62 - - &282 + - &284 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43871,7 +44009,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &283 + - &285 name: repository description: The name of the repository to use to filter the results. in: query @@ -43879,7 +44017,7 @@ paths: schema: type: string example: Hello-World - - &284 + - &286 name: permission description: The permission to use to filter the results. in: query @@ -43887,7 +44025,7 @@ paths: schema: type: string example: issues_read - - &285 + - &287 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) @@ -43897,7 +44035,7 @@ paths: schema: type: string format: date-time - - &286 + - &288 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) @@ -43907,7 +44045,7 @@ paths: schema: type: string format: date-time - - &287 + - &289 name: token_id description: The ID of the token in: query @@ -44218,9 +44356,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -44246,14 +44384,14 @@ paths: - *78 - *17 - *19 - - *281 - - *62 - - *282 - *283 + - *62 - *284 - *285 - *286 - *287 + - *288 + - *289 responses: '500': *55 '422': *15 @@ -44533,9 +44671,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -44577,7 +44715,7 @@ paths: type: integer configurations: type: array - items: &288 + items: &290 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45088,7 +45226,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &289 + org-private-registry-with-selected-visibility: &291 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -45178,15 +45316,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 '404': *6 x-github: githubCloudOnly: false @@ -45209,7 +45347,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 requestBody: required: true content: @@ -45397,7 +45535,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *78 - - *169 + - *171 responses: '204': description: Response @@ -45437,7 +45575,7 @@ paths: application/json: schema: type: array - items: &290 + items: &292 title: Projects v2 Project description: A projects v2 project type: object @@ -45507,7 +45645,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &806 + properties: &807 id: type: number description: The unique identifier of the status update. @@ -45555,7 +45693,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &807 + required: &808 - id - node_id - created_at @@ -45580,7 +45718,7 @@ paths: - deleted_at - deleted_by examples: - default: &291 + default: &293 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -45683,7 +45821,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &292 + - &294 name: project_number description: The project's number. in: path @@ -45696,9 +45834,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: *291 + default: *293 headers: Link: *70 '304': *37 @@ -45721,7 +45859,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *78 - - *292 + - *294 requestBody: required: true description: Details of the draft item to create in the project. @@ -45755,7 +45893,7 @@ paths: description: Response content: application/json: - schema: &298 + schema: &300 title: Projects v2 Item description: An item belonging to a project type: object @@ -45769,7 +45907,7 @@ paths: content: oneOf: - *88 - - &494 + - &496 title: Pull Request Simple description: Pull Request Simple type: object @@ -45875,8 +46013,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *293 - required: *294 + properties: *295 + required: *296 nullable: true active_lock_reason: type: string @@ -45919,7 +46057,7 @@ paths: items: *4 requested_teams: type: array - items: *208 + items: *210 head: type: object properties: @@ -45969,7 +46107,7 @@ paths: _links: type: object properties: - comments: &295 + comments: &297 title: Link description: Hypermedia Link type: object @@ -45978,13 +46116,13 @@ paths: type: string required: - href - commits: *295 - statuses: *295 - html: *295 - issue: *295 - review_comments: *295 - review_comment: *295 - self: *295 + commits: *297 + statuses: *297 + html: *297 + issue: *297 + review_comments: *297 + review_comment: *297 + self: *297 required: - comments - commits @@ -45995,7 +46133,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &606 + auto_merge: &608 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46169,7 +46307,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &297 + content_type: &299 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46209,7 +46347,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &299 + draft_issue: &301 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -46283,7 +46421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *292 + - *294 - *78 - *17 - *47 @@ -46295,7 +46433,7 @@ paths: application/json: schema: type: array - items: &296 + items: &298 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46445,7 +46583,7 @@ paths: - updated_at - project_url examples: - default: &736 + default: &738 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46575,7 +46713,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *292 + - *294 - *78 requestBody: required: true @@ -46622,7 +46760,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &737 + items: &739 type: object properties: name: @@ -46659,7 +46797,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &738 + iteration_configuration: &740 type: object description: The configuration for iteration fields. properties: @@ -46709,7 +46847,7 @@ paths: value: name: Due date data_type: date - single_select_field: &739 + single_select_field: &741 summary: Create a single select field value: name: Priority @@ -46736,7 +46874,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &740 + iteration_field: &742 summary: Create an iteration field value: name: Sprint @@ -46760,9 +46898,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *296 + schema: *298 examples: - text_field: &741 + text_field: &743 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46771,7 +46909,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &742 + number_field: &744 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46780,7 +46918,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &743 + date_field: &745 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46789,7 +46927,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &744 + single_select_field: &746 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46823,7 +46961,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &745 + iteration_field: &747 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46868,8 +47006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *292 - - &746 + - *294 + - &748 name: field_id description: The unique identifier of the field. in: path @@ -46882,9 +47020,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &747 + default: &749 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46940,7 +47078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *292 + - *294 - *78 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -46973,7 +47111,7 @@ paths: application/json: schema: type: array - items: &300 + items: &302 title: Projects v2 Item description: An item belonging to a project type: object @@ -46989,7 +47127,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *297 + content_type: *299 content: type: object additionalProperties: true @@ -47032,7 +47170,7 @@ paths: - updated_at - archived_at examples: - default: &301 + default: &303 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -47730,7 +47868,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *78 - - *292 + - *294 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -47800,22 +47938,22 @@ paths: description: Response content: application/json: - schema: *298 + schema: *300 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *299 + value: *301 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *299 + value: *301 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *299 + value: *301 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *299 + value: *301 '304': *37 '403': *29 '401': *25 @@ -47835,9 +47973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *292 + - *294 - *78 - - &302 + - &304 name: item_id description: The unique identifier of the project item. in: path @@ -47863,9 +48001,9 @@ paths: description: Response content: application/json: - schema: *300 + schema: *302 examples: - default: *301 + default: *303 headers: Link: *70 '304': *37 @@ -47886,9 +48024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *292 + - *294 - *78 - - *302 + - *304 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47958,13 +48096,13 @@ paths: description: Response content: application/json: - schema: *300 + schema: *302 examples: - text_field: *301 - number_field: *301 - date_field: *301 - single_select_field: *301 - iteration_field: *301 + text_field: *303 + number_field: *303 + date_field: *303 + single_select_field: *303 + iteration_field: *303 '401': *25 '403': *29 '404': *6 @@ -47984,9 +48122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *292 + - *294 - *78 - - *302 + - *304 responses: '204': description: Response @@ -48010,7 +48148,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *78 - - *292 + - *294 requestBody: required: true content: @@ -48081,7 +48219,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &727 + schema: &729 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48179,7 +48317,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &303 + value: &305 value: id: 1 number: 1 @@ -48225,10 +48363,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *303 + value: *305 roadmap_view: summary: Response for creating a roadmap view - value: *303 + value: *305 '304': *37 '403': *29 '401': *25 @@ -48256,9 +48394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *292 + - *294 - *78 - - &748 + - &750 name: view_number description: The number that identifies the project view. in: path @@ -48290,9 +48428,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *301 + default: *303 headers: Link: *70 '304': *37 @@ -48325,7 +48463,7 @@ paths: application/json: schema: type: array - items: &304 + items: &306 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -48393,7 +48531,7 @@ paths: - property_name - value_type examples: - default: &305 + default: &307 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48453,7 +48591,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *304 + items: *306 minItems: 1 maxItems: 100 required: @@ -48483,9 +48621,9 @@ paths: application/json: schema: type: array - items: *304 + items: *306 examples: - default: *305 + default: *307 '403': *29 '404': *6 x-github: @@ -48507,7 +48645,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *78 - - &306 + - &308 name: custom_property_name description: The custom property name in: path @@ -48519,9 +48657,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: &307 + default: &309 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48556,7 +48694,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *78 - - *306 + - *308 requestBody: required: true content: @@ -48627,9 +48765,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: *307 + default: *309 '403': *29 '404': *6 x-github: @@ -48653,7 +48791,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *78 - - *306 + - *308 responses: '204': *61 '403': *29 @@ -48714,7 +48852,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &308 + items: &310 title: Custom Property Value description: Custom property name and associated value type: object @@ -48801,7 +48939,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *308 + items: *310 required: - repository_names - properties @@ -48991,9 +49129,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -49195,7 +49333,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &362 title: Full Repository description: Full Repository type: object @@ -49483,9 +49621,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *309 - required: *310 - x-github-breaking-changes: *311 + properties: *311 + required: *312 + x-github-breaking-changes: *313 nullable: true temp_clone_token: type: string @@ -49600,7 +49738,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &499 + properties: &501 url: type: string format: uri @@ -49616,12 +49754,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &500 + required: &502 - url - key - name - html_url - security_and_analysis: *312 + security_and_analysis: *314 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -49716,7 +49854,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &362 + default: &364 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50249,7 +50387,7 @@ paths: - *78 - *17 - *19 - - &628 + - &630 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50267,7 +50405,7 @@ paths: application/json: schema: type: array - items: &339 + items: &341 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -50302,7 +50440,7 @@ paths: source: type: string description: The name of the source - enforcement: &315 + enforcement: &317 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -50315,7 +50453,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &316 + items: &318 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -50386,7 +50524,7 @@ paths: conditions: nullable: true anyOf: - - &313 + - &315 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -50410,7 +50548,7 @@ paths: match. items: type: string - - &317 + - &319 title: Organization ruleset conditions type: object description: |- @@ -50424,7 +50562,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *313 + - *315 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -50458,7 +50596,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *313 + - *315 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -50480,7 +50618,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *313 + - *315 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -50493,7 +50631,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &314 + items: &316 title: Repository ruleset property targeting definition type: object @@ -50526,17 +50664,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *314 + items: *316 required: - repository_property rules: type: array - items: &629 + items: &631 title: Repository Rule type: object description: A repository rule. oneOf: - - &318 + - &320 title: creation description: Only allow users with bypass permission to create matching refs. @@ -50548,7 +50686,7 @@ paths: type: string enum: - creation - - &319 + - &321 title: update description: Only allow users with bypass permission to update matching refs. @@ -50569,7 +50707,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &320 + - &322 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -50581,7 +50719,7 @@ paths: type: string enum: - deletion - - &321 + - &323 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -50593,7 +50731,7 @@ paths: type: string enum: - required_linear_history - - &627 + - &629 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -50671,7 +50809,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &322 + - &324 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -50695,7 +50833,7 @@ paths: type: string required: - required_deployment_environments - - &323 + - &325 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -50707,7 +50845,7 @@ paths: type: string enum: - required_signatures - - &324 + - &326 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -50813,7 +50951,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &325 + - &327 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -50861,7 +50999,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &326 + - &328 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -50873,7 +51011,7 @@ paths: type: string enum: - non_fast_forward - - &327 + - &329 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -50910,7 +51048,7 @@ paths: required: - operator - pattern - - &328 + - &330 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -50947,7 +51085,7 @@ paths: required: - operator - pattern - - &329 + - &331 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -50984,7 +51122,7 @@ paths: required: - operator - pattern - - &330 + - &332 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -51021,7 +51159,7 @@ paths: required: - operator - pattern - - &331 + - &333 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -51058,7 +51196,7 @@ paths: required: - operator - pattern - - &336 + - &338 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -51108,7 +51246,7 @@ paths: - repository_id required: - workflows - - &337 + - &339 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -51169,7 +51307,7 @@ paths: - tool required: - code_scanning_tools - - &338 + - &340 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -51195,7 +51333,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &332 + - &334 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -51220,7 +51358,7 @@ paths: type: string required: - restricted_file_paths - - &333 + - &335 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -51244,7 +51382,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &334 + - &336 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -51267,7 +51405,7 @@ paths: type: string required: - restricted_file_extensions - - &335 + - &337 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -51365,22 +51503,20 @@ paths: - push - repository default: branch - enforcement: *315 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *316 - conditions: *317 + items: *318 + conditions: *319 rules: type: array description: An array of rules within the ruleset. - items: &341 + items: &343 title: Repository Rule type: object description: A repository rule. oneOf: - - *318 - - *319 - *320 - *321 - *322 @@ -51400,6 +51536,8 @@ paths: - *336 - *337 - *338 + - *339 + - *340 required: - name - enforcement @@ -51437,9 +51575,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &340 + default: &342 value: id: 21 name: super cool ruleset @@ -51495,7 +51633,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &630 + - &632 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 @@ -51510,7 +51648,7 @@ paths: in: query schema: type: string - - &631 + - &633 name: time_period description: |- The time period to filter by. @@ -51526,14 +51664,14 @@ paths: - week - month default: day - - &632 + - &634 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 - - &633 + - &635 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51546,7 +51684,7 @@ paths: - bypass - all default: all - - &634 + - &636 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -51569,7 +51707,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &637 title: Rule Suites description: Response type: array @@ -51624,7 +51762,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &636 + default: &638 value: - id: 21 actor_id: 12 @@ -51668,7 +51806,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &637 + - &639 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51684,7 +51822,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &640 title: Rule Suite description: Response type: object @@ -51783,7 +51921,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &639 + default: &641 value: id: 21 actor_id: 12 @@ -51856,9 +51994,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 '404': *6 '500': *55 put: @@ -51902,16 +52040,16 @@ paths: - tag - push - repository - enforcement: *315 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *316 - conditions: *317 + items: *318 + conditions: *319 rules: description: An array of rules within the ruleset. type: array - items: *341 + items: *343 examples: default: value: @@ -51946,9 +52084,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 '404': *6 '422': *15 '500': *55 @@ -52006,7 +52144,7 @@ paths: application/json: schema: type: array - items: &342 + items: &344 title: Ruleset version type: object description: The historical version of a ruleset @@ -52030,7 +52168,7 @@ paths: type: string format: date-time examples: - default: &641 + default: &643 value: - version_id: 3 actor: @@ -52083,9 +52221,9 @@ paths: description: Response content: application/json: - schema: &642 + schema: &644 allOf: - - *342 + - *344 - type: object required: - state @@ -52155,7 +52293,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &643 + - &645 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52166,7 +52304,7 @@ paths: enum: - open - resolved - - &644 + - &646 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52176,7 +52314,7 @@ paths: required: false schema: type: string - - &645 + - &647 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52187,7 +52325,7 @@ paths: required: false schema: type: string - - &646 + - &648 name: exclude_providers in: query description: |- @@ -52198,7 +52336,7 @@ paths: required: false schema: type: string - - &647 + - &649 name: providers in: query description: |- @@ -52209,7 +52347,7 @@ paths: required: false schema: type: string - - &648 + - &650 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52218,7 +52356,7 @@ paths: required: false schema: type: string - - &649 + - &651 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52237,7 +52375,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &650 + - &652 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. @@ -52252,7 +52390,7 @@ paths: - *62 - *19 - *17 - - &651 + - &653 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 @@ -52262,7 +52400,7 @@ paths: required: false schema: type: string - - &652 + - &654 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 @@ -52272,7 +52410,7 @@ paths: required: false schema: type: string - - &653 + - &655 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52281,7 +52419,7 @@ paths: required: false schema: type: string - - &654 + - &656 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52290,7 +52428,7 @@ paths: schema: type: boolean default: false - - &655 + - &657 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52299,7 +52437,7 @@ paths: schema: type: boolean default: false - - &656 + - &658 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52308,7 +52446,7 @@ paths: schema: type: boolean default: false - - &657 + - &659 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52329,8 +52467,8 @@ paths: items: type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -52338,21 +52476,21 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &658 + state: &660 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: &659 + resolution: &661 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52469,8 +52607,8 @@ paths: pull request. ' - oneOf: &660 - - &662 + oneOf: &662 + - &664 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52528,7 +52666,7 @@ paths: - blob_url - commit_sha - commit_url - - &663 + - &665 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -52583,7 +52721,7 @@ paths: - page_url - commit_sha - commit_url - - &664 + - &666 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52603,7 +52741,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &665 + - &667 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52623,7 +52761,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &666 + - &668 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52643,7 +52781,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &667 + - &669 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52657,7 +52795,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &668 + - &670 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52671,7 +52809,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &669 + - &671 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52685,7 +52823,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &670 + - &672 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -52705,7 +52843,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &671 + - &673 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -52725,7 +52863,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &672 + - &674 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -52745,7 +52883,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &673 + - &675 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -52765,7 +52903,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &674 + - &676 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53028,7 +53166,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &344 + pattern_config_version: &346 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -53037,7 +53175,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &343 + items: &345 type: object properties: token_type: @@ -53103,7 +53241,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *343 + items: *345 examples: default: value: @@ -53160,7 +53298,7 @@ paths: schema: type: object properties: - pattern_config_version: *344 + pattern_config_version: *346 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -53186,7 +53324,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *344 + custom_pattern_version: *346 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -53284,7 +53422,7 @@ paths: application/json: schema: type: array - items: &678 + items: &680 description: A repository security advisory. type: object properties: @@ -53504,7 +53642,7 @@ paths: login: type: string description: The username of the user credited. - type: *345 + type: *347 credits_detailed: type: array nullable: true @@ -53514,7 +53652,7 @@ paths: type: object properties: user: *4 - type: *345 + type: *347 state: type: string description: The state of the user's acceptance of the @@ -53538,7 +53676,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *208 + items: *210 private_fork: readOnly: true nullable: true @@ -53607,7 +53745,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &679 + default: &681 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -53994,7 +54132,7 @@ paths: application/json: schema: type: array - items: *346 + items: *348 examples: default: value: @@ -54212,9 +54350,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54283,7 +54421,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -54306,7 +54444,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *78 - - *150 + - *152 responses: '204': description: Response @@ -54347,7 +54485,7 @@ paths: type: integer network_configurations: type: array - items: &347 + items: &349 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -54493,9 +54631,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: &348 + default: &350 value: id: 123456789ABCDEF name: My network configuration @@ -54524,7 +54662,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - &349 + - &351 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -54536,9 +54674,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 headers: Link: *70 x-github: @@ -54560,7 +54698,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *78 - - *349 + - *351 requestBody: required: true content: @@ -54613,9 +54751,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54635,7 +54773,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *78 - - *349 + - *351 responses: '204': description: Response @@ -54775,13 +54913,13 @@ paths: application/json: schema: type: array - items: *350 + items: *352 examples: - default: *351 + default: *353 '500': *55 '403': *29 '404': *6 - '422': *352 + '422': *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54821,9 +54959,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 headers: Link: *70 '403': *29 @@ -54917,7 +55055,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &355 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -54980,8 +55118,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *271 - required: *272 + properties: *273 + required: *274 nullable: true members_count: type: integer @@ -55244,7 +55382,7 @@ paths: - repos_count - organization examples: - default: &354 + default: &356 value: id: 1 node_id: MDQ6VGVhbTE= @@ -55332,9 +55470,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '404': *6 x-github: githubCloudOnly: false @@ -55418,16 +55556,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '201': description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '404': *6 '422': *15 '403': *29 @@ -55457,7 +55595,7 @@ paths: responses: '204': description: Response - '422': &355 + '422': &357 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -55491,12 +55629,12 @@ paths: application/json: schema: type: array - items: *250 + items: *252 examples: - default: *251 + default: *253 headers: Link: *70 - '422': *355 + '422': *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55578,7 +55716,7 @@ paths: description: Response content: application/json: - schema: &356 + schema: &358 title: Team Membership description: Team Membership type: object @@ -55605,7 +55743,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &694 + response-if-user-is-a-team-maintainer: &696 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55668,9 +55806,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - response-if-users-membership-with-team-is-now-pending: &695 + response-if-users-membership-with-team-is-now-pending: &697 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55744,9 +55882,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -55777,14 +55915,14 @@ paths: parameters: - *78 - *80 - - *357 - - *358 + - *359 + - *360 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &696 + schema: &698 title: Team Repository description: A team's access to a repository. type: object @@ -56440,8 +56578,8 @@ paths: parameters: - *78 - *80 - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -56488,8 +56626,8 @@ paths: parameters: - *78 - *80 - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -56524,9 +56662,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: &697 + response-if-child-teams-exist: &699 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -56680,7 +56818,7 @@ paths: resources: type: object properties: - core: &359 + core: &361 title: Rate Limit type: object properties: @@ -56697,21 +56835,21 @@ paths: - remaining - reset - used - graphql: *359 - search: *359 - code_search: *359 - source_import: *359 - integration_manifest: *359 - code_scanning_upload: *359 - actions_runner_registration: *359 - scim: *359 - dependency_snapshots: *359 - dependency_sbom: *359 - code_scanning_autofix: *359 + graphql: *361 + search: *361 + code_search: *361 + source_import: *361 + integration_manifest: *361 + code_scanning_upload: *361 + actions_runner_registration: *361 + scim: *361 + dependency_snapshots: *361 + dependency_sbom: *361 + code_scanning_autofix: *361 required: - core - search - rate: *359 + rate: *361 required: - rate - resources @@ -56830,14 +56968,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: default-response: summary: Default response @@ -57348,7 +57486,7 @@ paths: version: '2026-03-10' '403': *29 '404': *6 - '301': *361 + '301': *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57366,8 +57504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -57665,10 +57803,10 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *362 - '307': &363 + default: *364 + '307': &365 description: Temporary Redirect content: application/json: @@ -57697,8 +57835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -57720,7 +57858,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *363 + '307': *365 '404': *6 '409': *54 x-github: @@ -57744,11 +57882,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 - - &395 + - &397 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -57771,7 +57909,7 @@ paths: type: integer artifacts: type: array - items: &364 + items: &366 title: Artifact description: An artifact type: object @@ -57849,7 +57987,7 @@ paths: - expires_at - updated_at examples: - default: &396 + default: &398 value: total_count: 2 artifacts: @@ -57910,9 +58048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *357 - - *358 - - &365 + - *359 + - *360 + - &367 name: artifact_id description: The unique identifier of the artifact. in: path @@ -57924,7 +58062,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -57962,9 +58100,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *357 - - *358 - - *365 + - *359 + - *360 + - *367 responses: '204': description: Response @@ -57988,9 +58126,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *357 - - *358 - - *365 + - *359 + - *360 + - *367 - name: archive_format in: path required: true @@ -58000,11 +58138,11 @@ paths: '302': description: Response headers: - Location: &518 + Location: &520 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': &557 + '410': &559 description: Gone content: application/json: @@ -58029,14 +58167,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &366 + schema: &368 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -58069,13 +58207,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: application/json: - schema: *366 + schema: *368 examples: selected_actions: *42 responses: @@ -58104,14 +58242,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &367 + schema: &369 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -58144,13 +58282,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: application/json: - schema: *367 + schema: *369 examples: selected_actions: *44 responses: @@ -58181,14 +58319,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -58214,11 +58352,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 - - &369 + - &371 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 @@ -58252,7 +58390,7 @@ paths: description: Response content: application/json: - schema: &370 + schema: &372 title: Repository actions caches description: Repository actions caches type: object @@ -58294,7 +58432,7 @@ paths: - total_count - actions_caches examples: - default: &371 + default: &373 value: total_count: 1 actions_caches: @@ -58326,23 +58464,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: - - *357 - - *358 + - *359 + - *360 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *369 + - *371 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: *371 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58362,8 +58500,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: - - *357 - - *358 + - *359 + - *360 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -58392,8 +58530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *48 responses: @@ -58475,8 +58613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -58628,9 +58766,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *357 - - *358 - - &372 + - *359 + - *360 + - &374 name: job_id description: The unique identifier of the job. in: path @@ -58642,7 +58780,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &401 title: Job description: Information of a job execution in a workflow run type: object @@ -58949,9 +59087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *357 - - *358 - - *372 + - *359 + - *360 + - *374 responses: '302': description: Response @@ -58979,9 +59117,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *357 - - *358 - - *372 + - *359 + - *360 + - *374 requestBody: required: false content: @@ -59007,7 +59145,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -59031,8 +59169,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Status response @@ -59091,8 +59229,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: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -59131,7 +59269,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -59160,8 +59298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -59179,7 +59317,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &403 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -59199,7 +59337,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &404 value: total_count: 2 secrets: @@ -59232,9 +59370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *357 - - *358 - - *178 + - *359 + - *360 + - *180 - *19 responses: '200': @@ -59251,7 +59389,7 @@ paths: type: integer variables: type: array - items: &403 + items: &405 title: Actions Variable type: object properties: @@ -59281,7 +59419,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &406 value: total_count: 2 variables: @@ -59314,8 +59452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -59324,12 +59462,12 @@ paths: schema: type: object properties: - enabled: &374 + enabled: &376 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *146 - selected_actions_url: *373 - sha_pinning_required: *147 + allowed_actions: *148 + selected_actions_url: *375 + sha_pinning_required: *149 required: - enabled examples: @@ -59357,8 +59495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -59369,9 +59507,9 @@ paths: schema: type: object properties: - enabled: *374 - allowed_actions: *146 - sha_pinning_required: *147 + enabled: *376 + allowed_actions: *148 + sha_pinning_required: *149 required: - enabled examples: @@ -59401,14 +59539,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &375 + schema: &377 type: object properties: access_level: @@ -59425,7 +59563,7 @@ paths: required: - access_level examples: - default: &376 + default: &378 value: access_level: organization x-github: @@ -59449,15 +59587,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: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: application/json: - schema: *375 + schema: *377 examples: - default: *376 + default: *378 responses: '204': description: Response @@ -59481,14 +59619,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *377 + schema: *379 examples: default: value: @@ -59512,8 +59650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Empty response for successful settings update @@ -59523,7 +59661,7 @@ paths: required: true content: application/json: - schema: *378 + schema: *380 examples: default: summary: Set retention days @@ -59547,16 +59685,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *379 + default: *381 '404': *6 x-github: enabledForGitHubApps: true @@ -59575,8 +59713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -59586,7 +59724,7 @@ paths: required: true content: application/json: - schema: *148 + schema: *150 examples: default: summary: Set approval policy to first time contributors @@ -59610,16 +59748,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *380 + schema: *382 examples: - default: *149 + default: *151 '403': *29 '404': *6 x-github: @@ -59639,15 +59777,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: application/json: - schema: *381 + schema: *383 examples: - default: *149 + default: *151 responses: '204': description: Empty response for successful settings update @@ -59671,16 +59809,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -59699,8 +59837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -59708,9 +59846,9 @@ paths: required: false content: application/json: - schema: *151 + schema: *153 examples: - selected_actions: *152 + selected_actions: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -59732,16 +59870,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *382 + schema: *384 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59762,8 +59900,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Success response @@ -59774,9 +59912,9 @@ paths: required: true content: application/json: - schema: *383 + schema: *385 examples: - default: *156 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59803,8 +59941,8 @@ paths: in: query schema: type: string - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -59822,9 +59960,9 @@ paths: type: integer runners: type: array - items: *163 + items: *165 examples: - default: *164 + default: *166 headers: Link: *70 x-github: @@ -59848,8 +59986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -59857,9 +59995,9 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: *385 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59881,8 +60019,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: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -59925,7 +60063,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *386 + '201': *388 '404': *6 '422': *7 '409': *54 @@ -59956,16 +60094,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *387 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59993,16 +60131,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '201': description: Response content: application/json: - schema: *165 + schema: *167 examples: - default: *388 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60024,17 +60162,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 responses: '200': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *389 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60055,9 +60193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 responses: '204': description: Response @@ -60083,11 +60221,11 @@ 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: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 responses: - '200': *167 + '200': *169 '404': *6 x-github: githubCloudOnly: false @@ -60109,9 +60247,9 @@ 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: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 requestBody: required: true content: @@ -60135,7 +60273,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -60159,9 +60297,9 @@ 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: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 requestBody: required: true content: @@ -60186,7 +60324,7 @@ paths: - gpu - accelerated responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -60210,11 +60348,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: - - *357 - - *358 - - *162 + - *359 + - *360 + - *164 responses: - '200': *390 + '200': *392 '404': *6 x-github: githubCloudOnly: false @@ -60241,12 +60379,12 @@ 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: - - *357 - - *358 - - *162 - - *391 + - *359 + - *360 + - *164 + - *393 responses: - '200': *167 + '200': *169 '404': *6 '422': *7 x-github: @@ -60272,9 +60410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *357 - - *358 - - &407 + - *359 + - *360 + - &409 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. @@ -60282,7 +60420,7 @@ paths: required: false schema: type: string - - &408 + - &410 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -60290,7 +60428,7 @@ paths: required: false schema: type: string - - &409 + - &411 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -60299,7 +60437,7 @@ paths: required: false schema: type: string - - &410 + - &412 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 @@ -60326,7 +60464,7 @@ paths: - pending - *17 - *19 - - &411 + - &413 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)." @@ -60335,7 +60473,7 @@ paths: schema: type: string format: date-time - - &392 + - &394 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -60344,13 +60482,13 @@ paths: schema: type: boolean default: false - - &412 + - &414 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &413 + - &415 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -60373,7 +60511,7 @@ paths: type: integer workflow_runs: type: array - items: &393 + items: &395 title: Workflow Run description: An invocation of a workflow type: object @@ -60521,7 +60659,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &437 + properties: &439 id: type: string description: SHA for the commit @@ -60572,7 +60710,7 @@ paths: - name - email nullable: true - required: &438 + required: &440 - id - tree_id - message @@ -60580,8 +60718,8 @@ paths: - author - committer nullable: true - repository: *161 - head_repository: *161 + repository: *163 + head_repository: *163 head_repository_id: type: integer example: 5 @@ -60619,7 +60757,7 @@ paths: - workflow_url - pull_requests examples: - default: &414 + default: &416 value: total_count: 1 workflow_runs: @@ -60855,24 +60993,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *357 - - *358 - - &394 + - *359 + - *360 + - &396 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *392 + - *394 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: &397 + default: &399 value: id: 30433642 name: Build @@ -61113,9 +61251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '204': description: Response @@ -61138,9 +61276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '200': description: Response @@ -61259,15 +61397,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61294,12 +61432,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 - *17 - *19 - - *395 + - *397 - *62 responses: '200': @@ -61316,9 +61454,9 @@ paths: type: integer artifacts: type: array - items: *364 + items: *366 examples: - default: *396 + default: *398 headers: Link: *70 x-github: @@ -61342,25 +61480,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *357 - - *358 - - *394 - - &398 + - *359 + - *360 + - *396 + - &400 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *392 + - *394 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *397 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61383,10 +61521,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *357 - - *358 - - *394 - - *398 + - *359 + - *360 + - *396 + - *400 - *17 - *19 responses: @@ -61404,9 +61542,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *401 examples: - default: &400 + default: &402 value: total_count: 1 jobs: @@ -61519,10 +61657,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *357 - - *358 - - *394 - - *398 + - *359 + - *360 + - *396 + - *400 responses: '302': description: Response @@ -61550,15 +61688,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61598,9 +61736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 - *17 - *47 - *48 @@ -61771,9 +61909,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: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 requestBody: required: true content: @@ -61840,15 +61978,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '202': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -61875,9 +62013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 - 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 @@ -61907,9 +62045,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *401 examples: - default: *400 + default: *402 headers: Link: *70 x-github: @@ -61934,9 +62072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '302': description: Response @@ -61963,9 +62101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '204': description: Response @@ -61992,9 +62130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '200': description: Response @@ -62054,7 +62192,7 @@ paths: items: type: object properties: - type: &525 + type: &527 type: string description: The type of reviewer. enum: @@ -62064,7 +62202,7 @@ paths: reviewer: anyOf: - *4 - - *208 + - *210 required: - environment - wait_timer @@ -62139,9 +62277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 requestBody: required: true content: @@ -62188,12 +62326,12 @@ paths: application/json: schema: type: array - items: &520 + items: &522 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &768 + properties: &769 url: type: string format: uri @@ -62278,7 +62416,7 @@ paths: nullable: true properties: *83 required: *84 - required: &769 + required: &770 - id - node_id - sha @@ -62294,7 +62432,7 @@ paths: - created_at - updated_at examples: - default: &521 + default: &523 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -62350,9 +62488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 requestBody: required: false content: @@ -62373,7 +62511,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62396,9 +62534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 requestBody: required: false content: @@ -62419,7 +62557,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62451,9 +62589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *357 - - *358 - - *394 + - *359 + - *360 + - *396 responses: '200': description: Response @@ -62590,8 +62728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -62609,9 +62747,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -62636,16 +62774,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62667,17 +62805,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: &415 + default: &417 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -62703,9 +62841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 requestBody: required: true content: @@ -62736,7 +62874,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62762,9 +62900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '204': description: Response @@ -62789,9 +62927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *357 - - *358 - - *178 + - *359 + - *360 + - *180 - *19 responses: '200': @@ -62808,9 +62946,9 @@ paths: type: integer variables: type: array - items: *403 + items: *405 examples: - default: *404 + default: *406 headers: Link: *70 x-github: @@ -62833,8 +62971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -62861,7 +62999,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -62886,17 +63024,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 responses: '200': description: Response content: application/json: - schema: *403 + schema: *405 examples: - default: &416 + default: &418 value: name: USERNAME value: octocat @@ -62922,9 +63060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 requestBody: required: true content: @@ -62966,9 +63104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 responses: '204': description: Response @@ -62993,8 +63131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -63012,7 +63150,7 @@ paths: type: integer workflows: type: array - items: &405 + items: &407 title: Workflow description: A GitHub Actions workflow type: object @@ -63119,9 +63257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *357 - - *358 - - &406 + - *359 + - *360 + - &408 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -63136,7 +63274,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *407 examples: default: value: @@ -63169,9 +63307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *357 - - *358 - - *406 + - *359 + - *360 + - *408 responses: '204': description: Response @@ -63196,9 +63334,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *357 - - *358 - - *406 + - *359 + - *360 + - *408 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -63296,9 +63434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *357 - - *358 - - *406 + - *359 + - *360 + - *408 responses: '204': description: Response @@ -63325,19 +63463,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *357 - - *358 - - *406 - - *407 + - *359 + - *360 - *408 - *409 - *410 - - *17 - - *19 - *411 - - *392 - *412 + - *17 + - *19 - *413 + - *394 + - *414 + - *415 responses: '200': description: Response @@ -63353,9 +63491,9 @@ paths: type: integer workflow_runs: type: array - items: *393 + items: *395 examples: - default: *414 + default: *416 headers: Link: *70 x-github: @@ -63387,9 +63525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *357 - - *358 - - *406 + - *359 + - *360 + - *408 responses: '200': description: Response @@ -63450,8 +63588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *357 - - *358 + - *359 + - *360 - *62 - *17 - *47 @@ -63620,8 +63758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -63639,9 +63777,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -63665,9 +63803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *357 - - *358 - - *178 + - *359 + - *360 + - *180 - *19 responses: '200': @@ -63684,9 +63822,9 @@ paths: type: integer variables: type: array - items: *403 + items: *405 examples: - default: *404 + default: *406 headers: Link: *70 x-github: @@ -63711,8 +63849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -63730,9 +63868,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -63757,16 +63895,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63788,17 +63926,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *415 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63820,9 +63958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 requestBody: required: true content: @@ -63853,7 +63991,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -63879,9 +64017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '204': description: Response @@ -63906,9 +64044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *357 - - *358 - - *178 + - *359 + - *360 + - *180 - *19 responses: '200': @@ -63925,9 +64063,9 @@ paths: type: integer variables: type: array - items: *403 + items: *405 examples: - default: *404 + default: *406 headers: Link: *70 x-github: @@ -63950,8 +64088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -63978,7 +64116,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -64003,17 +64141,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 responses: '200': description: Response content: application/json: - schema: *403 + schema: *405 examples: - default: *416 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64034,9 +64172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 requestBody: required: true content: @@ -64078,9 +64216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *357 - - *358 - - *172 + - *359 + - *360 + - *174 responses: '204': description: Response @@ -64101,8 +64239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -64139,8 +64277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *357 - - *358 + - *359 + - *360 - name: assignee in: path required: true @@ -64176,8 +64314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -64287,8 +64425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *47 - *48 @@ -64345,7 +64483,7 @@ paths: initiator: type: string examples: - default: *417 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64379,8 +64517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -64388,7 +64526,7 @@ paths: application/json: schema: type: array - items: &418 + items: &420 title: Autolink reference description: An autolink reference. type: object @@ -64442,8 +64580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -64482,9 +64620,9 @@ paths: description: response content: application/json: - schema: *418 + schema: *420 examples: - default: &419 + default: &421 value: id: 1 key_prefix: TICKET- @@ -64515,9 +64653,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *357 - - *358 - - &420 + - *359 + - *360 + - &422 name: autolink_id description: The unique identifier of the autolink. in: path @@ -64529,9 +64667,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: *419 + default: *421 '404': *6 x-github: githubCloudOnly: false @@ -64551,9 +64689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *357 - - *358 - - *420 + - *359 + - *360 + - *422 responses: '204': description: Response @@ -64577,8 +64715,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response if Dependabot is enabled @@ -64626,8 +64764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -64648,8 +64786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -64669,8 +64807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *357 - - *358 + - *359 + - *360 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -64708,7 +64846,7 @@ paths: - url protected: type: boolean - protection: &422 + protection: &424 title: Branch Protection description: Branch Protection type: object @@ -64750,7 +64888,7 @@ paths: required: - contexts - checks - enforce_admins: &425 + enforce_admins: &427 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -64765,7 +64903,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &427 + required_pull_request_reviews: &429 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -64786,7 +64924,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *208 + items: *210 apps: description: The list of apps with review dismissal access. @@ -64815,7 +64953,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *208 + items: *210 apps: description: The list of apps allowed to bypass pull request requirements. @@ -64841,7 +64979,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &424 + restrictions: &426 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -64904,7 +65042,7 @@ paths: type: string teams: type: array - items: *208 + items: *210 apps: type: array items: @@ -65118,9 +65256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *357 - - *358 - - &423 + - *359 + - *360 + - &425 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). @@ -65134,14 +65272,14 @@ paths: description: Response content: application/json: - schema: &433 + schema: &435 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &490 + commit: &492 title: Commit description: Commit type: object @@ -65175,7 +65313,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &421 + properties: &423 name: type: string example: '"Chris Wanstrath"' @@ -65191,7 +65329,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *423 nullable: true message: type: string @@ -65212,7 +65350,7 @@ paths: required: - sha - url - verification: &543 + verification: &545 title: Verification type: object properties: @@ -65246,12 +65384,12 @@ paths: nullable: true oneOf: - *4 - - *170 + - *172 committer: nullable: true oneOf: - *4 - - *170 + - *172 parents: type: array items: @@ -65282,7 +65420,7 @@ paths: type: integer files: type: array - items: &503 + items: &505 title: Diff Entry description: Diff Entry type: object @@ -65366,7 +65504,7 @@ paths: - self protected: type: boolean - protection: *422 + protection: *424 protection_url: type: string format: uri @@ -65473,7 +65611,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *361 + '301': *363 '404': *6 x-github: githubCloudOnly: false @@ -65495,15 +65633,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *422 + schema: *424 examples: default: value: @@ -65697,9 +65835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -65954,7 +66092,7 @@ paths: url: type: string format: uri - required_status_checks: &430 + required_status_checks: &432 title: Status Check Policy description: Status Check Policy type: object @@ -66030,7 +66168,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -66048,7 +66186,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 apps: type: array items: *5 @@ -66106,7 +66244,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *424 + restrictions: *426 required_conversation_resolution: type: object properties: @@ -66218,9 +66356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -66245,17 +66383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: &426 + default: &428 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -66277,17 +66415,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66306,9 +66444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -66333,17 +66471,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: &428 + default: &430 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -66439,9 +66577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -66539,9 +66677,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -66562,9 +66700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -66591,17 +66729,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: &429 + default: &431 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -66624,17 +66762,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *429 + default: *431 '404': *6 x-github: githubCloudOnly: false @@ -66654,9 +66792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -66681,17 +66819,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *430 + schema: *432 examples: - default: &431 + default: &433 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -66717,9 +66855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -66771,9 +66909,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *432 examples: - default: *431 + default: *433 '404': *6 '422': *15 x-github: @@ -66795,9 +66933,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -66821,9 +66959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response @@ -66857,9 +66995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -66926,9 +67064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -66992,9 +67130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: content: application/json: @@ -67060,15 +67198,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response content: application/json: - schema: *424 + schema: *426 examples: default: value: @@ -67159,9 +67297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '204': description: Response @@ -67184,9 +67322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response @@ -67196,7 +67334,7 @@ paths: type: array items: *5 examples: - default: &432 + default: &434 value: - id: 1 slug: octoapp @@ -67253,9 +67391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67289,7 +67427,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *434 '422': *15 x-github: githubCloudOnly: false @@ -67310,9 +67448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67346,7 +67484,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *434 '422': *15 x-github: githubCloudOnly: false @@ -67367,9 +67505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67403,7 +67541,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *434 '422': *15 x-github: githubCloudOnly: false @@ -67425,9 +67563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response @@ -67435,9 +67573,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 '404': *6 x-github: githubCloudOnly: false @@ -67457,9 +67595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -67495,9 +67633,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 '422': *15 x-github: githubCloudOnly: false @@ -67518,9 +67656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: false content: @@ -67556,9 +67694,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 '422': *15 x-github: githubCloudOnly: false @@ -67579,9 +67717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: content: application/json: @@ -67616,9 +67754,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 '422': *15 x-github: githubCloudOnly: false @@ -67640,9 +67778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 responses: '200': description: Response @@ -67676,9 +67814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67736,9 +67874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67796,9 +67934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67858,9 +67996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 requestBody: required: true content: @@ -67882,7 +68020,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: default: value: @@ -67998,8 +68136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -68278,7 +68416,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &436 title: CheckRun description: A check performed on the code of a given code change type: object @@ -68398,7 +68536,7 @@ paths: check. type: array items: *93 - deployment: &761 + deployment: &762 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68678,9 +68816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *357 - - *358 - - &435 + - *359 + - *360 + - &437 name: check_run_id description: The unique identifier of the check run. in: path @@ -68692,9 +68830,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: &436 + default: &438 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -68794,9 +68932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *357 - - *358 - - *435 + - *359 + - *360 + - *437 requestBody: required: true content: @@ -69036,9 +69174,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *436 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69058,9 +69196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *357 - - *358 - - *435 + - *359 + - *360 + - *437 - *17 - *19 responses: @@ -69155,15 +69293,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *357 - - *358 - - *435 + - *359 + - *360 + - *437 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -69201,8 +69339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -69224,7 +69362,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &439 + schema: &441 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -69301,7 +69439,7 @@ paths: nullable: true properties: *83 required: *84 - repository: *161 + repository: *163 created_at: type: string format: date-time @@ -69310,12 +69448,12 @@ paths: type: string format: date-time nullable: true - head_commit: &789 + head_commit: &790 title: Simple Commit description: A commit. type: object - properties: *437 - required: *438 + properties: *439 + required: *440 latest_check_runs_count: type: integer check_runs_url: @@ -69343,7 +69481,7 @@ paths: - check_runs_url - pull_requests examples: - default: &440 + default: &442 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -69634,9 +69772,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *439 + schema: *441 examples: - default: *440 + default: *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69655,8 +69793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -69717,7 +69855,7 @@ paths: required: - app_id - setting - repository: *161 + repository: *163 examples: default: value: @@ -69965,9 +70103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *357 - - *358 - - &441 + - *359 + - *360 + - &443 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -69979,9 +70117,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *441 examples: - default: *440 + default: *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70004,17 +70142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *357 - - *358 - - *441 - - &496 + - *359 + - *360 + - *443 + - &498 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &497 + - &499 name: status description: Returns check runs with the specified `status`. in: query @@ -70053,9 +70191,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *436 examples: - default: &498 + default: &500 value: total_count: 1 check_runs: @@ -70157,15 +70295,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *357 - - *358 - - *441 + - *359 + - *360 + - *443 responses: '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -70188,8 +70326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -70279,8 +70417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -70341,7 +70479,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -70408,21 +70546,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *357 - - *358 - - *442 - - *443 + - *359 + - *360 + - *444 + - *445 - *19 - *17 - - &460 + - &462 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: *444 - - &461 + schema: *446 + - &463 name: pr description: The number of the pull request for the results you want to list. in: query @@ -70447,13 +70585,13 @@ paths: be returned. in: query required: false - schema: *445 + schema: *447 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *446 + schema: *448 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -70472,14 +70610,14 @@ paths: items: type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *447 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *449 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -70487,12 +70625,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *448 - dismissed_comment: *449 - rule: *450 - tool: *451 - most_recent_instance: *452 + dismissed_at: *194 + dismissed_reason: *450 + dismissed_comment: *451 + rule: *452 + tool: *453 + most_recent_instance: *454 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -70618,7 +70756,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &453 + '403': &455 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -70645,9 +70783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *357 - - *358 - - &454 + - *359 + - *360 + - &456 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -70655,23 +70793,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: &455 + schema: &457 type: object properties: - number: *186 - created_at: *187 - updated_at: *188 - url: *189 - html_url: *190 - instances_url: *447 - state: *195 - fixed_at: *191 + number: *188 + created_at: *189 + updated_at: *190 + url: *191 + html_url: *192 + instances_url: *449 + state: *197 + fixed_at: *193 dismissed_by: title: Simple User description: A GitHub user. @@ -70679,9 +70817,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *192 - dismissed_reason: *448 - dismissed_comment: *449 + dismissed_at: *194 + dismissed_reason: *450 + dismissed_comment: *451 rule: type: object properties: @@ -70735,8 +70873,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *451 - most_recent_instance: *452 + tool: *453 + most_recent_instance: *454 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -70835,7 +70973,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -70855,9 +70993,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 requestBody: required: true content: @@ -70872,8 +71010,8 @@ paths: enum: - open - dismissed - dismissed_reason: *448 - dismissed_comment: *449 + dismissed_reason: *450 + dismissed_comment: *451 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -70901,7 +71039,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -70977,7 +71115,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &459 + '403': &461 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -71004,15 +71142,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: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 responses: '200': description: Response content: application/json: - schema: &456 + schema: &458 type: object properties: status: @@ -71038,13 +71176,13 @@ paths: - description - started_at examples: - default: &457 + default: &459 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &458 + '400': &460 description: Bad Request content: application/json: @@ -71055,7 +71193,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': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -71080,29 +71218,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: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 responses: '200': description: OK content: application/json: - schema: *456 + schema: *458 examples: - default: *457 + default: *459 '202': description: Accepted content: application/json: - schema: *456 + schema: *458 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *458 + '400': *460 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -71134,9 +71272,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: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 requestBody: required: false content: @@ -71181,8 +71319,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *458 - '403': *459 + '400': *460 + '403': *461 '404': *6 '422': description: Unprocessable Entity @@ -71206,13 +71344,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 - *19 - *17 - - *460 - - *461 + - *462 + - *463 responses: '200': description: Response @@ -71223,10 +71361,10 @@ paths: items: type: object properties: - ref: *444 - analysis_key: *462 - environment: *463 - category: *464 + ref: *446 + analysis_key: *464 + environment: *465 + category: *466 state: type: string description: State of a code scanning alert instance. @@ -71241,7 +71379,7 @@ paths: properties: text: type: string - location: *465 + location: *467 html_url: type: string classifications: @@ -71249,7 +71387,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *466 + items: *468 examples: default: value: @@ -71286,7 +71424,7 @@ paths: end_column: 50 classifications: - source - '403': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -71320,25 +71458,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *357 - - *358 - - *442 - - *443 + - *359 + - *360 + - *444 + - *445 - *19 - *17 - - *461 + - *463 - 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: *444 + schema: *446 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &467 + schema: &469 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -71359,23 +71497,23 @@ paths: application/json: schema: type: array - items: &468 + items: &470 type: object properties: - ref: *444 - commit_sha: &476 + ref: *446 + commit_sha: &478 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *462 + analysis_key: *464 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *464 + category: *466 error: type: string example: error reading field xyz @@ -71399,8 +71537,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *467 - tool: *451 + sarif_id: *469 + tool: *453 deletable: type: boolean warning: @@ -71461,7 +71599,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -71497,8 +71635,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: - - *357 - - *358 + - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -71511,7 +71649,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: response: summary: application/json response @@ -71565,7 +71703,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *453 + '403': *455 '404': *6 '422': description: Response if analysis could not be processed @@ -71652,8 +71790,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: - - *357 - - *358 + - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -71706,7 +71844,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': *459 + '403': *461 '404': *6 '503': *122 x-github: @@ -71728,8 +71866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -71737,7 +71875,7 @@ paths: application/json: schema: type: array - items: &469 + items: &471 title: CodeQL Database description: A CodeQL database. type: object @@ -71848,7 +71986,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': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -71877,8 +72015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -71890,7 +72028,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *471 examples: default: value: @@ -71922,9 +72060,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': &507 + '302': &509 description: Found - '403': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -71946,8 +72084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *357 - - *358 + - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -71957,7 +72095,7 @@ paths: responses: '204': description: Response - '403': *459 + '403': *461 '404': *6 '503': *122 x-github: @@ -71985,8 +72123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -71995,7 +72133,7 @@ paths: type: object additionalProperties: false properties: - language: &470 + language: &472 type: string description: The language targeted by the CodeQL query enum: @@ -72075,7 +72213,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &474 + schema: &476 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -72085,7 +72223,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *470 + query_language: *472 query_pack_url: type: string description: The download url for the query pack. @@ -72132,7 +72270,7 @@ paths: items: type: object properties: - repository: &471 + repository: &473 title: Repository Identifier description: Repository Identifier type: object @@ -72168,7 +72306,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &475 + analysis_status: &477 type: string description: The new status of the CodeQL variant analysis repository task. @@ -72200,7 +72338,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &472 + access_mismatch_repos: &474 type: object properties: repository_count: @@ -72214,7 +72352,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: *471 + items: *473 required: - repository_count - repositories @@ -72236,8 +72374,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *472 - over_limit_repos: *472 + no_codeql_db_repos: *474 + over_limit_repos: *474 required: - access_mismatch_repos - not_found_repos @@ -72253,7 +72391,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &473 + value: &475 summary: Default response value: id: 1 @@ -72399,10 +72537,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *473 + value: *475 repository_lists: summary: Response for a successful variant analysis submission - value: *473 + value: *475 '404': *6 '422': description: Unable to process variant analysis submission @@ -72430,8 +72568,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: - - *357 - - *358 + - *359 + - *360 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -72443,9 +72581,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *476 examples: - default: *473 + default: *475 '404': *6 '503': *122 x-github: @@ -72468,7 +72606,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: - - *357 + - *359 - name: repo in: path description: The name of the controller repository. @@ -72503,7 +72641,7 @@ paths: type: object properties: repository: *67 - analysis_status: *475 + analysis_status: *477 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -72628,8 +72766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -72731,7 +72869,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *453 + '403': *455 '404': *6 '503': *122 x-github: @@ -72752,8 +72890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -72820,7 +72958,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -72845,7 +72983,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *459 + '403': *461 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -72916,8 +73054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -72925,7 +73063,7 @@ paths: schema: type: object properties: - commit_sha: *476 + commit_sha: *478 ref: type: string description: |- @@ -72983,7 +73121,7 @@ paths: schema: type: object properties: - id: *467 + id: *469 url: type: string description: The REST API URL for checking the status of the upload. @@ -72997,7 +73135,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': *459 + '403': *461 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -73020,8 +73158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *357 - - *358 + - *359 + - *360 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -73067,7 +73205,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': *453 + '403': *455 '404': description: Not Found if the sarif id does not match any upload '503': *122 @@ -73092,8 +73230,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -73174,8 +73312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *357 - - *358 + - *359 + - *360 - 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 @@ -73295,8 +73433,8 @@ paths: parameters: - *17 - *19 - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -73312,7 +73450,7 @@ paths: type: integer codespaces: type: array - items: *261 + items: *263 examples: default: value: @@ -73610,8 +73748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -73674,17 +73812,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '400': *14 '401': *25 '403': *29 @@ -73713,8 +73851,8 @@ paths: parameters: - *17 - *19 - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -73778,8 +73916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -73814,14 +73952,14 @@ paths: type: integer machines: type: array - items: &703 + items: &705 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *478 - required: *479 + properties: *480 + required: *481 examples: - default: &704 + default: &706 value: total_count: 2 machines: @@ -73861,8 +73999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *357 - - *358 + - *359 + - *360 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -73946,8 +74084,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: - - *357 - - *358 + - *359 + - *360 - 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 @@ -74013,8 +74151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -74032,7 +74170,7 @@ paths: type: integer secrets: type: array - items: &483 + items: &485 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -74052,7 +74190,7 @@ paths: - created_at - updated_at examples: - default: *480 + default: *482 headers: Link: *70 x-github: @@ -74075,16 +74213,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *482 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74104,17 +74242,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '200': description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *484 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74134,9 +74272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 requestBody: required: true content: @@ -74164,7 +74302,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -74188,9 +74326,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '204': description: Response @@ -74218,8 +74356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *357 - - *358 + - *359 + - *360 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -74261,7 +74399,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &485 + properties: &487 login: type: string example: octocat @@ -74354,7 +74492,7 @@ paths: user_view_type: type: string example: public - required: &486 + required: &488 - avatar_url - events_url - followers_url @@ -74428,8 +74566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *357 - - *358 + - *359 + - *360 - *74 responses: '204': @@ -74476,8 +74614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *357 - - *358 + - *359 + - *360 - *74 requestBody: required: false @@ -74504,7 +74642,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &556 + schema: &558 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -74515,7 +74653,7 @@ paths: example: 42 type: integer format: int64 - repository: *161 + repository: *163 invitee: title: Simple User description: A GitHub user. @@ -74693,7 +74831,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *130 + schema: *132 '403': *29 x-github: triggersNotification: true @@ -74733,8 +74871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *357 - - *358 + - *359 + - *360 - *74 responses: '204': @@ -74766,8 +74904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *357 - - *358 + - *359 + - *360 - *74 responses: '200': @@ -74788,8 +74926,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *485 - required: *486 + properties: *487 + required: *488 nullable: true required: - permission @@ -74844,8 +74982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -74855,7 +74993,7 @@ paths: application/json: schema: type: array - items: &487 + items: &489 title: Commit Comment description: Commit Comment type: object @@ -74913,7 +75051,7 @@ paths: - created_at - updated_at examples: - default: &492 + default: &494 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74972,17 +75110,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: &493 + default: &495 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75039,8 +75177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -75063,7 +75201,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *489 examples: default: value: @@ -75114,8 +75252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '204': @@ -75137,8 +75275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -75165,7 +75303,7 @@ paths: application/json: schema: type: array - items: &488 + items: &490 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -75208,7 +75346,7 @@ paths: - content - created_at examples: - default: &560 + default: &562 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -75253,8 +75391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -75287,9 +75425,9 @@ paths: description: Reaction exists content: application/json: - schema: *488 + schema: *490 examples: - default: &489 + default: &491 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -75318,9 +75456,9 @@ paths: description: Reaction created content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '422': *15 x-github: githubCloudOnly: false @@ -75342,10 +75480,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *357 - - *358 + - *359 + - *360 - *104 - - &561 + - &563 name: reaction_id description: The unique identifier of the reaction. in: path @@ -75400,8 +75538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *357 - - *358 + - *359 + - *360 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -75457,9 +75595,9 @@ paths: application/json: schema: type: array - items: *490 + items: *492 examples: - default: &613 + default: &615 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75553,9 +75691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *357 - - *358 - - &491 + - *359 + - *360 + - &493 name: commit_sha description: The SHA of the commit. in: path @@ -75627,9 +75765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *357 - - *358 - - *491 + - *359 + - *360 + - *493 - *17 - *19 responses: @@ -75639,9 +75777,9 @@ paths: application/json: schema: type: array - items: *487 + items: *489 examples: - default: *492 + default: *494 headers: Link: *70 x-github: @@ -75669,9 +75807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *357 - - *358 - - *491 + - *359 + - *360 + - *493 requestBody: required: true content: @@ -75706,9 +75844,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: *493 + default: *495 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75736,9 +75874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *357 - - *358 - - *491 + - *359 + - *360 + - *493 - *17 - *19 responses: @@ -75748,9 +75886,9 @@ paths: application/json: schema: type: array - items: *494 + items: *496 examples: - default: &605 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -76287,11 +76425,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *357 - - *358 + - *359 + - *360 - *19 - *17 - - &495 + - &497 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)" @@ -76306,9 +76444,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: &592 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76396,7 +76534,7 @@ paths: schema: type: string examples: - default: &504 + default: &506 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -76409,7 +76547,7 @@ paths: schema: type: string examples: - default: &505 + default: &507 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -76462,11 +76600,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *357 - - *358 - - *495 - - *496 + - *359 + - *360 - *497 + - *498 + - *499 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -76500,9 +76638,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *436 examples: - default: *498 + default: *500 headers: Link: *70 x-github: @@ -76527,9 +76665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *357 - - *358 - - *495 + - *359 + - *360 + - *497 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -76537,7 +76675,7 @@ paths: schema: type: integer example: 1 - - *496 + - *498 - *17 - *19 responses: @@ -76555,7 +76693,7 @@ paths: type: integer check_suites: type: array - items: *439 + items: *441 examples: default: value: @@ -76755,9 +76893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *357 - - *358 - - *495 + - *359 + - *360 + - *497 - *17 - *19 responses: @@ -76824,7 +76962,7 @@ paths: type: string total_count: type: integer - repository: *161 + repository: *163 commit_url: type: string format: uri @@ -76955,9 +77093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *357 - - *358 - - *495 + - *359 + - *360 + - *497 - *17 - *19 responses: @@ -76967,7 +77105,7 @@ paths: application/json: schema: type: array - items: &683 + items: &685 title: Status description: The status of a commit. type: object @@ -77048,7 +77186,7 @@ paths: site_admin: false headers: Link: *70 - '301': *361 + '301': *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77076,8 +77214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -77106,20 +77244,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *499 - required: *500 + properties: *501 + required: *502 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &501 + properties: &503 url: type: string format: uri html_url: type: string format: uri - required: &502 + required: &504 - url - html_url nullable: true @@ -77133,26 +77271,26 @@ paths: contributing: title: Community Health File type: object - properties: *501 - required: *502 + properties: *503 + required: *504 nullable: true readme: title: Community Health File type: object - properties: *501 - required: *502 + properties: *503 + required: *504 nullable: true issue_template: title: Community Health File type: object - properties: *501 - required: *502 + properties: *503 + required: *504 nullable: true pull_request_template: title: Community Health File type: object - properties: *501 - required: *502 + properties: *503 + required: *504 nullable: true required: - code_of_conduct @@ -77279,8 +77417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *357 - - *358 + - *359 + - *360 - *19 - *17 - name: basehead @@ -77323,8 +77461,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *490 - merge_base_commit: *490 + base_commit: *492 + merge_base_commit: *492 status: type: string enum: @@ -77344,10 +77482,10 @@ paths: example: 6 commits: type: array - items: *490 + items: *492 files: type: array - items: *503 + items: *505 required: - url - html_url @@ -77593,12 +77731,12 @@ paths: schema: type: string examples: - default: *504 + default: *506 application/vnd.github.patch: schema: type: string examples: - default: *505 + default: *507 '404': *6 '500': *55 '503': *122 @@ -77643,8 +77781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *357 - - *358 + - *359 + - *360 - name: path description: path parameter in: path @@ -77804,7 +77942,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &506 + response-if-content-is-a-file-github-object: &508 summary: Response if content is a file value: type: file @@ -77936,7 +78074,7 @@ paths: - size - type - url - - &618 + - &620 title: Content File description: Content File type: object @@ -78137,7 +78275,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *506 + response-if-content-is-a-file: *508 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -78206,7 +78344,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *507 + '302': *509 '304': *37 x-github: githubCloudOnly: false @@ -78259,8 +78397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *357 - - *358 + - *359 + - *360 - name: path description: path parameter in: path @@ -78353,7 +78491,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &510 title: File Commit description: File Commit type: object @@ -78505,7 +78643,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: example-for-creating-a-file: value: @@ -78559,7 +78697,7 @@ paths: schema: oneOf: - *3 - - &538 + - &540 description: Repository rule violation was detected type: object properties: @@ -78580,7 +78718,7 @@ paths: items: type: object properties: - placeholder_id: &675 + placeholder_id: &677 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -78612,8 +78750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *357 - - *358 + - *359 + - *360 - name: path description: path parameter in: path @@ -78674,7 +78812,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -78729,8 +78867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *357 - - *358 + - *359 + - *360 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -78859,8 +78997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -78992,24 +79130,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *357 - - *358 - - *210 - - *211 + - *359 + - *360 - *212 - *213 - *214 + - *215 + - *216 - 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 - - *215 - - *509 - - *216 - *217 + - *511 - *218 + - *219 + - *220 - *62 - *47 - *48 @@ -79021,11 +79159,11 @@ paths: application/json: schema: type: array - items: &513 + items: &515 type: object description: A Dependabot alert. properties: - number: *186 + number: *188 state: type: string description: The state of the Dependabot alert. @@ -79068,13 +79206,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *510 + security_advisory: *512 security_vulnerability: *66 - url: *189 - html_url: *190 - created_at: *187 - updated_at: *188 - dismissed_at: *192 + url: *191 + html_url: *192 + created_at: *189 + updated_at: *190 + dismissed_at: *194 dismissed_by: title: Simple User description: A GitHub user. @@ -79098,9 +79236,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *191 - auto_dismissed_at: *511 - dismissal_request: *512 + fixed_at: *193 + auto_dismissed_at: *513 + dismissal_request: *514 assignees: type: array description: The users assigned to this alert. @@ -79355,9 +79493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *357 - - *358 - - &514 + - *359 + - *360 + - &516 name: alert_number in: path description: |- @@ -79366,13 +79504,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *186 + schema: *188 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: default: value: @@ -79504,9 +79642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *357 - - *358 - - *514 + - *359 + - *360 + - *516 requestBody: required: true content: @@ -79562,7 +79700,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: default: value: @@ -79692,8 +79830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -79711,7 +79849,7 @@ paths: type: integer secrets: type: array - items: &517 + items: &519 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -79764,16 +79902,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *515 + schema: *517 examples: - default: *516 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79793,15 +79931,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '200': description: Response content: application/json: - schema: *517 + schema: *519 examples: default: value: @@ -79827,9 +79965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 requestBody: required: true content: @@ -79857,7 +79995,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -79881,9 +80019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *357 - - *358 - - *169 + - *359 + - *360 + - *171 responses: '204': description: Response @@ -79905,8 +80043,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: - - *357 - - *358 + - *359 + - *360 - 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 @@ -80069,8 +80207,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -80308,8 +80446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - name: sbom_uuid in: path required: true @@ -80320,7 +80458,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *518 + Location: *520 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -80341,8 +80479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '201': description: Response @@ -80380,8 +80518,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: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -80456,7 +80594,7 @@ paths: - version - url additionalProperties: false - metadata: &519 + metadata: &521 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -80489,7 +80627,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *519 + metadata: *521 resolved: type: object description: A collection of resolved package dependencies. @@ -80502,7 +80640,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *519 + metadata: *521 relationship: type: string description: A notation of whether a dependency is requested @@ -80631,8 +80769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *357 - - *358 + - *359 + - *360 - name: sha description: The SHA recorded at creation time. in: query @@ -80672,9 +80810,9 @@ paths: application/json: schema: type: array - items: *520 + items: *522 examples: - default: *521 + default: *523 headers: Link: *70 x-github: @@ -80740,8 +80878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -80822,7 +80960,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: simple-example: summary: Simple example @@ -80895,9 +81033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *357 - - *358 - - &522 + - *359 + - *360 + - &524 name: deployment_id description: deployment_id parameter in: path @@ -80909,7 +81047,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: default: value: @@ -80974,9 +81112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *357 - - *358 - - *522 + - *359 + - *360 + - *524 responses: '204': description: Response @@ -80998,9 +81136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *357 - - *358 - - *522 + - *359 + - *360 + - *524 - *17 - *19 responses: @@ -81010,7 +81148,7 @@ paths: application/json: schema: type: array - items: &523 + items: &525 title: Deployment Status description: The status of a deployment. type: object @@ -81171,9 +81309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *357 - - *358 - - *522 + - *359 + - *360 + - *524 requestBody: required: true content: @@ -81248,9 +81386,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: &524 + default: &526 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -81306,9 +81444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *357 - - *358 - - *522 + - *359 + - *360 + - *524 - name: status_id in: path required: true @@ -81319,9 +81457,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: *524 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -81346,8 +81484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -81404,8 +81542,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -81422,7 +81560,7 @@ paths: type: integer environments: type: array - items: &526 + items: &528 title: Environment description: Details of a deployment environment type: object @@ -81474,7 +81612,7 @@ paths: type: type: string example: wait_timer - wait_timer: &528 + wait_timer: &530 type: integer example: 30 description: The amount of time to delay a job after @@ -81511,11 +81649,11 @@ paths: items: type: object properties: - type: *525 + type: *527 reviewer: anyOf: - *4 - - *208 + - *210 required: - id - node_id @@ -81535,7 +81673,7 @@ paths: - id - node_id - type - deployment_branch_policy: &529 + deployment_branch_policy: &531 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -81651,9 +81789,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *357 - - *358 - - &527 + - *359 + - *360 + - &529 name: environment_name in: path required: true @@ -81666,9 +81804,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: - default: &530 + default: &532 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -81752,9 +81890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 requestBody: required: false content: @@ -81763,7 +81901,7 @@ paths: type: object nullable: true properties: - wait_timer: *528 + wait_timer: *530 prevent_self_review: type: boolean example: false @@ -81780,13 +81918,13 @@ paths: items: type: object properties: - type: *525 + type: *527 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *529 + deployment_branch_policy: *531 additionalProperties: false examples: default: @@ -81806,9 +81944,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: - default: *530 + default: *532 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -81832,9 +81970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 responses: '204': description: Default response @@ -81859,9 +81997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 - *17 - *19 responses: @@ -81879,7 +82017,7 @@ paths: example: 2 branch_policies: type: array - items: &531 + items: &533 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -81936,9 +82074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 requestBody: required: true content: @@ -81984,9 +82122,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - example-wildcard: &532 + example-wildcard: &534 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -82028,10 +82166,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *357 - - *358 - - *527 - - &533 + - *359 + - *360 + - *529 + - &535 name: branch_policy_id in: path required: true @@ -82043,9 +82181,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *532 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82064,10 +82202,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *357 - - *358 - - *527 - - *533 + - *359 + - *360 + - *529 + - *535 requestBody: required: true content: @@ -82095,9 +82233,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *532 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82116,10 +82254,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *357 - - *358 - - *527 - - *533 + - *359 + - *360 + - *529 + - *535 responses: '204': description: Response @@ -82144,9 +82282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *527 - - *358 - - *357 + - *529 + - *360 + - *359 responses: '200': description: List of deployment protection rules @@ -82162,7 +82300,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &534 + items: &536 title: Deployment protection rule description: Deployment protection rule type: object @@ -82181,7 +82319,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &535 + app: &537 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -82280,9 +82418,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: - - *527 - - *358 - - *357 + - *529 + - *360 + - *359 requestBody: content: application/json: @@ -82303,9 +82441,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *534 + schema: *536 examples: - default: &536 + default: &538 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -82340,9 +82478,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: - - *527 - - *358 - - *357 + - *529 + - *360 + - *359 - *19 - *17 responses: @@ -82361,7 +82499,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *535 + items: *537 examples: default: value: @@ -82396,10 +82534,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *357 - - *358 - - *527 - - &537 + - *359 + - *360 + - *529 + - &539 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -82411,9 +82549,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: *536 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82434,10 +82572,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *527 - - *358 - - *357 - - *537 + - *529 + - *360 + - *359 + - *539 responses: '204': description: Response @@ -82463,9 +82601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 - *17 - *19 responses: @@ -82483,9 +82621,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 headers: Link: *70 x-github: @@ -82510,17 +82648,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 responses: '200': description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82542,18 +82680,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *357 - - *358 - - *527 - - *169 + - *359 + - *360 + - *529 + - *171 responses: '200': description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *415 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82575,10 +82713,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *357 - - *358 - - *527 - - *169 + - *359 + - *360 + - *529 + - *171 requestBody: required: true content: @@ -82609,7 +82747,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -82635,10 +82773,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *357 - - *358 - - *527 - - *169 + - *359 + - *360 + - *529 + - *171 responses: '204': description: Default response @@ -82663,10 +82801,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *357 - - *358 - - *527 - - *178 + - *359 + - *360 + - *529 + - *180 - *19 responses: '200': @@ -82683,9 +82821,9 @@ paths: type: integer variables: type: array - items: *403 + items: *405 examples: - default: *404 + default: *406 headers: Link: *70 x-github: @@ -82708,9 +82846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *357 - - *358 - - *527 + - *359 + - *360 + - *529 requestBody: required: true content: @@ -82737,7 +82875,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -82762,18 +82900,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *357 - - *358 - - *527 - - *172 + - *359 + - *360 + - *529 + - *174 responses: '200': description: Response content: application/json: - schema: *403 + schema: *405 examples: - default: *416 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82794,10 +82932,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *357 - - *358 - - *172 - - *527 + - *359 + - *360 + - *174 + - *529 requestBody: required: true content: @@ -82839,10 +82977,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *357 - - *358 - - *172 - - *527 + - *359 + - *360 + - *174 + - *529 responses: '204': description: Response @@ -82864,8 +83002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -82933,8 +83071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *357 - - *358 + - *359 + - *360 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -82956,7 +83094,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -83093,8 +83231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -83126,9 +83264,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *362 + default: *364 '400': *14 '422': *15 '403': *29 @@ -83149,8 +83287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -83209,8 +83347,8 @@ paths: application/json: schema: oneOf: - - *130 - - *538 + - *132 + - *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83235,8 +83373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *357 - - *358 + - *359 + - *360 - name: file_sha in: path required: true @@ -83335,8 +83473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -83445,7 +83583,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &541 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -83659,15 +83797,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *357 - - *358 - - *491 + - *359 + - *360 + - *493 responses: '200': description: Response content: application/json: - schema: *539 + schema: *541 examples: default: value: @@ -83723,9 +83861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *357 - - *358 - - &540 + - *359 + - *360 + - &542 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. @@ -83742,7 +83880,7 @@ paths: application/json: schema: type: array - items: &541 + items: &543 title: Git Reference description: Git references within a repository type: object @@ -83817,17 +83955,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *357 - - *358 - - *540 + - *359 + - *360 + - *542 responses: '200': description: Response content: application/json: - schema: *541 + schema: *543 examples: - default: &542 + default: &544 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -83856,8 +83994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -83886,9 +84024,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *543 examples: - default: *542 + default: *544 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -83914,9 +84052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *357 - - *358 - - *540 + - *359 + - *360 + - *542 requestBody: required: true content: @@ -83945,9 +84083,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *543 examples: - default: *542 + default: *544 '422': *15 '409': *54 x-github: @@ -83965,9 +84103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *357 - - *358 - - *540 + - *359 + - *360 + - *542 responses: '204': description: Response @@ -84022,8 +84160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -84090,7 +84228,7 @@ paths: description: Response content: application/json: - schema: &544 + schema: &546 title: Git Tag description: Metadata for a Git tag type: object @@ -84141,7 +84279,7 @@ paths: - sha - type - url - verification: *543 + verification: *545 required: - sha - url @@ -84151,7 +84289,7 @@ paths: - tag - message examples: - default: &545 + default: &547 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -84224,8 +84362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *357 - - *358 + - *359 + - *360 - name: tag_sha in: path required: true @@ -84236,9 +84374,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: - default: *545 + default: *547 '404': *6 '409': *54 x-github: @@ -84262,8 +84400,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -84336,7 +84474,7 @@ paths: description: Response content: application/json: - schema: &546 + schema: &548 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -84432,8 +84570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *357 - - *358 + - *359 + - *360 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -84456,7 +84594,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: default-response: summary: Default response @@ -84514,8 +84652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -84558,8 +84696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -84569,7 +84707,7 @@ paths: application/json: schema: type: array - items: &547 + items: &549 title: Webhook description: Webhooks for repositories. type: object @@ -84623,7 +84761,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &798 + last_response: &799 title: Hook Response type: object properties: @@ -84697,8 +84835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -84750,9 +84888,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: &548 + default: &550 value: type: Repository id: 12345678 @@ -84800,17 +84938,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 responses: '200': description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: *548 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -84830,9 +84968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 requestBody: required: true content: @@ -84877,9 +85015,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: *548 + default: *550 '422': *15 '404': *6 x-github: @@ -84900,9 +85038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 responses: '204': description: Response @@ -84926,9 +85064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 responses: '200': description: Response @@ -84955,9 +85093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 requestBody: required: false content: @@ -85001,12 +85139,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *357 - - *358 - - *229 - - *17 - - *230 + - *359 + - *360 - *231 + - *17 + - *232 + - *233 responses: '200': description: Response @@ -85014,9 +85152,9 @@ paths: application/json: schema: type: array - items: *232 + items: *234 examples: - default: *233 + default: *235 '400': *14 '422': *15 x-github: @@ -85035,18 +85173,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 - *16 responses: '200': description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *235 + default: *237 '400': *14 '422': *15 x-github: @@ -85065,9 +85203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 - *16 responses: '202': *39 @@ -85090,9 +85228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 responses: '204': description: Response @@ -85117,9 +85255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *357 - - *358 - - *229 + - *359 + - *360 + - *231 responses: '204': description: Response @@ -85142,8 +85280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response if immutable releases are enabled @@ -85189,8 +85327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': *61 '409': *54 @@ -85210,8 +85348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': *61 '409': *54 @@ -85268,14 +85406,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &549 + schema: &551 title: Import description: A repository import from an external source. type: object @@ -85374,7 +85512,7 @@ paths: - html_url - authors_url examples: - default: &552 + default: &554 value: vcs: subversion use_lfs: true @@ -85390,7 +85528,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': &550 + '503': &552 description: Unavailable due to service under maintenance. content: application/json: @@ -85419,8 +85557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -85468,7 +85606,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: default: value: @@ -85493,7 +85631,7 @@ paths: type: string '422': *15 '404': *6 - '503': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85521,8 +85659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -85571,7 +85709,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: example-1: summary: Example 1 @@ -85619,7 +85757,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': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85642,12 +85780,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response - '503': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85673,9 +85811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *357 - - *358 - - &725 + - *359 + - *360 + - &727 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85689,7 +85827,7 @@ paths: application/json: schema: type: array - items: &551 + items: &553 title: Porter Author description: Porter Author type: object @@ -85743,7 +85881,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': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85768,8 +85906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *357 - - *358 + - *359 + - *360 - name: author_id in: path required: true @@ -85799,7 +85937,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: default: value: @@ -85812,7 +85950,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85836,8 +85974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -85878,7 +86016,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85906,8 +86044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -85934,11 +86072,11 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: - default: *552 + default: *554 '422': *15 - '503': *550 + '503': *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85961,8 +86099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -85970,8 +86108,8 @@ paths: application/json: schema: *22 examples: - default: *553 - '301': *361 + default: *555 + '301': *363 '404': *6 x-github: githubCloudOnly: false @@ -85991,8 +86129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -86000,12 +86138,12 @@ paths: application/json: schema: anyOf: - - *248 + - *250 - type: object properties: {} additionalProperties: false examples: - default: &555 + default: &557 value: limit: collaborators_only origin: repository @@ -86030,13 +86168,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: application/json: - schema: *554 + schema: *556 examples: default: summary: Example request body @@ -86048,9 +86186,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *555 + default: *557 '409': description: Response x-github: @@ -86072,8 +86210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -86096,8 +86234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -86107,9 +86245,9 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: &718 + default: &720 value: - id: 1 repository: @@ -86240,9 +86378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *357 - - *358 - - *252 + - *359 + - *360 + - *254 requestBody: required: false content: @@ -86271,7 +86409,7 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: default: value: @@ -86402,9 +86540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *357 - - *358 - - *252 + - *359 + - *360 + - *254 responses: '204': description: Response @@ -86435,8 +86573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *357 - - *358 + - *359 + - *360 - 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 @@ -86498,7 +86636,7 @@ paths: required: false schema: type: string - - *259 + - *261 - name: sort description: What to sort results by. in: query @@ -86523,7 +86661,7 @@ paths: type: array items: *88 examples: - default: &569 + default: &571 value: - id: 1 node_id: MDU6SXNzdWUx @@ -86672,7 +86810,7 @@ paths: state_reason: completed headers: Link: *70 - '301': *361 + '301': *363 '422': *15 '404': *6 x-github: @@ -86701,8 +86839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -86807,7 +86945,7 @@ paths: application/json: schema: *88 examples: - default: &566 + default: &568 value: id: 1 node_id: MDU6SXNzdWUx @@ -86970,7 +87108,7 @@ paths: '422': *15 '503': *122 '404': *6 - '410': *557 + '410': *559 x-github: triggersNotification: true githubCloudOnly: false @@ -87008,8 +87146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -87030,9 +87168,9 @@ paths: application/json: schema: type: array - items: *558 + items: *560 examples: - default: &568 + default: &570 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87090,17 +87228,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '200': description: Response content: application/json: - schema: *558 + schema: *560 examples: - default: &559 + default: &561 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87155,8 +87293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -87179,9 +87317,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *560 examples: - default: *559 + default: *561 '422': *15 x-github: githubCloudOnly: false @@ -87199,8 +87337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '204': @@ -87229,15 +87367,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '200': description: Response content: application/json: - schema: *558 + schema: *560 examples: default: value: @@ -87293,7 +87431,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *557 + '410': *559 '422': *15 x-github: githubCloudOnly: false @@ -87310,8 +87448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '204': @@ -87319,7 +87457,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *557 + '410': *559 '503': *122 x-github: githubCloudOnly: false @@ -87337,8 +87475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -87365,9 +87503,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *560 + default: *562 headers: Link: *70 '404': *6 @@ -87388,8 +87526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -87422,16 +87560,16 @@ paths: description: Reaction exists content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '201': description: Reaction created content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '422': *15 x-github: githubCloudOnly: false @@ -87453,10 +87591,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *357 - - *358 + - *359 + - *360 - *104 - - *561 + - *563 responses: '204': description: Response @@ -87476,8 +87614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -87487,7 +87625,7 @@ paths: application/json: schema: type: array - items: &565 + items: &567 title: Issue Event description: Issue Event type: object @@ -87530,9 +87668,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *562 - required: *563 - x-github-breaking-changes: *564 + properties: *564 + required: *565 + x-github-breaking-changes: *566 nullable: true label: title: Issue Event Label @@ -87576,7 +87714,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *208 + requested_team: *210 dismissed_review: title: Issue Event Dismissed Review type: object @@ -87840,8 +87978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *357 - - *358 + - *359 + - *360 - name: event_id in: path required: true @@ -87852,7 +87990,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *567 examples: default: value: @@ -88045,7 +88183,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *557 + '410': *559 '403': *29 x-github: githubCloudOnly: false @@ -88079,9 +88217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *357 - - *358 - - &567 + - *359 + - *360 + - &569 name: issue_number description: The number that identifies the issue. in: path @@ -88097,7 +88235,7 @@ paths: examples: default: summary: Issue - value: *566 + value: *568 pinned_comment: summary: Issue with pinned comment value: @@ -88302,9 +88440,9 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 '304': *37 x-github: githubCloudOnly: false @@ -88329,9 +88467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: false content: @@ -88457,13 +88595,13 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 '422': *15 '503': *122 '403': *29 - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88491,9 +88629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: false content: @@ -88521,7 +88659,7 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88537,9 +88675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: content: application/json: @@ -88566,7 +88704,7 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88588,9 +88726,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: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - name: assignee in: path required: true @@ -88630,9 +88768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *95 - *17 - *19 @@ -88643,13 +88781,13 @@ paths: application/json: schema: type: array - items: *558 + items: *560 examples: - default: *568 + default: *570 headers: Link: *70 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88678,9 +88816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -88702,16 +88840,16 @@ paths: description: Response content: application/json: - schema: *558 + schema: *560 examples: - default: *559 + default: *561 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *557 + '410': *559 '422': *15 '404': *6 x-github: @@ -88739,9 +88877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -88753,12 +88891,12 @@ paths: type: array items: *88 examples: - default: *569 + default: *571 headers: Link: *70 - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88786,9 +88924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -88812,15 +88950,15 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *361 + '301': *363 '403': *29 - '410': *557 + '410': *559 '422': *15 '404': *6 x-github: @@ -88851,9 +88989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -88867,13 +89005,13 @@ paths: application/json: schema: *88 examples: - default: *566 - '301': *361 + default: *568 + '301': *363 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *557 + '410': *559 x-github: triggersNotification: true githubCloudOnly: false @@ -88899,9 +89037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -88913,12 +89051,12 @@ paths: type: array items: *88 examples: - default: *569 + default: *571 headers: Link: *70 - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88935,9 +89073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -88951,7 +89089,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &573 + - &575 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -89005,7 +89143,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &576 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -89141,7 +89279,7 @@ paths: - performed_via_github_app - assignee - assigner - - &575 + - &577 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -89192,7 +89330,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &578 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -89243,7 +89381,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &579 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -89297,7 +89435,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &580 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -89331,7 +89469,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -89344,7 +89482,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &581 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -89378,7 +89516,7 @@ paths: properties: *83 required: *84 review_requester: *4 - requested_team: *208 + requested_team: *210 requested_reviewer: *4 required: - review_requester @@ -89391,7 +89529,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &582 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -89451,7 +89589,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &583 title: Locked Issue Event description: Locked Issue Event type: object @@ -89499,7 +89637,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &584 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -89565,7 +89703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &583 + - &585 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -89631,7 +89769,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &584 + - &586 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -89697,7 +89835,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &585 + - &587 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89788,7 +89926,7 @@ paths: color: red headers: Link: *70 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89805,9 +89943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -89817,9 +89955,9 @@ paths: application/json: schema: type: array - items: *570 + items: *572 examples: - default: &571 + default: &573 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -89843,9 +89981,9 @@ paths: value: '2025-12-25' headers: Link: *70 - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89874,9 +90012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -89940,9 +90078,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *570 + items: *572 examples: - default: *571 + default: *573 '400': *14 '403': *29 '404': *6 @@ -89978,9 +90116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -90045,9 +90183,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *570 + items: *572 examples: - default: *571 + default: *573 '400': *14 '403': *29 '404': *6 @@ -90078,10 +90216,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *357 - - *358 - - *567 - - *255 + - *359 + - *360 + - *569 + - *257 responses: '204': description: Issue field value deleted successfully @@ -90106,9 +90244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -90120,7 +90258,7 @@ paths: type: array items: *87 examples: - default: &572 + default: &574 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -90138,9 +90276,9 @@ paths: default: false headers: Link: *70 - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90156,9 +90294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: false content: @@ -90203,10 +90341,10 @@ paths: type: array items: *87 examples: - default: *572 - '301': *361 + default: *574 + '301': *363 '404': *6 - '410': *557 + '410': *559 '422': *15 x-github: githubCloudOnly: false @@ -90223,9 +90361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: false content: @@ -90287,10 +90425,10 @@ paths: type: array items: *87 examples: - default: *572 - '301': *361 + default: *574 + '301': *363 '404': *6 - '410': *557 + '410': *559 '422': *15 x-github: githubCloudOnly: false @@ -90307,15 +90445,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 responses: '204': description: Response - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90334,9 +90472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - name: name in: path required: true @@ -90360,9 +90498,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *361 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90382,9 +90520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: false content: @@ -90412,7 +90550,7 @@ paths: '204': description: Response '403': *29 - '410': *557 + '410': *559 '404': *6 '422': *15 x-github: @@ -90430,9 +90568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 responses: '204': description: Response @@ -90462,9 +90600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 responses: '200': description: Response @@ -90472,10 +90610,10 @@ paths: application/json: schema: *88 examples: - default: *566 - '301': *361 + default: *568 + '301': *363 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90492,9 +90630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - 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. @@ -90520,13 +90658,13 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *560 + default: *562 headers: Link: *70 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90544,9 +90682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -90578,16 +90716,16 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '201': description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '422': *15 x-github: githubCloudOnly: false @@ -90609,10 +90747,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *357 - - *358 - - *567 - - *561 + - *359 + - *360 + - *569 + - *563 responses: '204': description: Response @@ -90641,9 +90779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -90667,7 +90805,7 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -90700,9 +90838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -90714,11 +90852,11 @@ paths: type: array items: *88 examples: - default: *569 + default: *571 headers: Link: *70 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90746,9 +90884,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -90777,14 +90915,14 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *557 + '410': *559 '422': *15 '404': *6 x-github: @@ -90804,9 +90942,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 requestBody: required: true content: @@ -90839,7 +90977,7 @@ paths: application/json: schema: *88 examples: - default: *566 + default: *568 '403': *29 '404': *6 '422': *7 @@ -90861,9 +90999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *357 - - *358 - - *567 + - *359 + - *360 + - *569 - *17 - *19 responses: @@ -90878,8 +91016,6 @@ paths: description: Timeline Event type: object anyOf: - - *573 - - *574 - *575 - *576 - *577 @@ -90891,6 +91027,8 @@ paths: - *583 - *584 - *585 + - *586 + - *587 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -90951,8 +91089,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *586 - required: *587 + properties: *588 + required: *589 nullable: true required: - event @@ -91207,7 +91345,7 @@ paths: type: string comments: type: array - items: &607 + items: &609 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -91422,7 +91560,7 @@ paths: type: string comments: type: array - items: *487 + items: *489 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -91711,7 +91849,7 @@ paths: headers: Link: *70 '404': *6 - '410': *557 + '410': *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91728,8 +91866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -91739,7 +91877,7 @@ paths: application/json: schema: type: array - items: &588 + items: &590 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -91805,8 +91943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -91842,9 +91980,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *590 examples: - default: &589 + default: &591 value: id: 1 key: ssh-rsa AAA... @@ -91878,9 +92016,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *357 - - *358 - - &590 + - *359 + - *360 + - &592 name: key_id description: The unique identifier of the key. in: path @@ -91892,9 +92030,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *590 examples: - default: *589 + default: *591 '404': *6 x-github: githubCloudOnly: false @@ -91912,9 +92050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *357 - - *358 - - *590 + - *359 + - *360 + - *592 responses: '204': description: Response @@ -91934,8 +92072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -91947,7 +92085,7 @@ paths: type: array items: *87 examples: - default: *572 + default: *574 headers: Link: *70 '404': *6 @@ -91968,8 +92106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -92007,7 +92145,7 @@ paths: application/json: schema: *87 examples: - default: &591 + default: &593 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92039,8 +92177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *357 - - *358 + - *359 + - *360 - name: name in: path required: true @@ -92053,7 +92191,7 @@ paths: application/json: schema: *87 examples: - default: *591 + default: *593 '404': *6 x-github: githubCloudOnly: false @@ -92070,8 +92208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *357 - - *358 + - *359 + - *360 - name: name in: path required: true @@ -92136,8 +92274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *357 - - *358 + - *359 + - *360 - name: name in: path required: true @@ -92163,8 +92301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -92203,9 +92341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *357 - - *358 - - *460 + - *359 + - *360 + - *462 responses: '200': description: Response @@ -92350,8 +92488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -92416,8 +92554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -92451,9 +92589,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *490 + schema: *492 examples: - default: *592 + default: *594 '204': description: Response when already merged '404': @@ -92478,8 +92616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *357 - - *358 + - *359 + - *360 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -92520,12 +92658,12 @@ paths: application/json: schema: type: array - items: &593 + items: &595 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *293 - required: *294 + properties: *295 + required: *296 examples: default: value: @@ -92581,8 +92719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -92622,9 +92760,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: &594 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -92683,9 +92821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *357 - - *358 - - &595 + - *359 + - *360 + - &597 name: milestone_number description: The number that identifies the milestone. in: path @@ -92697,9 +92835,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -92716,9 +92854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *357 - - *358 - - *595 + - *359 + - *360 + - *597 requestBody: required: false content: @@ -92756,9 +92894,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92774,9 +92912,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *357 - - *358 - - *595 + - *359 + - *360 + - *597 responses: '204': description: Response @@ -92797,9 +92935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *357 - - *358 - - *595 + - *359 + - *360 + - *597 - *17 - *19 responses: @@ -92811,7 +92949,7 @@ paths: type: array items: *87 examples: - default: *572 + default: *574 headers: Link: *70 x-github: @@ -92830,12 +92968,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *357 - - *358 - - *596 - - *597 - - *95 + - *359 + - *360 - *598 + - *599 + - *95 + - *600 - *17 - *19 responses: @@ -92847,7 +92985,7 @@ paths: type: array items: *115 examples: - default: *599 + default: *601 headers: Link: *70 x-github: @@ -92871,8 +93009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -92930,14 +93068,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &600 + schema: &602 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -93062,7 +93200,7 @@ paths: - custom_404 - public examples: - default: &601 + default: &603 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -93103,8 +93241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -93158,9 +93296,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: *601 + default: *603 '422': *15 '409': *54 x-github: @@ -93183,8 +93321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -93283,8 +93421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -93310,8 +93448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -93321,7 +93459,7 @@ paths: application/json: schema: type: array - items: &602 + items: &604 title: Page Build description: Page Build type: object @@ -93415,8 +93553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *357 - - *358 + - *359 + - *360 responses: '201': description: Response @@ -93461,16 +93599,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *602 + schema: *604 examples: - default: &603 + default: &605 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -93518,8 +93656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *357 - - *358 + - *359 + - *360 - name: build_id in: path required: true @@ -93530,9 +93668,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *604 examples: - default: *603 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93552,8 +93690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -93658,9 +93796,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *357 - - *358 - - &604 + - *359 + - *360 + - &606 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -93718,9 +93856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *357 - - *358 - - *604 + - *359 + - *360 + - *606 responses: '204': *61 '404': *6 @@ -93747,8 +93885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -93979,7 +94117,7 @@ paths: description: Empty response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -94006,8 +94144,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: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Private vulnerability reporting status @@ -94044,8 +94182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': *61 '422': *14 @@ -94066,8 +94204,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': *61 '422': *14 @@ -94089,8 +94227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -94098,7 +94236,7 @@ paths: application/json: schema: type: array - items: *308 + items: *310 examples: default: value: @@ -94129,8 +94267,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: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -94142,7 +94280,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *308 + items: *310 required: - properties examples: @@ -94192,8 +94330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *357 - - *358 + - *359 + - *360 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -94253,9 +94391,9 @@ paths: application/json: schema: type: array - items: *494 + items: *496 examples: - default: *605 + default: *607 headers: Link: *70 '304': *37 @@ -94287,8 +94425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -94353,7 +94491,7 @@ paths: description: Response content: application/json: - schema: &609 + schema: &611 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -94464,8 +94602,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *293 - required: *294 + properties: *295 + required: *296 nullable: true active_lock_reason: type: string @@ -94508,7 +94646,7 @@ paths: items: *4 requested_teams: type: array - items: *346 + items: *348 head: type: object properties: @@ -94546,14 +94684,14 @@ paths: _links: type: object properties: - comments: *295 - commits: *295 - statuses: *295 - html: *295 - issue: *295 - review_comments: *295 - review_comment: *295 - self: *295 + comments: *297 + commits: *297 + statuses: *297 + html: *297 + issue: *297 + review_comments: *297 + review_comment: *297 + self: *297 required: - comments - commits @@ -94564,7 +94702,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *606 + auto_merge: *608 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -94750,7 +94888,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &610 + default: &612 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -95288,8 +95426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *357 - - *358 + - *359 + - *360 - name: sort in: query required: false @@ -95318,9 +95456,9 @@ paths: application/json: schema: type: array - items: *607 + items: *609 examples: - default: &612 + default: &614 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95397,17 +95535,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '200': description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: &608 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95482,8 +95620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -95506,9 +95644,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *608 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95524,8 +95662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *357 - - *358 + - *359 + - *360 - *104 responses: '204': @@ -95547,8 +95685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -95575,9 +95713,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *560 + default: *562 headers: Link: *70 '404': *6 @@ -95598,8 +95736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *357 - - *358 + - *359 + - *360 - *104 requestBody: required: true @@ -95632,16 +95770,16 @@ paths: description: Reaction exists content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '201': description: Reaction created content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '422': *15 x-github: githubCloudOnly: false @@ -95663,10 +95801,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *357 - - *358 + - *359 + - *360 - *104 - - *561 + - *563 responses: '204': description: Response @@ -95709,9 +95847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *357 - - *358 - - &611 + - *359 + - *360 + - &613 name: pull_number description: The number that identifies the pull request. in: path @@ -95724,9 +95862,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *609 + schema: *611 examples: - default: *610 + default: *612 '304': *37 '404': *6 '406': @@ -95761,9 +95899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: false content: @@ -95805,9 +95943,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *610 + default: *612 '422': *15 '403': *29 x-github: @@ -95829,9 +95967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: true content: @@ -95891,17 +96029,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '401': *25 '403': *29 '404': *6 @@ -95931,9 +96069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -95954,9 +96092,9 @@ paths: application/json: schema: type: array - items: *607 + items: *609 examples: - default: *612 + default: *614 headers: Link: *70 x-github: @@ -95989,9 +96127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: true content: @@ -96096,7 +96234,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: example-for-a-multi-line-comment: value: @@ -96184,9 +96322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 - *104 requestBody: required: true @@ -96209,7 +96347,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -96295,9 +96433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 - *17 - *19 responses: @@ -96307,9 +96445,9 @@ paths: application/json: schema: type: array - items: *490 + items: *492 examples: - default: *613 + default: *615 headers: Link: *70 x-github: @@ -96339,9 +96477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 - *17 - *19 responses: @@ -96351,7 +96489,7 @@ paths: application/json: schema: type: array - items: *503 + items: *505 examples: default: value: @@ -96389,9 +96527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 responses: '204': description: Response if pull request has been merged @@ -96414,9 +96552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: false content: @@ -96527,9 +96665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 responses: '200': description: Response @@ -96545,7 +96683,7 @@ paths: items: *4 teams: type: array - items: *208 + items: *210 required: - users - teams @@ -96604,9 +96742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: false content: @@ -96643,7 +96781,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -97179,9 +97317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: true content: @@ -97215,7 +97353,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -97731,9 +97869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 - *17 - *19 responses: @@ -97743,7 +97881,7 @@ paths: application/json: schema: type: array - items: &614 + items: &616 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -97894,9 +98032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: false content: @@ -97982,9 +98120,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: - default: &616 + default: &618 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98047,10 +98185,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 - - &615 + - *359 + - *360 + - *613 + - &617 name: review_id description: The unique identifier of the review. in: path @@ -98062,9 +98200,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: - default: &617 + default: &619 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98123,10 +98261,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 - - *615 + - *359 + - *360 + - *613 + - *617 requestBody: required: true content: @@ -98149,7 +98287,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: default: value: @@ -98211,18 +98349,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 - - *615 + - *359 + - *360 + - *613 + - *617 responses: '200': description: Response content: application/json: - schema: *614 + schema: *616 examples: - default: *616 + default: *618 '422': *7 '404': *6 x-github: @@ -98249,10 +98387,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *357 - - *358 - - *611 - - *615 + - *359 + - *360 + - *613 + - *617 - *17 - *19 responses: @@ -98335,9 +98473,9 @@ paths: _links: type: object properties: - self: *295 - html: *295 - pull_request: *295 + self: *297 + html: *297 + pull_request: *297 required: - self - html @@ -98487,10 +98625,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 - - *615 + - *359 + - *360 + - *613 + - *617 requestBody: required: true content: @@ -98518,7 +98656,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: default: value: @@ -98581,10 +98719,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *357 - - *358 - - *611 - - *615 + - *359 + - *360 + - *613 + - *617 requestBody: required: true content: @@ -98619,9 +98757,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: - default: *617 + default: *619 '404': *6 '422': *7 '403': *29 @@ -98643,9 +98781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *357 - - *358 - - *611 + - *359 + - *360 + - *613 requestBody: required: false content: @@ -98708,8 +98846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *357 - - *358 + - *359 + - *360 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -98722,9 +98860,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: &619 + default: &621 value: type: file encoding: base64 @@ -98766,8 +98904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *357 - - *358 + - *359 + - *360 - name: dir description: The alternate path to look for a README file in: path @@ -98787,9 +98925,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: - default: *619 + default: *621 '404': *6 '422': *15 x-github: @@ -98811,8 +98949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -98822,7 +98960,7 @@ paths: application/json: schema: type: array - items: *620 + items: *622 examples: default: value: @@ -98916,8 +99054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -98993,9 +99131,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *622 examples: - default: &624 + default: &626 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -99100,9 +99238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *357 - - *358 - - &622 + - *359 + - *360 + - &624 name: asset_id description: The unique identifier of the asset. in: path @@ -99114,9 +99252,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *623 examples: - default: &623 + default: &625 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 @@ -99151,7 +99289,7 @@ paths: type: User site_admin: false '404': *6 - '302': *507 + '302': *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99167,9 +99305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *357 - - *358 - - *622 + - *359 + - *360 + - *624 requestBody: required: false content: @@ -99197,9 +99335,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *623 examples: - default: *623 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99215,9 +99353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *357 - - *358 - - *622 + - *359 + - *360 + - *624 responses: '204': description: Response @@ -99242,8 +99380,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -99328,16 +99466,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *620 + schema: *622 examples: - default: *624 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -99355,8 +99493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *357 - - *358 + - *359 + - *360 - name: tag description: tag parameter in: path @@ -99369,9 +99507,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *622 examples: - default: *624 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -99393,9 +99531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *357 - - *358 - - &625 + - *359 + - *360 + - &627 name: release_id description: The unique identifier of the release. in: path @@ -99409,9 +99547,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: *620 + schema: *622 examples: - default: *624 + default: *626 '401': description: Unauthorized x-github: @@ -99429,9 +99567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 requestBody: required: false content: @@ -99495,9 +99633,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *622 examples: - default: *624 + default: *626 '404': description: Not Found if the discussion category name is invalid content: @@ -99518,9 +99656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 responses: '204': description: Response @@ -99541,9 +99679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 - *17 - *19 responses: @@ -99553,7 +99691,7 @@ paths: application/json: schema: type: array - items: *621 + items: *623 examples: default: value: @@ -99634,9 +99772,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: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 - name: name in: query required: true @@ -99662,7 +99800,7 @@ paths: description: Response for successful upload content: application/json: - schema: *621 + schema: *623 examples: response-for-successful-upload: value: @@ -99717,9 +99855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 - 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. @@ -99743,9 +99881,9 @@ paths: application/json: schema: type: array - items: *488 + items: *490 examples: - default: *560 + default: *562 headers: Link: *70 '404': *6 @@ -99766,9 +99904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *357 - - *358 - - *625 + - *359 + - *360 + - *627 requestBody: required: true content: @@ -99798,16 +99936,16 @@ paths: description: Reaction exists content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '201': description: Reaction created content: application/json: - schema: *488 + schema: *490 examples: - default: *489 + default: *491 '422': *15 x-github: githubCloudOnly: false @@ -99829,10 +99967,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *357 - - *358 - - *625 - - *561 + - *359 + - *360 + - *627 + - *563 responses: '204': description: Response @@ -99856,9 +99994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *357 - - *358 - - *423 + - *359 + - *360 + - *425 - *17 - *19 responses: @@ -99874,8 +100012,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *318 - - &626 + - *320 + - &628 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -99894,69 +100032,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *319 - - *626 - - allOf: - - *320 - - *626 - allOf: - *321 - - *626 - - allOf: - - *627 - - *626 + - *628 - allOf: - *322 - - *626 + - *628 - allOf: - *323 - - *626 + - *628 + - allOf: + - *629 + - *628 - allOf: - *324 - - *626 + - *628 - allOf: - *325 - - *626 + - *628 - allOf: - *326 - - *626 + - *628 - allOf: - *327 - - *626 + - *628 - allOf: - *328 - - *626 + - *628 - allOf: - *329 - - *626 + - *628 - allOf: - *330 - - *626 + - *628 - allOf: - *331 - - *626 + - *628 - allOf: - - *336 - - *626 + - *332 + - *628 - allOf: - - *337 - - *626 + - *333 + - *628 - allOf: - *338 - - *626 + - *628 - allOf: - - *332 - - *626 + - *339 + - *628 - allOf: - - *333 - - *626 + - *340 + - *628 - allOf: - *334 - - *626 + - *628 - allOf: - *335 - - *626 + - *628 + - allOf: + - *336 + - *628 + - allOf: + - *337 + - *628 examples: default: value: @@ -99995,8 +100133,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 - name: includes_parents @@ -100007,7 +100145,7 @@ paths: schema: type: boolean default: true - - *628 + - *630 responses: '200': description: Response @@ -100015,7 +100153,7 @@ paths: application/json: schema: type: array - items: *339 + items: *341 examples: default: value: @@ -100062,8 +100200,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - - *358 + - *359 + - *360 requestBody: description: Request body required: true @@ -100083,16 +100221,16 @@ paths: - tag - push default: branch - enforcement: *315 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *316 - conditions: *313 + items: *318 + conditions: *315 rules: type: array description: An array of rules within the ruleset. - items: *629 + items: *631 required: - name - enforcement @@ -100123,9 +100261,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &640 + default: &642 value: id: 42 name: super cool ruleset @@ -100173,13 +100311,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *357 - - *358 - - *630 - - *631 + - *359 + - *360 - *632 - *633 - *634 + - *635 + - *636 - *17 - *19 responses: @@ -100187,9 +100325,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *637 examples: - default: *636 + default: *638 '404': *6 '500': *55 x-github: @@ -100210,17 +100348,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *357 - - *358 - - *637 + - *359 + - *360 + - *639 responses: '200': description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: *639 + default: *641 '404': *6 '500': *55 x-github: @@ -100248,8 +100386,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - - *358 + - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100269,9 +100407,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *640 + default: *642 '404': *6 '500': *55 put: @@ -100289,8 +100427,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - - *358 + - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100315,16 +100453,16 @@ paths: - branch - tag - push - enforcement: *315 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *316 - conditions: *313 + items: *318 + conditions: *315 rules: description: An array of rules within the ruleset. type: array - items: *629 + items: *631 examples: default: value: @@ -100352,9 +100490,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *640 + default: *642 '404': *6 '422': *15 '500': *55 @@ -100373,8 +100511,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - - *358 + - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100397,8 +100535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 - name: ruleset_id @@ -100414,9 +100552,9 @@ paths: application/json: schema: type: array - items: *342 + items: *344 examples: - default: *641 + default: *643 '404': *6 '500': *55 x-github: @@ -100435,8 +100573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *357 - - *358 + - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100454,7 +100592,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *644 examples: default: value: @@ -100509,26 +100647,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *357 - - *358 - - *643 - - *644 + - *359 + - *360 - *645 - *646 - *647 - *648 - *649 - *650 + - *651 + - *652 - *62 - *19 - *17 - - *651 - - *652 - *653 - *654 - *655 - *656 - *657 + - *658 + - *659 responses: '200': description: Response @@ -100536,11 +100674,11 @@ paths: application/json: schema: type: array - items: &661 + items: &663 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -100548,15 +100686,15 @@ paths: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *658 - resolution: *659 + state: *660 + resolution: *661 resolved_at: type: string format: date-time @@ -100662,7 +100800,7 @@ paths: pull request. ' - oneOf: *660 + oneOf: *662 nullable: true has_more_locations: type: boolean @@ -100826,16 +100964,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *357 - - *358 - - *454 - - *656 + - *359 + - *360 + - *456 + - *658 responses: '200': description: Response content: application/json: - schema: *661 + schema: *663 examples: default: value: @@ -100889,9 +101027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 requestBody: required: true content: @@ -100899,8 +101037,8 @@ paths: schema: type: object properties: - state: *658 - resolution: *659 + state: *660 + resolution: *661 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100944,7 +101082,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: default: value: @@ -101043,9 +101181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *357 - - *358 - - *454 + - *359 + - *360 + - *456 - *19 - *17 responses: @@ -101056,7 +101194,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &820 + items: &821 type: object properties: type: @@ -101082,8 +101220,6 @@ paths: example: commit details: oneOf: - - *662 - - *663 - *664 - *665 - *666 @@ -101095,6 +101231,8 @@ paths: - *672 - *673 - *674 + - *675 + - *676 examples: default: value: @@ -101180,8 +101318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -101189,14 +101327,14 @@ paths: schema: type: object properties: - reason: &676 + reason: &678 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *675 + placeholder_id: *677 required: - reason - placeholder_id @@ -101213,7 +101351,7 @@ paths: schema: type: object properties: - reason: *676 + reason: *678 expire_at: type: string format: date-time @@ -101259,8 +101397,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: - - *357 - - *358 + - *359 + - *360 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -101275,7 +101413,7 @@ paths: properties: incremental_scans: type: array - items: &677 + items: &679 description: Information on a single scan performed by secret scanning on the repository type: object @@ -101306,15 +101444,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *677 + items: *679 backfill_scans: type: array - items: *677 + items: *679 custom_pattern_backfill_scans: type: array items: allOf: - - *677 + - *679 - type: object properties: pattern_name: @@ -101327,7 +101465,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *677 + items: *679 examples: default: value: @@ -101392,8 +101530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *357 - - *358 + - *359 + - *360 - *62 - name: sort description: The property to sort the results by. @@ -101437,9 +101575,9 @@ paths: application/json: schema: type: array - items: *678 + items: *680 examples: - default: *679 + default: *681 '400': *14 '404': *6 x-github: @@ -101462,8 +101600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -101536,7 +101674,7 @@ paths: login: type: string description: The username of the user credited. - type: *345 + type: *347 required: - login - type @@ -101623,9 +101761,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *680 examples: - default: &681 + default: &683 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101864,8 +102002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -101969,7 +102107,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *680 examples: default: value: @@ -102122,17 +102260,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *357 - - *358 - - *680 + - *359 + - *360 + - *682 responses: '200': description: Response content: application/json: - schema: *678 + schema: *680 examples: - default: *681 + default: *683 '403': *29 '404': *6 x-github: @@ -102156,9 +102294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *357 - - *358 - - *680 + - *359 + - *360 + - *682 requestBody: required: true content: @@ -102231,7 +102369,7 @@ paths: login: type: string description: The username of the user credited. - type: *345 + type: *347 required: - login - type @@ -102317,17 +102455,17 @@ paths: description: Response content: application/json: - schema: *678 + schema: *680 examples: - default: *681 - add_credit: *681 + default: *683 + add_credit: *683 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *130 + schema: *132 examples: invalid_state_transition: value: @@ -102358,9 +102496,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: - - *357 - - *358 - - *680 + - *359 + - *360 + - *682 responses: '202': *39 '400': *14 @@ -102387,17 +102525,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *357 - - *358 - - *680 + - *359 + - *360 + - *682 responses: '202': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *362 + default: *364 '400': *14 '422': *15 '403': *29 @@ -102423,8 +102561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -102523,8 +102661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -102533,7 +102671,7 @@ paths: application/json: schema: type: array - items: &682 + items: &684 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -102566,8 +102704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -102643,8 +102781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -102740,8 +102878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -102895,8 +103033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -102906,7 +103044,7 @@ paths: application/json: schema: type: array - items: *682 + items: *684 examples: default: value: @@ -102939,8 +103077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *357 - - *358 + - *359 + - *360 - name: sha in: path required: true @@ -102994,7 +103132,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: default: value: @@ -103048,8 +103186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -103081,14 +103219,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &684 + schema: &686 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103156,8 +103294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: false content: @@ -103183,7 +103321,7 @@ paths: description: Response content: application/json: - schema: *684 + schema: *686 examples: default: value: @@ -103210,8 +103348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -103231,8 +103369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -103311,8 +103449,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *357 - - *358 + - *359 + - *360 - name: ref in: path required: true @@ -103348,8 +103486,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *357 - - *358 + - *359 + - *360 - *17 - *19 responses: @@ -103359,9 +103497,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - default: *273 + default: *275 headers: Link: *70 '404': *6 @@ -103381,8 +103519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *357 - - *358 + - *359 + - *360 - *19 - *17 responses: @@ -103390,7 +103528,7 @@ paths: description: Response content: application/json: - schema: &685 + schema: &687 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -103402,7 +103540,7 @@ paths: required: - names examples: - default: &686 + default: &688 value: names: - octocat @@ -103425,8 +103563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -103457,9 +103595,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: *686 + default: *688 '404': *6 '422': *7 x-github: @@ -103480,9 +103618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *357 - - *358 - - &687 + - *359 + - *360 + - &689 name: per description: The time frame to display results for. in: query @@ -103511,7 +103649,7 @@ paths: example: 128 clones: type: array - items: &688 + items: &690 title: Traffic type: object properties: @@ -103598,8 +103736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -103689,8 +103827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *357 - - *358 + - *359 + - *360 responses: '200': description: Response @@ -103750,9 +103888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *357 - - *358 - - *687 + - *359 + - *360 + - *689 responses: '200': description: Response @@ -103771,7 +103909,7 @@ paths: example: 3782 views: type: array - items: *688 + items: *690 required: - uniques - count @@ -103848,8 +103986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *357 - - *358 + - *359 + - *360 requestBody: required: true content: @@ -103885,7 +104023,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *163 examples: default: value: @@ -104129,8 +104267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -104153,8 +104291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -104176,8 +104314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -104203,8 +104341,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *357 - - *358 + - *359 + - *360 - name: ref in: path required: true @@ -104296,9 +104434,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *362 + default: *364 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104339,7 +104477,7 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: default: value: @@ -104531,7 +104669,7 @@ paths: html_url: type: string format: uri - repository: *161 + repository: *163 score: type: number file_size: @@ -104549,7 +104687,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &689 + text_matches: &691 title: Search Result Text Matches type: array items: @@ -104711,7 +104849,7 @@ paths: enum: - author-date - committer-date - - &690 + - &692 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 @@ -104782,7 +104920,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *423 nullable: true comment_count: type: integer @@ -104802,7 +104940,7 @@ paths: url: type: string format: uri - verification: *543 + verification: *545 required: - author - committer @@ -104821,7 +104959,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *423 nullable: true parents: type: array @@ -104834,12 +104972,12 @@ paths: type: string sha: type: string - repository: *161 + repository: *163 score: type: number node_id: type: string - text_matches: *689 + text_matches: *691 required: - sha - node_id @@ -105031,7 +105169,7 @@ paths: - interactions - created - updated - - *690 + - *692 - *17 - *19 - name: advanced_search @@ -105145,11 +105283,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: type: string state_reason: @@ -105166,8 +105304,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *293 - required: *294 + properties: *295 + required: *296 nullable: true comments: type: integer @@ -105181,7 +105319,7 @@ paths: type: string format: date-time nullable: true - text_matches: *689 + text_matches: *691 pull_request: type: object properties: @@ -105225,7 +105363,7 @@ paths: timeline_url: type: string format: uri - type: *256 + type: *258 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -105497,7 +105635,7 @@ paths: enum: - created - updated - - *690 + - *692 - *17 - *19 responses: @@ -105541,7 +105679,7 @@ paths: nullable: true score: type: number - text_matches: *689 + text_matches: *691 required: - id - node_id @@ -105626,7 +105764,7 @@ paths: - forks - help-wanted-issues - updated - - *690 + - *692 - *17 - *19 responses: @@ -105874,7 +106012,7 @@ paths: - admin - pull - push - text_matches: *689 + text_matches: *691 temp_clone_token: type: string allow_merge_commit: @@ -106174,7 +106312,7 @@ paths: type: string format: uri nullable: true - text_matches: *689 + text_matches: *691 related: type: array nullable: true @@ -106365,7 +106503,7 @@ paths: - followers - repositories - joined - - *690 + - *692 - *17 - *19 responses: @@ -106469,7 +106607,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *689 + text_matches: *691 blog: type: string nullable: true @@ -106548,7 +106686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &693 + - &695 name: team_id description: The unique identifier of the team. in: path @@ -106560,9 +106698,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '404': *6 x-github: githubCloudOnly: false @@ -106589,7 +106727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *693 + - *695 requestBody: required: true content: @@ -106652,16 +106790,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '201': description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 '404': *6 '422': *15 '403': *29 @@ -106689,7 +106827,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *693 + - *695 responses: '204': description: Response @@ -106718,7 +106856,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *693 + - *695 - *17 - *19 responses: @@ -106728,9 +106866,9 @@ paths: application/json: schema: type: array - items: *250 + items: *252 examples: - default: *251 + default: *253 headers: Link: *70 x-github: @@ -106756,7 +106894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *693 + - *695 - name: role description: Filters members returned by their role in the team. in: query @@ -106807,7 +106945,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *693 + - *695 - *74 responses: '204': @@ -106844,7 +106982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *693 + - *695 - *74 responses: '204': @@ -106884,7 +107022,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *693 + - *695 - *74 responses: '204': @@ -106921,16 +107059,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *693 + - *695 - *74 responses: '200': description: Response content: application/json: - schema: *356 + schema: *358 examples: - response-if-user-is-a-team-maintainer: *694 + response-if-user-is-a-team-maintainer: *696 '404': *6 x-github: githubCloudOnly: false @@ -106963,7 +107101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *693 + - *695 - *74 requestBody: required: false @@ -106989,9 +107127,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - response-if-users-membership-with-team-is-now-pending: *695 + response-if-users-membership-with-team-is-now-pending: *697 '403': description: Forbidden if team synchronization is set up '422': @@ -107025,7 +107163,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *693 + - *695 - *74 responses: '204': @@ -107053,7 +107191,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *693 + - *695 - *17 - *19 responses: @@ -107063,9 +107201,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 '404': *6 @@ -107095,15 +107233,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *693 - - *357 - - *358 + - *695 + - *359 + - *360 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *696 + schema: *698 examples: alternative-response-with-extra-repository-information: value: @@ -107260,9 +107398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *693 - - *357 - - *358 + - *695 + - *359 + - *360 requestBody: required: false content: @@ -107312,9 +107450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *693 - - *357 - - *358 + - *695 + - *359 + - *360 responses: '204': description: Response @@ -107339,7 +107477,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *693 + - *695 - *17 - *19 responses: @@ -107349,9 +107487,9 @@ paths: application/json: schema: type: array - items: *208 + items: *210 examples: - response-if-child-teams-exist: *697 + response-if-child-teams-exist: *699 headers: Link: *70 '404': *6 @@ -107384,7 +107522,7 @@ paths: application/json: schema: oneOf: - - &699 + - &701 title: Private User description: Private User type: object @@ -107587,7 +107725,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *698 + - *700 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -107740,7 +107878,7 @@ paths: description: Response content: application/json: - schema: *699 + schema: *701 examples: default: value: @@ -107943,9 +108081,9 @@ paths: type: integer codespaces: type: array - items: *261 + items: *263 examples: - default: *262 + default: *264 '304': *37 '500': *55 '401': *25 @@ -108084,17 +108222,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '401': *25 '403': *29 '404': *6 @@ -108138,7 +108276,7 @@ paths: type: integer secrets: type: array - items: &700 + items: &702 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108178,7 +108316,7 @@ paths: - visibility - selected_repositories_url examples: - default: *480 + default: *482 headers: Link: *70 x-github: @@ -108248,13 +108386,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '200': description: Response content: application/json: - schema: *700 + schema: *702 examples: default: value: @@ -108284,7 +108422,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 requestBody: required: true content: @@ -108329,7 +108467,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -108357,7 +108495,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *169 + - *171 responses: '204': description: Response @@ -108382,7 +108520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 responses: '200': description: Response @@ -108398,9 +108536,9 @@ paths: type: integer repositories: type: array - items: *161 + items: *163 examples: - default: *209 + default: *211 '401': *25 '403': *29 '404': *6 @@ -108425,7 +108563,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *169 + - *171 requestBody: required: true content: @@ -108479,7 +108617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -108512,7 +108650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *169 + - *171 - name: repository_id in: path required: true @@ -108544,15 +108682,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '304': *37 '500': *55 '401': *25 @@ -108578,7 +108716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 requestBody: required: false content: @@ -108608,9 +108746,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '401': *25 '403': *29 '404': *6 @@ -108632,7 +108770,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 responses: '202': *39 '304': *37 @@ -108661,13 +108799,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 responses: '202': description: Response content: application/json: - schema: &701 + schema: &703 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -108708,7 +108846,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &702 + default: &704 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -108740,7 +108878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *263 + - *265 - name: export_id in: path required: true @@ -108753,9 +108891,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *703 examples: - default: *702 + default: *704 '404': *6 x-github: githubCloudOnly: false @@ -108776,7 +108914,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *263 + - *265 responses: '200': description: Response @@ -108792,9 +108930,9 @@ paths: type: integer machines: type: array - items: *703 + items: *705 examples: - default: *704 + default: *706 '304': *37 '500': *55 '401': *25 @@ -108823,7 +108961,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *263 + - *265 requestBody: required: true content: @@ -108873,13 +109011,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *360 + repository: *362 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *478 - required: *479 + properties: *480 + required: *481 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -109653,15 +109791,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '304': *37 '500': *55 '400': *14 @@ -109693,15 +109831,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *477 + default: *479 '500': *55 '401': *25 '403': *29 @@ -109731,9 +109869,9 @@ paths: application/json: schema: type: array - items: *274 + items: *276 examples: - default: &715 + default: &717 value: - id: 197 name: hello_docker @@ -109834,7 +109972,7 @@ paths: application/json: schema: type: array - items: &705 + items: &707 title: Email description: Email type: object @@ -109899,9 +110037,9 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: - default: &717 + default: &719 value: - email: octocat@github.com verified: true @@ -109976,7 +110114,7 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: default: value: @@ -110232,7 +110370,7 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: GPG Key description: A unique encryption key type: object @@ -110363,7 +110501,7 @@ paths: - subkeys - revoked examples: - default: &734 + default: &736 value: - id: 3 name: Octocat's GPG Key @@ -110448,9 +110586,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: &707 + default: &709 value: id: 3 name: Octocat's GPG Key @@ -110507,7 +110645,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &708 + - &710 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -110519,9 +110657,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: *707 + default: *709 '404': *6 '304': *37 '403': *29 @@ -110544,7 +110682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *708 + - *710 responses: '204': description: Response @@ -110746,7 +110884,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *153 + default: *155 headers: Link: *70 '404': *6 @@ -110772,7 +110910,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -110798,7 +110936,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *150 + - *152 responses: '204': description: Response @@ -110832,12 +110970,12 @@ paths: application/json: schema: anyOf: - - *248 + - *250 - type: object properties: {} additionalProperties: false examples: - default: *249 + default: *251 '204': description: Response when there are no restrictions x-github: @@ -110861,7 +110999,7 @@ paths: required: true content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -110872,7 +111010,7 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: default: value: @@ -110953,7 +111091,7 @@ paths: - closed - all default: open - - *259 + - *261 - name: sort description: What to sort results by. in: query @@ -110978,7 +111116,7 @@ paths: type: array items: *88 examples: - default: *260 + default: *262 headers: Link: *70 '404': *6 @@ -111011,7 +111149,7 @@ paths: application/json: schema: type: array - items: &709 + items: &711 title: Key description: Key type: object @@ -111112,9 +111250,9 @@ paths: description: Response content: application/json: - schema: *709 + schema: *711 examples: - default: &710 + default: &712 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111147,15 +111285,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *590 + - *592 responses: '200': description: Response content: application/json: - schema: *709 + schema: *711 examples: - default: *710 + default: *712 '404': *6 '304': *37 '403': *29 @@ -111178,7 +111316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *590 + - *592 responses: '204': description: Response @@ -111211,7 +111349,7 @@ paths: application/json: schema: type: array - items: &711 + items: &713 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -111279,7 +111417,7 @@ paths: - account - plan examples: - default: &712 + default: &714 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -111341,9 +111479,9 @@ paths: application/json: schema: type: array - items: *711 + items: *713 examples: - default: *712 + default: *714 headers: Link: *70 '304': *37 @@ -111383,7 +111521,7 @@ paths: application/json: schema: type: array - items: *265 + items: *267 examples: default: value: @@ -111497,7 +111635,7 @@ paths: description: Response content: application/json: - schema: *265 + schema: *267 examples: default: value: @@ -111584,7 +111722,7 @@ paths: description: Response content: application/json: - schema: *265 + schema: *267 examples: default: value: @@ -111656,7 +111794,7 @@ paths: application/json: schema: type: array - items: *267 + items: *269 examples: default: value: @@ -111909,7 +112047,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *269 examples: default: value: @@ -112089,7 +112227,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *268 + - *270 - name: exclude in: query required: false @@ -112102,7 +112240,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *269 examples: default: value: @@ -112296,7 +112434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *268 + - *270 responses: '302': description: Response @@ -112322,7 +112460,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *268 + - *270 responses: '204': description: Response @@ -112351,8 +112489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *268 - - *713 + - *270 + - *715 responses: '204': description: Response @@ -112376,7 +112514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *268 + - *270 - *17 - *19 responses: @@ -112386,9 +112524,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 '404': *6 @@ -112485,7 +112623,7 @@ paths: - docker - nuget - container - - *714 + - *716 - *19 - *17 responses: @@ -112495,10 +112633,10 @@ paths: application/json: schema: type: array - items: *274 + items: *276 examples: - default: *715 - '400': *716 + default: *717 + '400': *718 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112518,16 +112656,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *274 + schema: *276 examples: - default: &735 + default: &737 value: id: 40201 name: octo-name @@ -112640,8 +112778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 + - *279 responses: '204': description: Response @@ -112671,8 +112809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 + - *279 - name: token description: package token schema: @@ -112704,8 +112842,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: - - *276 - - *277 + - *278 + - *279 - *19 - *17 - name: state @@ -112725,7 +112863,7 @@ paths: application/json: schema: type: array - items: *278 + items: *280 examples: default: value: @@ -112774,15 +112912,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 - *279 + - *281 responses: '200': description: Response content: application/json: - schema: *278 + schema: *280 examples: default: value: @@ -112818,9 +112956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 - *279 + - *281 responses: '204': description: Response @@ -112850,9 +112988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *276 - - *277 + - *278 - *279 + - *281 responses: '204': description: Response @@ -112889,9 +113027,9 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: - default: *717 + default: *719 headers: Link: *70 '304': *37 @@ -113004,7 +113142,7 @@ paths: type: array items: *82 examples: - default: &724 + default: &726 summary: Default response value: - id: 1296269 @@ -113308,9 +113446,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *362 + default: *364 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -113354,9 +113492,9 @@ paths: application/json: schema: type: array - items: *556 + items: *558 examples: - default: *718 + default: *720 headers: Link: *70 '304': *37 @@ -113379,7 +113517,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *252 + - *254 responses: '204': description: Response @@ -113408,7 +113546,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *252 + - *254 responses: '204': description: Response @@ -113441,7 +113579,7 @@ paths: application/json: schema: type: array - items: &719 + items: &721 title: Social account description: Social media account type: object @@ -113456,7 +113594,7 @@ paths: - provider - url examples: - default: &720 + default: &722 value: - provider: twitter url: https://twitter.com/github @@ -113518,9 +113656,9 @@ paths: application/json: schema: type: array - items: *719 + items: *721 examples: - default: *720 + default: *722 '422': *15 '304': *37 '404': *6 @@ -113607,7 +113745,7 @@ paths: application/json: schema: type: array - items: &721 + items: &723 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -113627,7 +113765,7 @@ paths: - title - created_at examples: - default: &753 + default: &754 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113691,9 +113829,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: &722 + default: &724 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113723,7 +113861,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: - - &723 + - &725 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -113735,9 +113873,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: *722 + default: *724 '404': *6 '304': *37 '403': *29 @@ -113760,7 +113898,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: - - *723 + - *725 responses: '204': description: Response @@ -113789,7 +113927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &754 + - &755 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 @@ -113814,11 +113952,11 @@ paths: type: array items: *82 examples: - default-response: *724 + default-response: *726 application/vnd.github.v3.star+json: schema: type: array - items: &755 + items: &756 title: Starred Repository description: Starred Repository type: object @@ -113974,8 +114112,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: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response if this repository is starred by you @@ -114003,8 +114141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -114028,8 +114166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *357 - - *358 + - *359 + - *360 responses: '204': description: Response @@ -114062,9 +114200,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 '304': *37 @@ -114101,7 +114239,7 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: default: value: @@ -114187,10 +114325,10 @@ paths: application/json: schema: oneOf: - - *699 - - *698 + - *701 + - *700 examples: - default-response: &728 + default-response: &730 summary: Default response value: login: octocat @@ -114225,7 +114363,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &729 + response-with-git-hub-plan-information: &731 summary: Response with GitHub plan information value: login: octocat @@ -114282,14 +114420,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &726 + - &728 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *292 + - *294 requestBody: required: true description: Details of the draft item to create in the project. @@ -114323,9 +114461,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *300 examples: - draft_issue: *299 + draft_issue: *301 '304': *37 '403': *29 '401': *25 @@ -114348,7 +114486,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *725 + - *727 - *17 responses: '200': @@ -114383,8 +114521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *726 - - *292 + - *728 + - *294 requestBody: required: true content: @@ -114455,17 +114593,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *727 + schema: *729 examples: table_view: summary: Response for creating a table view - value: *303 + value: *305 board_view: summary: Response for creating a board view with filter - value: *303 + value: *305 roadmap_view: summary: Response for creating a roadmap view - value: *303 + value: *305 '304': *37 '403': *29 '401': *25 @@ -114507,11 +114645,11 @@ paths: application/json: schema: oneOf: - - *699 - - *698 + - *701 + - *700 examples: - default-response: *728 - response-with-git-hub-plan-information: *729 + default-response: *730 + response-with-git-hub-plan-information: *731 '404': *6 x-github: githubCloudOnly: false @@ -114561,8 +114699,8 @@ paths: required: - subject_digests examples: - default: *730 - withPredicateType: *731 + default: *732 + withPredicateType: *733 responses: '200': description: Response @@ -114615,7 +114753,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *732 + default: *734 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114835,12 +114973,12 @@ paths: initiator: type: string examples: - default: *417 + default: *419 '201': description: Response content: application/json: - schema: *170 + schema: *172 examples: default: value: @@ -114916,7 +115054,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *202 + items: *204 examples: default: summary: Example response for listing user copilot spaces @@ -115128,9 +115266,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: &733 + default: &735 summary: Example response for a user copilot space value: id: 42 @@ -115229,9 +115367,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *733 + default: *735 '403': *29 '404': *6 x-github: @@ -115352,9 +115490,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *733 + default: *735 '403': *29 '404': *6 '422': *15 @@ -115431,7 +115569,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *204 + items: *206 examples: default: value: @@ -115574,7 +115712,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -115685,7 +115823,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *206 examples: default: value: @@ -115815,7 +115953,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *205 + items: *207 examples: default: value: @@ -115907,7 +116045,7 @@ paths: description: Resource created content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -115923,7 +116061,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -115976,7 +116114,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -116043,7 +116181,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *207 examples: default: value: @@ -116120,9 +116258,9 @@ paths: application/json: schema: type: array - items: *274 + items: *276 examples: - default: *715 + default: *717 '403': *29 '401': *25 x-github: @@ -116506,9 +116644,9 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *734 + default: *736 headers: Link: *70 x-github: @@ -116612,7 +116750,7 @@ paths: application/json: schema: *22 examples: - default: *553 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116736,7 +116874,7 @@ paths: - docker - nuget - container - - *714 + - *716 - *74 - *19 - *17 @@ -116747,12 +116885,12 @@ paths: application/json: schema: type: array - items: *274 + items: *276 examples: - default: *715 + default: *717 '403': *29 '401': *25 - '400': *716 + '400': *718 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116772,17 +116910,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *276 - - *277 + - *278 + - *279 - *74 responses: '200': description: Response content: application/json: - schema: *274 + schema: *276 examples: - default: *735 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116803,8 +116941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *276 - - *277 + - *278 + - *279 - *74 responses: '204': @@ -116837,8 +116975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *276 - - *277 + - *278 + - *279 - *74 - name: token description: package token @@ -116871,8 +117009,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: - - *276 - - *277 + - *278 + - *279 - *74 responses: '200': @@ -116881,7 +117019,7 @@ paths: application/json: schema: type: array - items: *278 + items: *280 examples: default: value: @@ -116939,16 +117077,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *276 - - *277 + - *278 - *279 + - *281 - *74 responses: '200': description: Response content: application/json: - schema: *278 + schema: *280 examples: default: value: @@ -116983,10 +117121,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *276 - - *277 - - *74 + - *278 - *279 + - *74 + - *281 responses: '204': description: Response @@ -117018,10 +117156,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *276 - - *277 - - *74 + - *278 - *279 + - *74 + - *281 responses: '204': description: Response @@ -117062,9 +117200,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *291 + default: *293 headers: Link: *70 '304': *37 @@ -117086,16 +117224,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *292 + - *294 - *74 responses: '200': description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: *291 + default: *293 headers: Link: *70 '304': *37 @@ -117117,7 +117255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *292 + - *294 - *74 - *17 - *47 @@ -117129,9 +117267,9 @@ paths: application/json: schema: type: array - items: *296 + items: *298 examples: - default: *736 + default: *738 headers: Link: *70 '304': *37 @@ -117153,7 +117291,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *74 - - *292 + - *294 requestBody: required: true content: @@ -117191,7 +117329,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *737 + items: *739 required: - name - data_type @@ -117207,7 +117345,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *738 + iteration_configuration: *740 required: - name - data_type @@ -117229,20 +117367,20 @@ paths: value: name: Due date data_type: date - single_select_field: *739 - iteration_field: *740 + single_select_field: *741 + iteration_field: *742 responses: '201': description: Response content: application/json: - schema: *296 + schema: *298 examples: - text_field: *741 - number_field: *742 - date_field: *743 - single_select_field: *744 - iteration_field: *745 + text_field: *743 + number_field: *744 + date_field: *745 + single_select_field: *746 + iteration_field: *747 '304': *37 '403': *29 '401': *25 @@ -117263,17 +117401,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *292 - - *746 + - *294 + - *748 - *74 responses: '200': description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *747 + default: *749 headers: Link: *70 '304': *37 @@ -117296,7 +117434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *292 + - *294 - *74 - *47 - *48 @@ -117329,9 +117467,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *301 + default: *303 headers: Link: *70 '304': *37 @@ -117353,7 +117491,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *74 - - *292 + - *294 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -117423,22 +117561,22 @@ paths: description: Response content: application/json: - schema: *298 + schema: *300 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *299 + value: *301 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *299 + value: *301 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *299 + value: *301 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *299 + value: *301 '304': *37 '403': *29 '401': *25 @@ -117458,9 +117596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *292 + - *294 - *74 - - *302 + - *304 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -117480,9 +117618,9 @@ paths: description: Response content: application/json: - schema: *300 + schema: *302 examples: - default: *301 + default: *303 headers: Link: *70 '304': *37 @@ -117503,9 +117641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *292 + - *294 - *74 - - *302 + - *304 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -117575,13 +117713,13 @@ paths: description: Response content: application/json: - schema: *300 + schema: *302 examples: - text_field: *301 - number_field: *301 - date_field: *301 - single_select_field: *301 - iteration_field: *301 + text_field: *303 + number_field: *303 + date_field: *303 + single_select_field: *303 + iteration_field: *303 '401': *25 '403': *29 '404': *6 @@ -117601,9 +117739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *292 + - *294 - *74 - - *302 + - *304 responses: '204': description: Response @@ -117625,9 +117763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *292 + - *294 - *74 - - *748 + - *750 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -117653,9 +117791,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *301 + default: *303 headers: Link: *70 '304': *37 @@ -117874,9 +118012,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -117884,6 +118022,139 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos + "/users/{username}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for a user + description: |- + Gets a report of AI credit usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-user + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user + parameters: + - *74 + - *124 + - *125 + - *126 + - *128 + - *129 + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + user: + type: string + description: The unique identifier of the user. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - user + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + user: monalisa + usageItems: + - product: Copilot AI Credits + sku: AI Credit + model: GPT-5 + unitType: ai-credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *55 + '503': *122 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: billing + subcategory: usage "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user @@ -117900,10 +118171,10 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *749 - - *127 + - *126 + - *128 + - *129 responses: '200': description: Response when getting a billing premium request usage report @@ -118033,8 +118304,8 @@ paths: parameters: - *74 - *124 - - *750 - - *125 + - *751 + - *126 responses: '200': description: Response when getting a billing usage report @@ -118130,11 +118401,11 @@ paths: parameters: - *74 - *124 - - *126 - *125 - - *751 - - *127 + - *126 - *752 + - *129 + - *753 responses: '200': description: Response when getting a billing usage summary @@ -118268,9 +118539,9 @@ paths: application/json: schema: type: array - items: *719 + items: *721 examples: - default: *720 + default: *722 headers: Link: *70 x-github: @@ -118300,9 +118571,9 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: - default: *753 + default: *754 headers: Link: *70 x-github: @@ -118327,7 +118598,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *754 + - *755 - *62 - *17 - *19 @@ -118339,11 +118610,11 @@ paths: schema: anyOf: - type: array - items: *755 + items: *756 - type: array items: *82 examples: - default-response: *724 + default-response: *726 headers: Link: *70 x-github: @@ -118372,9 +118643,9 @@ paths: application/json: schema: type: array - items: *161 + items: *163 examples: - default: *280 + default: *282 headers: Link: *70 x-github: @@ -118502,7 +118773,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &756 + enterprise: &757 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -118560,7 +118831,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &757 + installation: &758 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -118579,7 +118850,7 @@ x-webhooks: required: - id - node_id - organization: &758 + organization: &759 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -118639,13 +118910,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &759 + repository: &760 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &791 + properties: &792 id: description: Unique identifier of the repository example: 42 @@ -119340,7 +119611,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &792 + required: &793 - archive_url - assignees_url - blobs_url @@ -119414,7 +119685,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &793 + x-github-breaking-changes: &794 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -119505,10 +119776,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -119584,11 +119855,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: &760 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: &761 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) @@ -119811,11 +120082,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: *760 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -119998,11 +120269,11 @@ x-webhooks: - everyone required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: *760 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -120086,7 +120357,7 @@ x-webhooks: type: string enum: - completed - check_run: &762 + check_run: &763 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120140,7 +120411,7 @@ x-webhooks: pull_requests: type: array items: *93 - repository: *161 + repository: *163 status: example: completed type: string @@ -120177,7 +120448,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *761 + deployment: *762 details_url: example: https://example.com type: string @@ -120262,10 +120533,10 @@ x-webhooks: - output - app - pull_requests - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -120656,11 +120927,11 @@ x-webhooks: type: string enum: - created - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -121054,11 +121325,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 requested_action: description: The action requested by the user. type: object @@ -121461,11 +121732,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -122435,10 +122706,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123132,10 +123403,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123823,10 +124094,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123992,7 +124263,7 @@ x-webhooks: required: - login - id - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124137,20 +124408,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &763 + commit_oid: &764 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: *756 - installation: *757 - organization: *758 - ref: &764 + enterprise: *757 + installation: *758 + organization: *759 + ref: &765 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: *759 + repository: *760 sender: *4 required: - action @@ -124315,7 +124586,7 @@ x-webhooks: required: - login - id - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124545,12 +124816,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124645,7 +124916,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124816,12 +125087,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124987,7 +125258,7 @@ x-webhooks: required: - login - id - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -125153,12 +125424,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -125257,7 +125528,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125432,16 +125703,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *759 + repository: *760 sender: *4 required: - action @@ -125538,7 +125809,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125678,12 +125949,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -125849,7 +126120,7 @@ x-webhooks: required: - login - id - dismissed_comment: *449 + dismissed_comment: *451 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -125994,10 +126265,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -126252,10 +126523,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -126335,18 +126606,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *758 - pusher_type: &765 + organization: *759 + pusher_type: &766 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &766 + ref: &767 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -126356,7 +126627,7 @@ x-webhooks: enum: - tag - branch - repository: *759 + repository: *760 sender: *4 required: - ref @@ -126438,10 +126709,10 @@ x-webhooks: type: string enum: - created - definition: *304 - enterprise: *756 - installation: *757 - organization: *758 + definition: *306 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126526,9 +126797,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126605,10 +126876,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *304 - enterprise: *756 - installation: *757 - organization: *758 + definition: *306 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126685,10 +126956,10 @@ x-webhooks: type: string enum: - updated - definition: *304 - enterprise: *756 - installation: *757 - organization: *758 + definition: *306 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126765,19 +127036,19 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - repository: *759 - organization: *758 + enterprise: *757 + installation: *758 + repository: *760 + organization: *759 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *308 + items: *310 old_property_values: type: array description: The old custom property values for the repository. - items: *308 + items: *310 required: - action - repository @@ -126853,18 +127124,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - pusher_type: *765 - ref: *766 + enterprise: *757 + installation: *758 + organization: *759 + pusher_type: *766 + ref: *767 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *759 + repository: *760 sender: *4 required: - ref @@ -126944,11 +127215,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127028,11 +127299,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127113,11 +127384,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127198,11 +127469,11 @@ x-webhooks: type: string enum: - created - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127281,11 +127552,11 @@ x-webhooks: type: string enum: - dismissed - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127364,11 +127635,11 @@ x-webhooks: type: string enum: - fixed - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127448,11 +127719,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127531,11 +127802,11 @@ x-webhooks: type: string enum: - reopened - alert: *513 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + alert: *515 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -127612,9 +127883,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - key: &767 + enterprise: *757 + installation: *758 + key: &768 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127650,8 +127921,8 @@ x-webhooks: - verified - created_at - read_only - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -127728,11 +127999,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - key: *767 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + key: *768 + organization: *759 + repository: *760 sender: *4 required: - action @@ -128288,12 +128559,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: &773 + workflow: &774 title: Workflow type: object nullable: true @@ -129034,15 +129305,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true pull_requests: type: array - items: *609 - repository: *759 - organization: *758 - installation: *757 + items: *611 + repository: *760 + organization: *759 + installation: *758 sender: *4 responses: '200': @@ -129113,7 +129384,7 @@ x-webhooks: type: string enum: - approved - approver: &770 + approver: &771 type: object properties: avatar_url: @@ -129156,11 +129427,11 @@ x-webhooks: type: string comment: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - reviewers: &771 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: &772 type: array items: type: object @@ -129239,7 +129510,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &772 + workflow_job_run: &773 type: object properties: conclusion: @@ -129970,18 +130241,18 @@ x-webhooks: type: string enum: - rejected - approver: *770 + approver: *771 comment: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - reviewers: *771 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: *772 sender: *4 since: type: string - workflow_job_run: *772 + workflow_job_run: *773 workflow_job_runs: type: array items: @@ -130685,13 +130956,13 @@ x-webhooks: type: string enum: - requested - enterprise: *756 + enterprise: *757 environment: type: string - installation: *757 - organization: *758 - repository: *759 - requestor: &778 + installation: *758 + organization: *759 + repository: *760 + requestor: &779 title: User type: object nullable: true @@ -132580,12 +132851,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *773 + workflow: *774 workflow_run: title: Deployment Workflow Run type: object @@ -133265,7 +133536,7 @@ x-webhooks: type: string enum: - answered - answer: &776 + answer: &777 type: object properties: author_association: @@ -133422,11 +133693,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133553,11 +133824,11 @@ x-webhooks: - from required: - category - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133640,11 +133911,11 @@ x-webhooks: type: string enum: - closed - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133726,7 +133997,7 @@ x-webhooks: type: string enum: - created - comment: &775 + comment: &776 type: object properties: author_association: @@ -133883,11 +134154,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133970,12 +134241,12 @@ x-webhooks: type: string enum: - deleted - comment: *775 - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134070,12 +134341,12 @@ x-webhooks: - from required: - body - comment: *775 - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134159,11 +134430,11 @@ x-webhooks: type: string enum: - created - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134245,11 +134516,11 @@ x-webhooks: type: string enum: - deleted - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134349,11 +134620,11 @@ x-webhooks: type: string required: - from - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134435,10 +134706,10 @@ x-webhooks: type: string enum: - labeled - discussion: *774 - enterprise: *756 - installation: *757 - label: &777 + discussion: *775 + enterprise: *757 + installation: *758 + label: &778 title: Label type: object properties: @@ -134470,8 +134741,8 @@ x-webhooks: - color - default - description - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134554,11 +134825,11 @@ x-webhooks: type: string enum: - locked - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134640,11 +134911,11 @@ x-webhooks: type: string enum: - pinned - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134726,11 +134997,11 @@ x-webhooks: type: string enum: - reopened - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134815,16 +135086,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *774 - new_repository: *759 + new_discussion: *775 + new_repository: *760 required: - new_discussion - new_repository - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134907,10 +135178,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *774 - old_answer: *776 - organization: *758 - repository: *759 + discussion: *775 + old_answer: *777 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134992,12 +135263,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *774 - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -135080,11 +135351,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -135166,11 +135437,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -135243,7 +135514,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *756 + enterprise: *757 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -135903,9 +136174,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - forkee @@ -136051,9 +136322,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pages: description: The pages that were updated. type: array @@ -136090,7 +136361,7 @@ x-webhooks: - action - sha - html_url - repository: *759 + repository: *760 sender: *4 required: - pages @@ -136166,10 +136437,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories: &779 + organization: *759 + repositories: &780 description: An array of repository objects that the installation can access. type: array @@ -136195,8 +136466,8 @@ x-webhooks: - name - full_name - private - repository: *759 - requester: *778 + repository: *760 + requester: *779 sender: *4 required: - action @@ -136271,11 +136542,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136351,11 +136622,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136431,10 +136702,10 @@ x-webhooks: type: string enum: - added - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories_added: &780 + organization: *759 + repositories_added: &781 description: An array of repository objects, which were added to the installation. type: array @@ -136480,15 +136751,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *759 - repository_selection: &781 + repository: *760 + repository_selection: &782 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *778 + requester: *779 sender: *4 required: - action @@ -136567,10 +136838,10 @@ x-webhooks: type: string enum: - removed - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories_added: *780 + organization: *759 + repositories_added: *781 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -136597,9 +136868,9 @@ x-webhooks: - name - full_name - private - repository: *759 - repository_selection: *781 - requester: *778 + repository: *760 + repository_selection: *782 + requester: *779 sender: *4 required: - action @@ -136678,11 +136949,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136860,10 +137131,10 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 target_type: type: string @@ -136942,11 +137213,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *756 + enterprise: *757 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -137120,8 +137391,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *586 - required: *587 + properties: *588 + required: *589 nullable: true user: title: User @@ -137206,8 +137477,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137996,8 +138267,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138013,7 +138284,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -138346,8 +138617,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -138427,7 +138698,7 @@ x-webhooks: type: string enum: - deleted - comment: &782 + comment: &783 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -138584,8 +138855,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *586 - required: *587 + properties: *588 + required: *589 nullable: true required: - url @@ -138600,8 +138871,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139386,8 +139657,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139403,7 +139674,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -139738,8 +140009,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -139819,7 +140090,7 @@ x-webhooks: type: string enum: - edited - changes: &812 + changes: &813 description: The changes to the comment. type: object properties: @@ -139831,9 +140102,9 @@ x-webhooks: type: string required: - from - comment: *782 - enterprise: *756 - installation: *757 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140621,8 +140892,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140638,7 +140909,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -140971,8 +141242,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -141053,9 +141324,9 @@ x-webhooks: type: string enum: - pinned - comment: *782 - enterprise: *756 - installation: *757 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141845,8 +142116,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141862,7 +142133,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -142197,8 +142468,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142278,9 +142549,9 @@ x-webhooks: type: string enum: - unpinned - comment: *782 - enterprise: *756 - installation: *757 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143070,8 +143341,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143087,7 +143358,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -143422,8 +143693,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143512,9 +143783,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143603,9 +143874,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143693,9 +143964,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143784,9 +144055,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143866,10 +144137,10 @@ x-webhooks: type: string enum: - assigned - assignee: *778 - enterprise: *756 - installation: *757 - issue: &783 + assignee: *779 + enterprise: *757 + installation: *758 + issue: &784 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144661,11 +144932,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144681,7 +144952,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -144782,8 +145053,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -144863,8 +145134,8 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145661,11 +145932,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145681,7 +145952,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -145917,8 +146188,8 @@ x-webhooks: required: - state - closed_at - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -145997,8 +146268,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146786,11 +147057,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146806,7 +147077,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -146906,8 +147177,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -146986,8 +147257,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147797,11 +148068,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147817,7 +148088,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -147896,7 +148167,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &784 + milestone: &785 title: Milestone description: A collection of related issues and pull requests. type: object @@ -148034,8 +148305,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148134,8 +148405,8 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148927,11 +149198,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148944,7 +149215,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *256 + type: *258 title: description: Title of the issue type: string @@ -149048,9 +149319,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *777 - organization: *758 - repository: *759 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -149130,9 +149401,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was set or updated on the @@ -149241,8 +149512,8 @@ x-webhooks: - id required: - from - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -149322,9 +149593,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -149382,8 +149653,8 @@ x-webhooks: nullable: true required: - id - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -149463,8 +149734,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150255,11 +150526,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150272,7 +150543,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *256 + type: *258 title: description: Title of the issue type: string @@ -150376,9 +150647,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *777 - organization: *758 - repository: *759 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -150458,8 +150729,8 @@ x-webhooks: type: string enum: - locked - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151274,11 +151545,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151291,7 +151562,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *256 + type: *258 title: description: Title of the issue type: string @@ -151372,8 +151643,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -151452,8 +151723,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152262,11 +152533,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152282,7 +152553,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -152360,9 +152631,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *784 - organization: *758 - repository: *759 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -153225,11 +153496,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153330,7 +153601,7 @@ x-webhooks: required: - login - id - type: *256 + type: *258 required: - id - number @@ -153810,8 +154081,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154595,11 +154866,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154615,7 +154886,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -154723,8 +154994,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -154804,9 +155075,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *756 - installation: *757 - issue: &785 + enterprise: *757 + installation: *758 + issue: &786 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -155592,11 +155863,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155612,7 +155883,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -155712,8 +155983,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -155792,8 +156063,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156606,11 +156877,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156704,9 +156975,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *256 - organization: *758 - repository: *759 + type: *258 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157575,11 +157846,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157595,7 +157866,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -158174,11 +158445,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *756 - installation: *757 - issue: *785 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158258,12 +158529,12 @@ x-webhooks: type: string enum: - typed - enterprise: *756 - installation: *757 - issue: *783 - type: *256 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *784 + type: *258 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158344,7 +158615,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &815 + assignee: &816 title: User type: object nullable: true @@ -158414,11 +158685,11 @@ x-webhooks: required: - login - id - enterprise: *756 - installation: *757 - issue: *783 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *784 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158497,12 +158768,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *756 - installation: *757 - issue: *783 - label: *777 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *784 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158582,8 +158853,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159396,11 +159667,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *691 - issue_dependencies_summary: *692 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *570 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159416,7 +159687,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *256 + type: *258 updated_at: type: string format: date-time @@ -159494,8 +159765,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159575,11 +159846,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *756 - installation: *757 - issue: *785 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159658,12 +159929,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *756 - installation: *757 - issue: *783 - type: *256 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + issue: *784 + type: *258 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159743,11 +160014,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159825,11 +160096,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159939,11 +160210,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160025,9 +160296,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: &786 + enterprise: *757 + installation: *758 + marketplace_purchase: &787 title: Marketplace Purchase type: object required: @@ -160110,8 +160381,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *758 - previous_marketplace_purchase: &787 + organization: *759 + previous_marketplace_purchase: &788 title: Marketplace Purchase type: object properties: @@ -160191,7 +160462,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *760 sender: *4 required: - action @@ -160271,10 +160542,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160357,7 +160628,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *760 sender: *4 required: - action @@ -160439,10 +160710,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160524,7 +160795,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *760 sender: *4 required: - action @@ -160605,8 +160876,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 marketplace_purchase: title: Marketplace Purchase type: object @@ -160688,9 +160959,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *758 - previous_marketplace_purchase: *787 - repository: *759 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -160770,12 +161041,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 - previous_marketplace_purchase: *787 - repository: *759 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -160877,11 +161148,11 @@ x-webhooks: type: string required: - to - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160981,11 +161252,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161064,11 +161335,11 @@ x-webhooks: type: string enum: - removed - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161146,11 +161417,11 @@ x-webhooks: type: string enum: - added - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161226,7 +161497,7 @@ x-webhooks: required: - login - id - team: &788 + team: &789 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -161449,11 +161720,11 @@ x-webhooks: type: string enum: - removed - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161530,7 +161801,7 @@ x-webhooks: required: - login - id - team: *788 + team: *789 required: - action - scope @@ -161612,8 +161883,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *757 - merge_group: &790 + installation: *758 + merge_group: &791 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -161632,15 +161903,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *789 + head_commit: *790 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161726,10 +161997,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *757 - merge_group: *790 - organization: *758 - repository: *759 + installation: *758 + merge_group: *791 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161802,7 +162073,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 + enterprise: *757 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -161911,17 +162182,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *757 - organization: *758 + installation: *758 + organization: *759 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *792 + required: *793 + x-github-breaking-changes: *794 nullable: true sender: *4 required: @@ -162002,11 +162273,11 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162085,9 +162356,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - milestone: &794 + enterprise: *757 + installation: *758 + milestone: &795 title: Milestone description: A collection of related issues and pull requests. type: object @@ -162224,8 +162495,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162304,11 +162575,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162418,11 +162689,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162502,11 +162773,11 @@ x-webhooks: type: string enum: - opened - enterprise: *756 - installation: *757 - milestone: *794 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + milestone: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162585,11 +162856,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *778 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162668,11 +162939,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *778 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162751,9 +163022,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - membership: &795 + enterprise: *757 + installation: *758 + membership: &796 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -162860,8 +163131,8 @@ x-webhooks: - role - organization_url - user - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162939,11 +163210,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + membership: *796 + organization: *759 + repository: *760 sender: *4 required: - action @@ -163022,8 +163293,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -163139,10 +163410,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 - user: *778 + user: *779 required: - action - invitation @@ -163220,11 +163491,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + membership: *796 + organization: *759 + repository: *760 sender: *4 required: - action @@ -163311,11 +163582,11 @@ x-webhooks: properties: from: type: string - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + membership: *796 + organization: *759 + repository: *760 sender: *4 required: - action @@ -163392,9 +163663,9 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -163893,7 +164164,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &796 + items: &797 title: Ruby Gems metadata type: object properties: @@ -163988,7 +164259,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *760 sender: *4 required: - action @@ -164064,9 +164335,9 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -164419,7 +164690,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *796 + items: *797 source_url: type: string format: uri @@ -164489,7 +164760,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *760 sender: *4 required: - action @@ -164665,12 +164936,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *756 + enterprise: *757 id: type: integer - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - id @@ -164747,7 +165018,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &797 + personal_access_token_request: &798 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -164893,10 +165164,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *756 - organization: *758 + enterprise: *757 + organization: *759 sender: *4 - installation: *757 + installation: *758 required: - action - personal_access_token_request @@ -164973,11 +165244,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *797 - enterprise: *756 - organization: *758 + personal_access_token_request: *798 + enterprise: *757 + organization: *759 sender: *4 - installation: *757 + installation: *758 required: - action - personal_access_token_request @@ -165053,11 +165324,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *797 - enterprise: *756 - organization: *758 + personal_access_token_request: *798 + enterprise: *757 + organization: *759 sender: *4 - installation: *757 + installation: *758 required: - action - personal_access_token_request @@ -165132,11 +165403,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *797 - organization: *758 - enterprise: *756 + personal_access_token_request: *798 + organization: *759 + enterprise: *757 sender: *4 - installation: *757 + installation: *758 required: - action - personal_access_token_request @@ -165241,7 +165512,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *798 + last_response: *799 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -165273,8 +165544,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 zen: description: Random string of GitHub zen. @@ -165519,10 +165790,10 @@ x-webhooks: - from required: - note - enterprise: *756 - installation: *757 - organization: *758 - project_card: &799 + enterprise: *757 + installation: *758 + organization: *759 + project_card: &800 title: Project Card type: object properties: @@ -165641,7 +165912,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *759 + repository: *760 sender: *4 required: - action @@ -165722,11 +165993,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project_card: *799 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *800 + repository: *760 sender: *4 required: - action @@ -165806,9 +166077,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 project_card: title: Project Card type: object @@ -165936,9 +166207,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *792 + required: *793 + x-github-breaking-changes: *794 nullable: true sender: *4 required: @@ -166032,11 +166303,11 @@ x-webhooks: - from required: - note - enterprise: *756 - installation: *757 - organization: *758 - project_card: *799 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *800 + repository: *760 sender: *4 required: - action @@ -166130,9 +166401,9 @@ x-webhooks: - from required: - column_id - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 project_card: allOf: - title: Project Card @@ -166322,7 +166593,7 @@ x-webhooks: type: string required: - after_id - repository: *759 + repository: *760 sender: *4 required: - action @@ -166402,10 +166673,10 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - organization: *758 - project: &801 + enterprise: *757 + installation: *758 + organization: *759 + project: &802 title: Project type: object properties: @@ -166529,7 +166800,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *759 + repository: *760 sender: *4 required: - action @@ -166609,10 +166880,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project_column: &800 + enterprise: *757 + installation: *758 + organization: *759 + project_column: &801 title: Project Column type: object properties: @@ -166651,7 +166922,7 @@ x-webhooks: - name - created_at - updated_at - repository: *759 + repository: *760 sender: *4 required: - action @@ -166730,19 +167001,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *792 + required: *793 + x-github-breaking-changes: *794 nullable: true sender: *4 required: @@ -166832,11 +167103,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *801 + repository: *760 sender: *4 required: - action @@ -166916,11 +167187,11 @@ x-webhooks: type: string enum: - moved - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *801 + repository: *760 sender: *4 required: - action @@ -167000,11 +167271,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project: *802 + repository: *760 sender: *4 required: - action @@ -167084,19 +167355,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - project: *801 + enterprise: *757 + installation: *758 + organization: *759 + project: *802 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *792 + required: *793 + x-github-breaking-changes: *794 nullable: true sender: *4 required: @@ -167198,11 +167469,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project: *802 + repository: *760 sender: *4 required: - action @@ -167281,11 +167552,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + project: *802 + repository: *760 sender: *4 required: - action @@ -167366,9 +167637,9 @@ x-webhooks: type: string enum: - closed - installation: *757 - organization: *758 - projects_v2: *290 + installation: *758 + organization: *759 + projects_v2: *292 sender: *4 required: - action @@ -167449,9 +167720,9 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 - projects_v2: *290 + installation: *758 + organization: *759 + projects_v2: *292 sender: *4 required: - action @@ -167532,9 +167803,9 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 - projects_v2: *290 + installation: *758 + organization: *759 + projects_v2: *292 sender: *4 required: - action @@ -167651,9 +167922,9 @@ x-webhooks: type: string to: type: string - installation: *757 - organization: *758 - projects_v2: *290 + installation: *758 + organization: *759 + projects_v2: *292 sender: *4 required: - action @@ -167736,7 +168007,7 @@ x-webhooks: type: string enum: - archived - changes: &805 + changes: &806 type: object properties: archived_at: @@ -167750,9 +168021,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *757 - organization: *758 - projects_v2_item: &802 + installation: *758 + organization: *759 + projects_v2_item: &803 title: Projects v2 Item description: An item belonging to a project type: object @@ -167770,7 +168041,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *297 + content_type: *299 creator: *4 created_at: type: string @@ -167887,9 +168158,9 @@ x-webhooks: nullable: true to: type: string - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -167971,9 +168242,9 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -168054,9 +168325,9 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -168162,7 +168433,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &803 + - &804 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -168184,7 +168455,7 @@ x-webhooks: required: - id - name - - &804 + - &805 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -168218,8 +168489,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *803 - *804 + - *805 required: - field_value - type: object @@ -168235,9 +168506,9 @@ x-webhooks: nullable: true required: - body - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -168332,9 +168603,9 @@ x-webhooks: to: type: string nullable: true - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -168417,10 +168688,10 @@ x-webhooks: type: string enum: - restored - changes: *805 - installation: *757 - organization: *758 - projects_v2_item: *802 + changes: *806 + installation: *758 + organization: *759 + projects_v2_item: *803 sender: *4 required: - action @@ -168502,9 +168773,9 @@ x-webhooks: type: string enum: - reopened - installation: *757 - organization: *758 - projects_v2: *290 + installation: *758 + organization: *759 + projects_v2: *292 sender: *4 required: - action @@ -168585,14 +168856,14 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 - projects_v2_status_update: &808 + installation: *758 + organization: *759 + projects_v2_status_update: &809 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *806 - required: *807 + properties: *807 + required: *808 sender: *4 required: - action @@ -168673,9 +168944,9 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 - projects_v2_status_update: *808 + installation: *758 + organization: *759 + projects_v2_status_update: *809 sender: *4 required: - action @@ -168811,9 +169082,9 @@ x-webhooks: type: string format: date nullable: true - installation: *757 - organization: *758 - projects_v2_status_update: *808 + installation: *758 + organization: *759 + projects_v2_status_update: *809 sender: *4 required: - action @@ -168884,10 +169155,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - repository @@ -168964,13 +169235,13 @@ x-webhooks: type: string enum: - assigned - assignee: *778 - enterprise: *756 - installation: *757 - number: &809 + assignee: *779 + enterprise: *757 + installation: *758 + number: &810 description: The pull request number. type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -171275,7 +171546,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -171372,11 +171643,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -173676,7 +173947,7 @@ x-webhooks: - draft reason: type: string - repository: *759 + repository: *760 sender: *4 required: - action @@ -173773,11 +174044,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -176077,7 +176348,7 @@ x-webhooks: - draft reason: type: string - repository: *759 + repository: *760 sender: *4 required: - action @@ -176174,13 +176445,13 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: &810 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: &811 allOf: - - *609 + - *611 - type: object properties: allow_auto_merge: @@ -176242,7 +176513,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *759 + repository: *760 sender: *4 required: - action @@ -176323,12 +176594,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -176408,11 +176679,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *756 - milestone: *593 - number: *809 - organization: *758 - pull_request: &811 + enterprise: *757 + milestone: *595 + number: *810 + organization: *759 + pull_request: &812 title: Pull Request type: object properties: @@ -178739,7 +179010,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *759 + repository: *760 sender: *4 required: - action @@ -178818,11 +179089,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -181126,7 +181397,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *759 + repository: *760 sender: *4 required: - action @@ -181258,12 +181529,12 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -181343,11 +181614,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -183636,7 +183907,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -183724,11 +183995,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *756 - installation: *757 - label: *777 - number: *809 - organization: *758 + enterprise: *757 + installation: *758 + label: *778 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -186032,7 +186303,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -186128,10 +186399,10 @@ x-webhooks: type: string enum: - locked - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -188433,7 +188704,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -188528,12 +188799,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *756 - milestone: *593 - number: *809 - organization: *758 - pull_request: *811 - repository: *759 + enterprise: *757 + milestone: *595 + number: *810 + organization: *759 + pull_request: *812 + repository: *760 sender: *4 required: - action @@ -188612,12 +188883,12 @@ x-webhooks: type: string enum: - opened - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -188698,12 +188969,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -188783,12 +189054,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -189154,9 +189425,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -191348,7 +191619,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *760 sender: *4 required: - action @@ -191443,7 +191714,7 @@ x-webhooks: type: string enum: - deleted - comment: &813 + comment: &814 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -191728,9 +191999,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -193910,7 +194181,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *760 sender: *4 required: - action @@ -194005,11 +194276,11 @@ x-webhooks: type: string enum: - edited - changes: *812 - comment: *813 - enterprise: *756 - installation: *757 - organization: *758 + changes: *813 + comment: *814 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -196192,7 +196463,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *760 sender: *4 required: - action @@ -196288,9 +196559,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -198485,7 +198756,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *760 review: description: The review that was affected. type: object @@ -198747,9 +199018,9 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -200803,8 +201074,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 - review: &814 + repository: *760 + review: &815 description: The review that was affected. type: object properties: @@ -201045,12 +201316,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -203355,7 +203626,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 requested_reviewer: title: User type: object @@ -203439,12 +203710,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -205756,7 +206027,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205971,12 +206242,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -208283,7 +208554,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 requested_reviewer: title: User type: object @@ -208368,12 +208639,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *756 - installation: *757 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *758 + organization: *759 pull_request: title: Pull Request type: object @@ -210671,7 +210942,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210875,9 +211146,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -213074,8 +213345,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 - review: *814 + repository: *760 + review: *815 sender: *4 required: - action @@ -213170,9 +213441,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -215264,7 +215535,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *760 sender: *4 thread: type: object @@ -215659,9 +215930,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -217739,7 +218010,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *760 sender: *4 thread: type: object @@ -218137,10 +218408,10 @@ x-webhooks: type: string before: type: string - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -220433,7 +220704,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -220530,11 +220801,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *815 - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + assignee: *816 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -222839,7 +223110,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -222933,11 +223204,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *756 - installation: *757 - label: *777 - number: *809 - organization: *758 + enterprise: *757 + installation: *758 + label: *778 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -225232,7 +225503,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -225328,10 +225599,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *757 + installation: *758 + number: *810 + organization: *759 pull_request: title: Pull Request type: object @@ -227618,7 +227889,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *760 sender: *4 required: - action @@ -227833,7 +228104,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *756 + enterprise: *757 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -227925,8 +228196,8 @@ x-webhooks: - url - author - committer - installation: *757 - organization: *758 + installation: *758 + organization: *759 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -228512,9 +228783,9 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -228960,7 +229231,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *796 + items: *797 summary: type: string tag_name: @@ -229014,7 +229285,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *760 sender: *4 required: - action @@ -229092,9 +229363,9 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -229402,7 +229673,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *796 + items: *797 summary: type: string tag_name: @@ -229451,7 +229722,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *760 sender: *4 required: - action @@ -229528,10 +229799,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - release: &816 + enterprise: *757 + installation: *758 + organization: *759 + release: &817 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229849,7 +230120,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *759 + repository: *760 sender: *4 required: - action @@ -229926,11 +230197,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + release: *817 + repository: *760 sender: *4 required: - action @@ -230047,11 +230318,11 @@ x-webhooks: type: boolean required: - to - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + release: *817 + repository: *760 sender: *4 required: - action @@ -230129,9 +230400,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -230453,7 +230724,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *759 + repository: *760 sender: *4 required: - action @@ -230529,10 +230800,10 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - release: &817 + enterprise: *757 + installation: *758 + organization: *759 + release: &818 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -230851,7 +231122,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *759 + repository: *760 sender: *4 required: - action @@ -230927,11 +231198,11 @@ x-webhooks: type: string enum: - released - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + release: *817 + repository: *760 sender: *4 required: - action @@ -231007,11 +231278,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *756 - installation: *757 - organization: *758 - release: *817 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + release: *818 + repository: *760 sender: *4 required: - action @@ -231087,11 +231358,11 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_advisory: *678 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -231167,11 +231438,11 @@ x-webhooks: type: string enum: - reported - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_advisory: *678 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -231247,10 +231518,10 @@ x-webhooks: type: string enum: - archived - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231327,10 +231598,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231408,10 +231679,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231495,10 +231766,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231610,10 +231881,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231685,10 +231956,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 status: type: string @@ -231769,10 +232040,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231849,10 +232120,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231946,10 +232217,10 @@ x-webhooks: - name required: - repository - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232029,11 +232300,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_ruleset: *339 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_ruleset: *341 sender: *4 required: - action @@ -232111,11 +232382,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_ruleset: *339 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_ruleset: *341 sender: *4 required: - action @@ -232193,11 +232464,11 @@ x-webhooks: type: string enum: - edited - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_ruleset: *339 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_ruleset: *341 changes: type: object properties: @@ -232216,16 +232487,16 @@ x-webhooks: properties: added: type: array - items: *313 + items: *315 deleted: type: array - items: *313 + items: *315 updated: type: array items: type: object properties: - condition: *313 + condition: *315 changes: type: object properties: @@ -232258,16 +232529,16 @@ x-webhooks: properties: added: type: array - items: *629 + items: *631 deleted: type: array - items: *629 + items: *631 updated: type: array items: type: object properties: - rule: *629 + rule: *631 changes: type: object properties: @@ -232501,10 +232772,10 @@ x-webhooks: - from required: - owner - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232582,10 +232853,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232663,7 +232934,7 @@ x-webhooks: type: string enum: - create - alert: &818 + alert: &819 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -232785,10 +233056,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232994,10 +233265,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233075,11 +233346,11 @@ x-webhooks: type: string enum: - reopen - alert: *818 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233278,10 +233549,10 @@ x-webhooks: enum: - fixed - open - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233359,11 +233630,11 @@ x-webhooks: type: string enum: - assigned - alert: &819 + alert: &820 type: object properties: - number: *186 - created_at: *187 + number: *188 + created_at: *189 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -233371,8 +233642,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *189 - html_url: *190 + url: *191 + html_url: *192 locations_url: type: string format: uri @@ -233502,10 +233773,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233583,11 +233854,11 @@ x-webhooks: type: string enum: - created - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *820 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233668,11 +233939,11 @@ x-webhooks: type: string enum: - created - alert: *819 - installation: *757 - location: *820 - organization: *758 - repository: *759 + alert: *820 + installation: *758 + location: *821 + organization: *759 + repository: *760 sender: *4 required: - location @@ -233910,11 +234181,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *820 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233992,11 +234263,11 @@ x-webhooks: type: string enum: - reopened - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *820 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234074,11 +234345,11 @@ x-webhooks: type: string enum: - resolved - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *820 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234156,12 +234427,12 @@ x-webhooks: type: string enum: - unassigned - alert: *819 + alert: *820 assignee: *4 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234239,11 +234510,11 @@ x-webhooks: type: string enum: - validated - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *820 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234369,10 +234640,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *759 - enterprise: *756 - installation: *757 - organization: *758 + repository: *760 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -234450,11 +234721,11 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - security_advisory: &821 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: &822 description: The details of the security advisory, including summary, description, and severity. type: object @@ -234655,11 +234926,11 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - security_advisory: *821 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: *822 sender: *4 required: - action @@ -234732,10 +235003,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -234927,11 +235198,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *312 - enterprise: *756 - installation: *757 - organization: *758 - repository: *360 + security_and_analysis: *314 + enterprise: *757 + installation: *758 + organization: *759 + repository: *362 sender: *4 required: - changes @@ -235009,12 +235280,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: &822 + sponsorship: &823 type: object properties: created_at: @@ -235315,12 +235586,12 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *822 + sponsorship: *823 required: - action - sponsorship @@ -235408,12 +235679,12 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *822 + sponsorship: *823 required: - action - changes @@ -235490,17 +235761,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &823 + effective_date: &824 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: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *822 + sponsorship: *823 required: - action - sponsorship @@ -235574,7 +235845,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &824 + changes: &825 type: object properties: tier: @@ -235618,13 +235889,13 @@ x-webhooks: - from required: - tier - effective_date: *823 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + effective_date: *824 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *822 + sponsorship: *823 required: - action - changes @@ -235701,13 +235972,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *824 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + changes: *825 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *822 + sponsorship: *823 required: - action - changes @@ -235781,10 +236052,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235867,10 +236138,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -236290,15 +236561,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *756 + enterprise: *757 id: description: The unique identifier of the status. type: integer - installation: *757 + installation: *758 name: type: string - organization: *758 - repository: *759 + organization: *759 + repository: *760 sender: *4 sha: description: The Commit SHA. @@ -236413,9 +236684,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -236504,9 +236775,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -236595,9 +236866,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -236686,9 +236957,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -236764,12 +237035,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - team: &825 + team: &826 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -236992,9 +237263,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237452,7 +237723,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *826 required: - action - team @@ -237528,9 +237799,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237988,7 +238259,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *826 required: - action - team @@ -238065,9 +238336,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -238525,7 +238796,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *826 required: - action - team @@ -238669,9 +238940,9 @@ x-webhooks: - from required: - permissions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -239129,7 +239400,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *826 required: - action - changes @@ -239207,9 +239478,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -239667,7 +239938,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *826 required: - action - team @@ -239743,10 +240014,10 @@ x-webhooks: type: string enum: - started - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -239819,16 +240090,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *756 + enterprise: *757 inputs: type: object nullable: true additionalProperties: true - installation: *757 - organization: *758 + installation: *758 + organization: *759 ref: type: string - repository: *759 + repository: *760 sender: *4 workflow: type: string @@ -239910,10 +240181,10 @@ x-webhooks: type: string enum: - completed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -240150,7 +240421,7 @@ x-webhooks: type: string required: - conclusion - deployment: *520 + deployment: *522 required: - action - repository @@ -240229,10 +240500,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -240492,7 +240763,7 @@ x-webhooks: required: - status - steps - deployment: *520 + deployment: *522 required: - action - repository @@ -240571,10 +240842,10 @@ x-webhooks: type: string enum: - queued - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -240709,7 +240980,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *522 required: - action - repository @@ -240788,10 +241059,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -240927,7 +241198,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *522 required: - action - repository @@ -241007,12 +241278,12 @@ x-webhooks: type: string enum: - completed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *773 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -242011,12 +242282,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *773 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -243000,12 +243271,12 @@ x-webhooks: type: string enum: - requested - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *773 + workflow: *774 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 4d46ed485..20d566112 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -48208,8 +48208,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -48367,8 +48367,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -48532,8 +48532,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -48696,8 +48696,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -48855,8 +48855,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -71655,6 +71655,434 @@ } } }, + "/enterprises/{enterprise}/settings/billing/ai_credit/usage": { + "get": { + "summary": "Get billing AI credit usage report for an enterprise", + "description": "Gets a report of AI credit usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", + "tags": [ + "billing" + ], + "operationId": "billing/get-github-billing-ai-credit-usage-report-ghe", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "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, `2025`. Default value is the current year.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "month", + "description": "If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current month. If no year is specified the default `year` is used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "day", + "description": "If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is specified, the default `year` and `month` are used.", + "in": "query", + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "organization", + "description": "The organization name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "user", + "description": "The user name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "model", + "description": "The model name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "product", + "description": "The product name to query usage for. The name is not case sensitive.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "cost_center_id", + "description": "The ID corresponding to a cost center. An ID of 'none' will target usage not associated to any cost center.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response when getting a billing AI credit usage report", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timePeriod": { + "type": "object", + "properties": { + "year": { + "type": "integer", + "description": "The year for the usage report." + }, + "month": { + "type": "integer", + "description": "The month for the usage report." + }, + "day": { + "type": "integer", + "description": "The day for the usage report." + } + }, + "required": [ + "year" + ] + }, + "enterprise": { + "type": "string", + "description": "The name of the enterprise for the usage report." + }, + "user": { + "type": "string", + "description": "The name of the user for the usage report." + }, + "organization": { + "type": "string", + "description": "The name of the organization for the usage report." + }, + "product": { + "type": "string", + "description": "The product for the usage report." + }, + "model": { + "type": "string", + "description": "The model for the usage report." + }, + "costCenter": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The unique identifier of the cost center." + }, + "name": { + "type": "string", + "description": "The name of the cost center." + } + }, + "required": [ + "id", + "name" + ] + }, + "usageItems": { + "type": "array", + "items": { + "type": "object", + "properties": { + "product": { + "type": "string", + "description": "Product name." + }, + "sku": { + "type": "string", + "description": "SKU name." + }, + "model": { + "type": "string", + "description": "Model name." + }, + "unitType": { + "type": "string", + "description": "Unit type of the usage line item." + }, + "pricePerUnit": { + "type": "number", + "description": "Price per unit of the usage line item." + }, + "grossQuantity": { + "type": "number", + "description": "Gross quantity of the usage line item." + }, + "grossAmount": { + "type": "number", + "description": "Gross amount of the usage line item." + }, + "discountQuantity": { + "type": "number", + "description": "Discount quantity of the usage line item." + }, + "discountAmount": { + "type": "number", + "description": "Discount amount of the usage line item." + }, + "netQuantity": { + "type": "number", + "description": "Net quantity of the usage line item." + }, + "netAmount": { + "type": "number", + "description": "Net amount of the usage line item." + } + }, + "required": [ + "product", + "sku", + "model", + "unitType", + "pricePerUnit", + "grossQuantity", + "grossAmount", + "discountQuantity", + "discountAmount", + "netQuantity", + "netAmount" + ] + } + } + }, + "required": [ + "timePeriod", + "enterprise", + "usageItems" + ] + }, + "examples": { + "default": { + "value": { + "timePeriod": { + "year": 2025 + }, + "enterprise": "GitHub", + "usageItems": [ + { + "product": "Copilot", + "sku": "Copilot AI Credits", + "model": "GPT-5", + "unitType": "credits", + "pricePerUnit": 0.01, + "grossQuantity": 100, + "grossAmount": 1.0, + "discountQuantity": 0, + "discountAmount": 0.0, + "netQuantity": 100, + "netAmount": 1.0 + } + ] + } + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + }, + "application/scim+json": { + "schema": { + "title": "Scim Error", + "description": "Scim Error", + "type": "object", + "properties": { + "message": { + "type": "string", + "nullable": true + }, + "documentation_url": { + "type": "string", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer" + }, + "scimType": { + "type": "string", + "nullable": true + }, + "schemas": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "billing", + "subcategory": "usage" + } + } + }, "/enterprises/{enterprise}/settings/billing/budgets": { "get": { "summary": "Get all budgets", @@ -175101,8 +175529,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -175263,8 +175691,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" @@ -175428,8 +175856,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -175595,8 +176023,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_day": "2025-07-01" } @@ -175757,8 +176185,8 @@ "default": { "value": { "download_links": [ - "https://example.com/copilot-usage-report-1.json", - "https://example.com/copilot-usage-report-2.json" + "https://example.com/copilot-usage-report-1.ndjson", + "https://example.com/copilot-usage-report-2.ndjson" ], "report_start_day": "2025-07-01", "report_end_day": "2025-07-28" diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index c022ed2f0..b7b709194 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -872,7 +872,7 @@ paths: - subscriptions_url - type - url - type: &475 + type: &477 type: string description: The type of credit the user is receiving. enum: @@ -1005,7 +1005,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &266 + schema: &268 title: Validation Error Simple description: Validation Error Simple type: object @@ -1038,7 +1038,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: - - &790 + - &792 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3682,7 +3682,7 @@ paths: GitHub. type: object nullable: true - properties: &224 + properties: &226 id: description: Unique identifier of the GitHub app example: 37 @@ -3815,7 +3815,7 @@ paths: about itself. example: 5 type: integer - required: &225 + required: &227 - id - node_id - owner @@ -4120,7 +4120,7 @@ paths: schema: type: integer default: 30 - - &374 + - &376 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 @@ -4129,7 +4129,7 @@ paths: required: false schema: type: string - - &375 + - &377 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4149,7 +4149,7 @@ paths: application/json: schema: type: array - items: &376 + items: &378 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4229,7 +4229,7 @@ paths: - installation_id - repository_id examples: - default: &377 + default: &379 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4261,7 +4261,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &799 + schema: &801 title: Scim Error description: Scim Error type: object @@ -4288,7 +4288,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &265 + schema: &267 title: Validation Error description: Validation Error type: object @@ -4357,7 +4357,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &380 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4471,7 +4471,7 @@ paths: - request - response examples: - default: &379 + default: &381 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4672,7 +4672,7 @@ paths: parameters: - *17 - *19 - - &236 + - &238 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) @@ -5482,7 +5482,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &448 + properties: &450 id: description: Unique identifier of the repository example: 42 @@ -5502,7 +5502,7 @@ paths: title: License Simple description: License Simple type: object - properties: &232 + properties: &234 key: type: string example: mit @@ -5524,7 +5524,7 @@ paths: html_url: type: string format: uri - required: &233 + required: &235 - key - name - url @@ -5933,7 +5933,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &449 + required: &451 - archive_url - assignees_url - blobs_url @@ -10249,7 +10249,7 @@ paths: description: Response content: application/json: - schema: &267 + schema: &269 type: object properties: total_active_caches_count: @@ -10264,7 +10264,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &268 + default: &270 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10457,7 +10457,7 @@ paths: - public_ip_enabled - platform examples: - default: &269 + default: &271 value: total_count: 2 runners: @@ -10752,7 +10752,7 @@ paths: application/json: schema: *49 examples: - default: &270 + default: &272 value: id: 1 platform: linux-x64 @@ -10892,7 +10892,7 @@ paths: application/json: schema: *52 examples: - default: &271 + default: &273 value: version: 1.0.0 size_gb: 75 @@ -11056,7 +11056,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &274 type: object properties: public_ips: @@ -11081,7 +11081,7 @@ paths: required: - public_ips examples: - default: &273 + default: &275 value: public_ips: current_usage: 17 @@ -11121,7 +11121,7 @@ paths: type: array items: *56 examples: - default: &274 + default: &276 value: id: 4-core cpu_cores: 4 @@ -11436,7 +11436,7 @@ paths: required: true content: application/json: - schema: &275 + schema: &277 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11547,7 +11547,7 @@ paths: - all - local_only - selected - selected_actions_url: &277 + selected_actions_url: &279 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` @@ -11627,7 +11627,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &279 + schema: &281 type: object properties: days: @@ -11645,7 +11645,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &800 + '401': &802 description: Authorization failure '404': *6 x-github: @@ -11673,7 +11673,7 @@ paths: required: true content: application/json: - schema: &280 + schema: &282 type: object properties: days: @@ -11722,7 +11722,7 @@ paths: required: - approval_policy examples: - default: &281 + default: &283 value: approval_policy: first_time_contributors '404': *6 @@ -11780,7 +11780,7 @@ paths: description: Response content: application/json: - schema: &282 + schema: &284 type: object required: - run_workflows_from_fork_pull_requests @@ -11834,7 +11834,7 @@ paths: required: true content: application/json: - schema: &283 + schema: &285 type: object required: - run_workflows_from_fork_pull_requests @@ -12257,7 +12257,7 @@ paths: description: Success response content: application/json: - schema: &286 + schema: &288 type: object properties: default_workflow_permissions: &69 @@ -12305,7 +12305,7 @@ paths: required: true content: application/json: - schema: &287 + schema: &289 type: object properties: default_workflow_permissions: *69 @@ -13150,7 +13150,7 @@ paths: application/json: schema: type: array - items: &291 + items: &293 title: Runner Application description: Runner Application type: object @@ -13175,7 +13175,7 @@ paths: - download_url - filename examples: - default: &292 + default: &294 value: - os: osx architecture: x64 @@ -13259,7 +13259,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &293 + '201': &295 description: Response content: application/json: @@ -13374,7 +13374,7 @@ paths: - token - expires_at examples: - default: &294 + default: &296 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13414,7 +13414,7 @@ paths: application/json: schema: *81 examples: - default: &295 + default: &297 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13446,7 +13446,7 @@ paths: application/json: schema: *78 examples: - default: &296 + default: &298 value: id: 23 name: MBP @@ -13663,7 +13663,7 @@ paths: - *41 - *77 responses: - '200': &297 + '200': &299 description: Response content: application/json: @@ -13719,7 +13719,7 @@ paths: parameters: - *41 - *77 - - &298 + - &300 name: name description: The name of a self-hosted runner's custom label. in: path @@ -13810,7 +13810,7 @@ paths: required: true content: application/json: - schema: &312 + schema: &314 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14451,7 +14451,7 @@ paths: required: false schema: type: string - - &315 + - &317 name: include description: |- The event types to include: @@ -14469,7 +14469,7 @@ paths: - web - git - all - - &316 + - &318 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. @@ -14477,7 +14477,7 @@ paths: required: false schema: type: string - - &317 + - &319 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. @@ -14485,7 +14485,7 @@ paths: required: false schema: type: string - - &318 + - &320 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -14507,7 +14507,7 @@ paths: application/json: schema: type: array - items: &319 + items: &321 type: object properties: "@timestamp": @@ -14629,7 +14629,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &320 + default: &322 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15295,7 +15295,7 @@ paths: application/json: schema: type: array - items: &321 + items: &323 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15456,7 +15456,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &322 + default: &324 value: - id: 21 number: 42 @@ -15561,7 +15561,7 @@ paths: application/json: schema: type: array - items: &324 + items: &326 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -15686,7 +15686,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &325 + default: &327 value: - id: 21 number: 42 @@ -15771,7 +15771,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &330 + - &332 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`, @@ -15781,7 +15781,7 @@ paths: schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &331 + - &333 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 @@ -15804,7 +15804,7 @@ paths: be returned. in: query required: false - schema: &332 + schema: &334 type: string description: State of a code scanning alert. enum: @@ -15837,7 +15837,7 @@ paths: application/json: schema: type: array - items: &333 + items: &335 type: object properties: number: &131 @@ -15866,7 +15866,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &565 + instances_url: &567 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -15901,7 +15901,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &566 + dismissed_reason: &568 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -15910,13 +15910,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &567 + dismissed_comment: &569 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &568 + rule: &570 type: object properties: id: @@ -15969,7 +15969,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &569 + tool: &571 type: object properties: name: *113 @@ -15979,26 +15979,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *114 - most_recent_instance: &570 + most_recent_instance: &572 type: object properties: - ref: &563 + ref: &565 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &580 + analysis_key: &582 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &581 + environment: &583 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &582 + category: &584 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16018,7 +16018,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &583 + location: &585 type: object description: Describe a region within a file for the alert. properties: @@ -16039,7 +16039,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &584 + items: &586 type: string description: A classification of the file. For example to identify it as generated. @@ -16352,7 +16352,7 @@ paths: - most_recent_instance - repository examples: - default: &334 + default: &336 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17235,7 +17235,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &338 type: array description: A list of default code security configurations items: @@ -17251,7 +17251,7 @@ paths: default configuration: *116 examples: - default: &337 + default: &339 value: - default_for_new_repos: public configuration: @@ -17709,7 +17709,7 @@ paths: default: value: default_for_new_repos: all - configuration: &335 + configuration: &337 value: id: 1325 target_type: organization @@ -17799,7 +17799,7 @@ paths: application/json: schema: type: array - items: &338 + items: &340 type: object description: Repositories associated with a code security configuration and attachment status @@ -17823,7 +17823,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &339 + repository: &341 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18312,7 +18312,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &326 + - &328 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18387,7 +18387,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &414 + properties: &416 id: description: Unique identifier of the team type: integer @@ -18459,7 +18459,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &415 + required: &417 - id - node_id - url @@ -19140,7 +19140,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &346 + '413': &348 description: Payload Too Large content: application/json: @@ -19563,7 +19563,7 @@ paths: application/json: schema: type: array - items: &213 + items: &215 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -19870,7 +19870,7 @@ paths: - date additionalProperties: true examples: - default: &214 + default: &216 value: - date: '2024-06-24' total_active_users: 24 @@ -19972,7 +19972,7 @@ paths: '500': *40 '403': *29 '404': *6 - '422': &215 + '422': &217 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -20040,8 +20040,8 @@ paths: default: &127 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_day: '2025-07-01' '500': *40 '403': *29 @@ -20106,8 +20106,8 @@ paths: default: &129 value: download_links: - - https://example.com/copilot-usage-report-1.json - - https://example.com/copilot-usage-report-2.json + - https://example.com/copilot-usage-report-1.ndjson + - https://example.com/copilot-usage-report-2.ndjson report_start_day: '2025-07-01' report_end_day: '2025-07-28' '500': *40 @@ -20544,7 +20544,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &351 + - &353 name: classification in: query description: |- @@ -20553,7 +20553,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &352 + - &354 name: state in: query description: |- @@ -20562,7 +20562,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &353 + - &355 name: severity in: query description: |- @@ -20571,7 +20571,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &354 + - &356 name: ecosystem in: query description: |- @@ -20580,14 +20580,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &355 + - &357 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 - - &356 + - &358 name: epss_percentage in: query description: |- @@ -20599,7 +20599,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &627 + - &629 name: has in: query description: |- @@ -20613,7 +20613,7 @@ paths: type: string enum: - patch - - &357 + - &359 name: assignee in: query description: |- @@ -20622,7 +20622,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &358 + - &360 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20632,7 +20632,7 @@ paths: enum: - development - runtime - - &359 + - &361 name: sort in: query description: |- @@ -20658,7 +20658,7 @@ paths: application/json: schema: type: array - items: &360 + items: &362 type: object description: A Dependabot alert. properties: @@ -20722,7 +20722,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &628 + security_advisory: &630 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -20961,14 +20961,14 @@ paths: nullable: true maxLength: 280 fixed_at: *141 - auto_dismissed_at: &629 + auto_dismissed_at: &631 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &630 + dismissal_request: &632 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21030,7 +21030,7 @@ paths: - repository additionalProperties: false examples: - default: &361 + default: &363 value: - number: 2 state: dismissed @@ -21415,7 +21415,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &364 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21441,7 +21441,7 @@ paths: nullable: true additionalProperties: false examples: - default: &363 + default: &365 value: default_level: public accessible_repositories: @@ -21663,7 +21663,7 @@ paths: - *105 - *106 - *107 - - &365 + - &367 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21689,7 +21689,7 @@ paths: application/json: schema: type: array - items: &367 + items: &369 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -21810,7 +21810,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &368 + default: &370 value: - id: 21 number: 42 @@ -22341,7 +22341,7 @@ paths: type: array items: *150 examples: - default: &216 + default: &218 value: - id: 1 name: Justice League @@ -22504,7 +22504,7 @@ paths: application/json: schema: *22 examples: - default: &391 + default: &393 value: id: 1 account: @@ -22758,7 +22758,7 @@ paths: - name - created_on examples: - default: &480 + default: &482 value: total_count: 2 network_configurations: @@ -23009,7 +23009,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &481 + - &483 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23021,7 +23021,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &484 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23055,7 +23055,7 @@ paths: - subnet_id - region examples: - default: &483 + default: &485 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -23874,7 +23874,7 @@ paths: required: true content: application/json: - schema: &447 + schema: &449 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25068,7 +25068,7 @@ paths: nullable: true anyOf: - *166 - - &453 + - &455 title: Organization ruleset conditions type: object description: |- @@ -25115,7 +25115,7 @@ paths: - *169 rules: type: array - items: &755 + items: &757 title: Repository Rule type: object description: A repository rule. @@ -25124,7 +25124,7 @@ paths: - *175 - *176 - *177 - - &753 + - &755 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25452,7 +25452,7 @@ paths: type: string format: date-time examples: - default: &456 + default: &458 value: - version_id: 3 actor: @@ -25505,7 +25505,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 allOf: - *199 - type: object @@ -25560,7 +25560,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &458 + - &460 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -25571,7 +25571,7 @@ paths: enum: - open - resolved - - &459 + - &461 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -25581,7 +25581,7 @@ paths: required: false schema: type: string - - &460 + - &462 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -25592,7 +25592,7 @@ paths: required: false schema: type: string - - &461 + - &463 name: exclude_providers in: query description: |- @@ -25603,7 +25603,7 @@ paths: required: false schema: type: string - - &462 + - &464 name: providers in: query description: |- @@ -25614,7 +25614,7 @@ paths: required: false schema: type: string - - &463 + - &465 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -25623,7 +25623,7 @@ paths: required: false schema: type: string - - &464 + - &466 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -25642,7 +25642,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &465 + - &467 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. @@ -25658,7 +25658,7 @@ paths: - *17 - *110 - *111 - - &466 + - &468 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -25667,7 +25667,7 @@ paths: required: false schema: type: string - - &467 + - &469 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -25676,7 +25676,7 @@ paths: schema: type: boolean default: false - - &468 + - &470 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -25685,7 +25685,7 @@ paths: schema: type: boolean default: false - - &469 + - &471 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -25694,7 +25694,7 @@ paths: schema: type: boolean default: false - - &470 + - &472 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -25712,7 +25712,7 @@ paths: application/json: schema: type: array - items: &471 + items: &473 type: object properties: number: *131 @@ -25731,14 +25731,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &768 + state: &770 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: &769 + resolution: &771 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -25855,8 +25855,8 @@ paths: pull request. ' - oneOf: &770 - - &772 + oneOf: &772 + - &774 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -25914,7 +25914,7 @@ paths: - blob_url - commit_sha - commit_url - - &773 + - &775 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -25969,7 +25969,7 @@ paths: - page_url - commit_sha - commit_url - - &774 + - &776 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -25989,7 +25989,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &775 + - &777 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26009,7 +26009,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &776 + - &778 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26029,7 +26029,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &777 + - &779 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26043,7 +26043,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &778 + - &780 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26057,7 +26057,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &779 + - &781 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26071,7 +26071,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &780 + - &782 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -26091,7 +26091,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &781 + - &783 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -26111,7 +26111,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &782 + - &784 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -26131,7 +26131,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &783 + - &785 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -26151,7 +26151,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &784 + - &786 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26199,7 +26199,7 @@ paths: required: *21 nullable: true examples: - default: &472 + default: &474 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -26408,7 +26408,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &475 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -26491,7 +26491,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *201 examples: - default: &474 + default: &476 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -26627,7 +26627,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &477 + - &479 name: advanced_security_product in: query description: | @@ -26647,7 +26647,7 @@ paths: description: Success content: application/json: - schema: &478 + schema: &480 type: object properties: total_advanced_security_committers: @@ -26702,7 +26702,7 @@ paths: required: - repositories examples: - default: &479 + default: &481 value: total_advanced_security_committers: 2 total_count: 2 @@ -26729,6 +26729,215 @@ paths: enabledForGitHubApps: false category: enterprise-admin subcategory: licensing + "/enterprises/{enterprise}/settings/billing/ai_credit/usage": + get: + summary: Get billing AI credit usage report for an enterprise + description: |- + Gets a report of AI credit usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise. + + **Note:** Only data from the past 24 months is accessible via this endpoint. + tags: + - billing + operationId: billing/get-github-billing-ai-credit-usage-report-ghe + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-enterprise + parameters: + - *41 + - &206 + 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, + `2025`. Default value is the current year. + in: query + required: false + schema: + type: integer + - &207 + name: month + description: If specified, only return results for a single month. The value + of `month` is an integer between `1` and `12`. Default value is the current + month. If no year is specified the default `year` is used. + in: query + required: false + schema: + type: integer + - &208 + name: day + description: If specified, only return results for a single day. The value + of `day` is an integer between `1` and `31`. If no `year` or `month` is + specified, the default `year` and `month` are used. + in: query + required: false + schema: + type: integer + - &209 + name: organization + description: The organization name to query usage for. The name is not case + sensitive. + in: query + required: false + schema: + type: string + - &210 + name: user + description: The user name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &211 + name: model + description: The model name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - &212 + name: product + description: The product name to query usage for. The name is not case sensitive. + in: query + required: false + schema: + type: string + - name: cost_center_id + description: The ID corresponding to a cost center. An ID of 'none' will target + usage not associated to any cost center. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response when getting a billing AI credit usage report + content: + application/json: + schema: + type: object + properties: + timePeriod: + type: object + properties: + year: + type: integer + description: The year for the usage report. + month: + type: integer + description: The month for the usage report. + day: + type: integer + description: The day for the usage report. + required: + - year + enterprise: + type: string + description: The name of the enterprise for the usage report. + user: + type: string + description: The name of the user for the usage report. + organization: + type: string + description: The name of the organization for the usage report. + product: + type: string + description: The product for the usage report. + model: + type: string + description: The model for the usage report. + costCenter: + type: object + properties: + id: + type: string + description: The unique identifier of the cost center. + name: + type: string + description: The name of the cost center. + required: + - id + - name + usageItems: + type: array + items: + type: object + properties: + product: + type: string + description: Product name. + sku: + type: string + description: SKU name. + model: + type: string + description: Model name. + unitType: + type: string + description: Unit type of the usage line item. + pricePerUnit: + type: number + description: Price per unit of the usage line item. + grossQuantity: + type: number + description: Gross quantity of the usage line item. + grossAmount: + type: number + description: Gross amount of the usage line item. + discountQuantity: + type: number + description: Discount quantity of the usage line item. + discountAmount: + type: number + description: Discount amount of the usage line item. + netQuantity: + type: number + description: Net quantity of the usage line item. + netAmount: + type: number + description: Net amount of the usage line item. + required: + - product + - sku + - model + - unitType + - pricePerUnit + - grossQuantity + - grossAmount + - discountQuantity + - discountAmount + - netQuantity + - netAmount + required: + - timePeriod + - enterprise + - usageItems + examples: + default: + value: + timePeriod: + year: 2025 + enterprise: GitHub + usageItems: + - product: Copilot + sku: Copilot AI Credits + model: GPT-5 + unitType: credits + pricePerUnit: 0.01 + grossQuantity: 100 + grossAmount: 1.0 + discountQuantity: 0 + discountAmount: 0.0 + netQuantity: 100 + netAmount: 1.0 + '400': *14 + '403': *29 + '404': *6 + '500': *40 + '503': *200 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: billing + subcategory: usage "/enterprises/{enterprise}/settings/billing/budgets": get: summary: Get all budgets @@ -28109,60 +28318,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *41 - - &208 - 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, - `2025`. Default value is the current year. - in: query - required: false - schema: - type: integer - - &210 - name: month - description: If specified, only return results for a single month. The value - of `month` is an integer between `1` and `12`. Default value is the current - month. If no year is specified the default `year` is used. - in: query - required: false - schema: - type: integer - - &209 - name: day - description: If specified, only return results for a single day. The value - of `day` is an integer between `1` and `31`. If no `year` or `month` is - specified, the default `year` and `month` are used. - in: query - required: false - schema: - type: integer - - &211 - name: organization - description: The organization name to query usage for. The name is not case - sensitive. - in: query - required: false - schema: - type: string - - name: user - description: The user name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - name: model - description: The model name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string - - &212 - name: product - description: The product name to query usage for. The name is not case sensitive. - in: query - required: false - schema: - type: string + - *206 + - *207 + - *208 + - *209 + - *210 + - *211 + - *212 - name: cost_center_id description: The ID corresponding to a cost center. An ID of 'none' will target usage not associated to any cost center. @@ -28328,7 +28490,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &206 + items: &213 type: object properties: id: @@ -28486,9 +28648,9 @@ paths: description: Report export request accepted content: application/json: - schema: *206 + schema: *213 examples: - usage-report-export: &207 + usage-report-export: &214 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -28538,9 +28700,9 @@ paths: description: Usage report export details content: application/json: - schema: *206 + schema: *213 examples: - usage-report-export: *207 + usage-report-export: *214 '401': *25 '403': *29 '404': *6 @@ -28566,7 +28728,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *41 - - *208 + - *206 - name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -28575,7 +28737,7 @@ paths: required: false schema: type: integer - - *209 + - *208 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -28682,10 +28844,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *41 + - *206 + - *207 - *208 - - *210 - *209 - - *211 - name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -28891,13 +29053,13 @@ paths: application/json: schema: type: array - items: *213 + items: *215 examples: - default: *214 + default: *216 '500': *40 '403': *29 '404': *6 - '422': *215 + '422': *217 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -28926,7 +29088,7 @@ paths: type: array items: *150 examples: - default: *216 + default: *218 headers: Link: *47 '403': *29 @@ -29015,7 +29177,7 @@ paths: application/json: schema: *150 examples: - default: &221 + default: &223 value: id: 1 name: Justice League @@ -29044,7 +29206,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *41 - - &217 + - &219 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -29063,7 +29225,7 @@ paths: type: array items: *4 examples: - default: &218 + default: &220 value: - login: octocat id: 1 @@ -29102,7 +29264,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *41 - - *217 + - *219 requestBody: required: true content: @@ -29133,7 +29295,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29151,7 +29313,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *41 - - *217 + - *219 requestBody: required: true content: @@ -29182,7 +29344,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29200,7 +29362,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *41 - - *217 + - *219 - *148 responses: '200': @@ -29209,7 +29371,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &219 + exampleKey1: &221 value: login: octocat id: 1 @@ -29245,7 +29407,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *41 - - *217 + - *219 - *148 responses: '201': @@ -29254,7 +29416,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *219 + exampleKey1: *221 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29272,7 +29434,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *41 - - *217 + - *219 - *148 responses: '204': @@ -29295,7 +29457,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *41 - - *217 + - *219 - *17 - *19 responses: @@ -29307,7 +29469,7 @@ paths: type: array items: *75 examples: - default: &220 + default: &222 value: login: github id: 1 @@ -29338,7 +29500,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *41 - - *217 + - *219 requestBody: required: true content: @@ -29368,7 +29530,7 @@ paths: type: array items: *75 examples: - default: &260 + default: &262 value: - login: github id: 1 @@ -29399,7 +29561,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *41 - - *217 + - *219 requestBody: required: true content: @@ -29440,7 +29602,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *41 - - *217 + - *219 - *89 responses: '200': @@ -29449,7 +29611,7 @@ paths: application/json: schema: *75 examples: - default: *220 + default: *222 '404': description: The team is not assigned to the organization x-github: @@ -29468,7 +29630,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *41 - - *217 + - *219 - *89 responses: '201': @@ -29477,7 +29639,7 @@ paths: application/json: schema: *75 examples: - default: *220 + default: *222 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29494,7 +29656,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *41 - - *217 + - *219 - *89 responses: '204': @@ -29519,7 +29681,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *41 - - &222 + - &224 name: team_slug description: The slug of the team name. in: path @@ -29533,7 +29695,7 @@ paths: application/json: schema: *150 examples: - default: *221 + default: *223 headers: Link: *47 '403': *29 @@ -29553,7 +29715,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *41 - - *222 + - *224 requestBody: required: true content: @@ -29620,7 +29782,7 @@ paths: application/json: schema: *150 examples: - default: *221 + default: *223 headers: Link: *47 '403': *29 @@ -29643,7 +29805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *41 - - *222 + - *224 responses: '204': description: Response @@ -29742,7 +29904,7 @@ paths: application/json: schema: type: array - items: &255 + items: &257 title: Event description: Event type: object @@ -29752,7 +29914,7 @@ paths: type: type: string nullable: true - actor: &223 + actor: &225 title: Actor description: Actor type: object @@ -29792,7 +29954,7 @@ paths: - id - name - url - org: *223 + org: *225 payload: oneOf: - title: CreateEvent @@ -29838,7 +30000,7 @@ paths: properties: action: type: string - discussion: &908 + discussion: &910 title: Discussion description: A Discussion in a repository. type: object @@ -30125,7 +30287,7 @@ paths: - id labels: type: array - items: &228 + items: &230 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -30200,12 +30362,12 @@ paths: properties: action: type: string - issue: &229 + issue: &231 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &687 + properties: &689 id: type: integer format: int64 @@ -30318,7 +30480,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &436 + properties: &438 url: type: string format: uri @@ -30388,7 +30550,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &437 + required: &439 - closed_issues - creator - description @@ -30467,7 +30629,7 @@ paths: timeline_url: type: string format: uri - type: &401 + type: &403 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -30530,9 +30692,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *224 - required: *225 - author_association: &226 + properties: *226 + required: *227 + author_association: &228 title: author_association type: string example: OWNER @@ -30547,7 +30709,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &227 + reactions: &229 title: Reaction Rollup type: object properties: @@ -30583,7 +30745,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &827 + sub_issues_summary: &829 title: Sub-issues Summary type: object properties: @@ -30608,7 +30770,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &230 + properties: &232 id: description: Unique identifier of the issue comment example: 42 @@ -30651,7 +30813,7 @@ paths: issue_url: type: string format: uri - author_association: *226 + author_association: *228 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -30662,15 +30824,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 - reactions: *227 + properties: *226 + required: *227 + reactions: *229 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &710 + properties: &712 pinned_at: type: string format: date-time @@ -30682,11 +30844,11 @@ paths: properties: *20 required: *21 nullable: true - required: &711 + required: &713 - pinned_at - pinned_by nullable: true - required: &231 + required: &233 - id - node_id - html_url @@ -30696,7 +30858,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &828 + issue_dependencies_summary: &830 title: Issue Dependencies Summary type: object properties: @@ -30715,7 +30877,7 @@ paths: - total_blocking issue_field_values: type: array - items: &694 + items: &696 title: Issue Field Value description: A value assigned to an issue field type: object @@ -30776,7 +30938,7 @@ paths: - node_id - data_type - value - required: &688 + required: &690 - assignee - closed_at - comments @@ -30801,10 +30963,10 @@ paths: assignees: type: array items: *4 - label: *228 + label: *230 labels: type: array - items: *228 + items: *230 required: - action - issue @@ -30813,14 +30975,14 @@ paths: properties: action: type: string - issue: *229 - comment: &683 + issue: *231 + comment: &685 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 required: - action - issue @@ -30993,8 +31155,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true allow_forking: type: boolean @@ -31083,7 +31245,7 @@ paths: type: string number: type: integer - pull_request: &234 + pull_request: &236 title: Pull Request Minimal type: object properties: @@ -31154,10 +31316,10 @@ paths: assignees: type: array items: *4 - label: *228 + label: *230 labels: type: array - items: *228 + items: *230 required: - action - number @@ -31167,7 +31329,7 @@ paths: properties: action: type: string - pull_request: *234 + pull_request: *236 comment: type: object properties: @@ -31418,7 +31580,7 @@ paths: - pull_request updated_at: type: string - pull_request: *234 + pull_request: *236 required: - action - review @@ -31467,7 +31629,7 @@ paths: updated_at: type: string format: date-time - reactions: *227 + reactions: *229 required: - action - comment @@ -31478,7 +31640,7 @@ paths: type: string release: allOf: - - &746 + - &748 title: Release description: A release. type: object @@ -31549,7 +31711,7 @@ paths: author: *4 assets: type: array - items: &747 + items: &749 title: Release Asset description: Data related to a release. type: object @@ -31624,7 +31786,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *227 + reactions: *229 required: - assets_url - upload_url @@ -31797,7 +31959,7 @@ paths: _links: type: object properties: - timeline: &235 + timeline: &237 title: Link With Type description: Hypermedia Link with Type type: object @@ -31809,17 +31971,17 @@ paths: required: - href - type - user: *235 - security_advisories: *235 - current_user: *235 - current_user_public: *235 - current_user_actor: *235 - current_user_organization: *235 + user: *237 + security_advisories: *237 + current_user: *237 + current_user_public: *237 + current_user_actor: *237 + current_user_organization: *237 current_user_organizations: type: array - items: *235 - repository_discussions: *235 - repository_discussions_category: *235 + items: *237 + repository_discussions: *237 + repository_discussions_category: *237 required: - timeline - user @@ -31881,7 +32043,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *236 + - *238 - *17 - *19 responses: @@ -31891,7 +32053,7 @@ paths: application/json: schema: type: array - items: &237 + items: &239 title: Base Gist description: Base Gist type: object @@ -31990,7 +32152,7 @@ paths: - created_at - updated_at examples: - default: &238 + default: &240 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -32111,7 +32273,7 @@ paths: description: Response content: application/json: - schema: &239 + schema: &241 title: Gist Simple description: Gist Simple type: object @@ -32128,7 +32290,7 @@ paths: url: type: string format: uri - user: &834 + user: &836 title: Public User description: Public User type: object @@ -32490,7 +32652,7 @@ paths: truncated: type: boolean examples: - default: &240 + default: &242 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -32594,7 +32756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *236 + - *238 - *17 - *19 responses: @@ -32604,9 +32766,9 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: Link: *47 '422': *15 @@ -32628,7 +32790,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *236 + - *238 - *17 - *19 responses: @@ -32638,9 +32800,9 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: Link: *47 '401': *25 @@ -32667,7 +32829,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &241 + - &243 name: gist_id description: The unique identifier of the gist. in: path @@ -32679,10 +32841,10 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 - '403': &244 + default: *242 + '403': &246 description: Forbidden Gist content: application/json: @@ -32729,7 +32891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *241 + - *243 requestBody: required: true content: @@ -32789,9 +32951,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - updateGist: *240 + updateGist: *242 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -32949,7 +33111,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *241 + - *243 responses: '204': description: Response @@ -32977,7 +33139,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *241 + - *243 - *17 - *19 responses: @@ -32987,7 +33149,7 @@ paths: application/json: schema: type: array - items: &242 + items: &244 title: Gist Comment description: A comment made to a gist. type: object @@ -33022,7 +33184,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *226 + author_association: *228 required: - url - id @@ -33086,7 +33248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *241 + - *243 requestBody: required: true content: @@ -33111,9 +33273,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: &243 + default: &245 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -33170,8 +33332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *241 - - &245 + - *243 + - &247 name: comment_id description: The unique identifier of the comment. in: path @@ -33184,12 +33346,12 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *243 + default: *245 '304': *37 '404': *6 - '403': *244 + '403': *246 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -33210,8 +33372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *241 - - *245 + - *243 + - *247 requestBody: required: true content: @@ -33236,9 +33398,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *243 + default: *245 '404': *6 x-github: githubCloudOnly: false @@ -33255,8 +33417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *241 - - *245 + - *243 + - *247 responses: '204': description: Response @@ -33279,7 +33441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *241 + - *243 - *17 - *19 responses: @@ -33380,7 +33542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *241 + - *243 - *17 - *19 responses: @@ -33390,7 +33552,7 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: default: value: @@ -33455,13 +33617,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *241 + - *243 responses: '201': description: Response content: application/json: - schema: *237 + schema: *239 examples: default: value: @@ -33532,7 +33694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *241 + - *243 responses: '204': description: Response if gist is starred @@ -33562,7 +33724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *241 + - *243 responses: '204': description: Response @@ -33584,7 +33746,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *241 + - *243 responses: '204': description: Response @@ -33612,7 +33774,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *241 + - *243 - name: sha in: path required: true @@ -33623,9 +33785,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 '422': *15 '404': *6 '403': *29 @@ -34005,7 +34167,7 @@ paths: - closed - all default: open - - &404 + - &406 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -34024,7 +34186,7 @@ paths: - comments default: created - *112 - - *236 + - *238 - name: collab in: query required: false @@ -34054,9 +34216,9 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: &405 + default: &407 value: - id: 1 node_id: MDU6SXNzdWUx @@ -34340,8 +34502,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 examples: default: value: @@ -34626,7 +34788,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &246 + X-CommonMarker-Version: &248 example: 0.17.4 schema: type: string @@ -34681,7 +34843,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *246 + X-CommonMarker-Version: *248 content: text/html: schema: @@ -34710,7 +34872,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: - - &249 + - &251 name: account_id description: account_id parameter in: path @@ -34722,7 +34884,7 @@ paths: description: Response content: application/json: - schema: &248 + schema: &250 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -34752,7 +34914,7 @@ paths: nullable: true id: type: integer - plan: &247 + plan: &249 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -34841,7 +35003,7 @@ paths: nullable: true updated_at: type: string - plan: *247 + plan: *249 required: - url - id @@ -34849,7 +35011,7 @@ paths: - login - marketplace_purchase examples: - default: &250 + default: &252 value: url: https://api.github.com/orgs/github type: Organization @@ -34934,9 +35096,9 @@ paths: application/json: schema: type: array - items: *247 + items: *249 examples: - default: &251 + default: &253 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -34976,14 +35138,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &252 + - &254 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &253 + - &255 name: sort description: The property to sort the results by. in: query @@ -35013,9 +35175,9 @@ paths: application/json: schema: type: array - items: *248 + items: *250 examples: - default: &254 + default: &256 value: - url: https://api.github.com/orgs/github type: Organization @@ -35089,15 +35251,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: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *250 + default: *252 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -35129,9 +35291,9 @@ paths: application/json: schema: type: array - items: *247 + items: *249 examples: - default: *251 + default: *253 headers: Link: *47 '401': *25 @@ -35154,8 +35316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *252 - - *253 + - *254 + - *255 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -35175,9 +35337,9 @@ paths: application/json: schema: type: array - items: *248 + items: *250 examples: - default: *254 + default: *256 headers: Link: *47 '401': *25 @@ -35441,14 +35603,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: - - &492 + - &494 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &493 + - &495 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -35465,7 +35627,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -35510,7 +35672,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &498 + '301': &500 description: Moved permanently content: application/json: @@ -35532,7 +35694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &720 + - &722 name: all description: If `true`, show notifications marked as read. in: query @@ -35540,7 +35702,7 @@ paths: schema: type: boolean default: false - - &721 + - &723 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -35549,8 +35711,8 @@ paths: schema: type: boolean default: false - - *236 - - &722 + - *238 + - &724 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: @@ -35575,18 +35737,18 @@ paths: application/json: schema: type: array - items: &256 + items: &258 title: Thread description: Thread type: object properties: id: type: string - repository: &290 + repository: &292 title: Minimal Repository description: Minimal Repository type: object - properties: &369 + properties: &371 id: type: integer format: int64 @@ -35872,7 +36034,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &450 + security_and_analysis: &452 nullable: true type: object properties: @@ -36000,7 +36162,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &370 + required: &372 - archive_url - assignees_url - blobs_url @@ -36088,7 +36250,7 @@ paths: - url - subscription_url examples: - default: &723 + default: &725 value: - id: '1' repository: @@ -36254,7 +36416,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &257 + - &259 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 @@ -36268,7 +36430,7 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: default: value: @@ -36371,7 +36533,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *257 + - *259 responses: '205': description: Reset Content @@ -36394,7 +36556,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *257 + - *259 responses: '204': description: No content @@ -36417,13 +36579,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: - - *257 + - *259 responses: '200': description: Response content: application/json: - schema: &258 + schema: &260 title: Thread Subscription description: Thread Subscription type: object @@ -36460,7 +36622,7 @@ paths: - url - subscribed examples: - default: &259 + default: &261 value: subscribed: true ignored: false @@ -36491,7 +36653,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *257 + - *259 requestBody: required: false content: @@ -36512,9 +36674,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *260 examples: - default: *259 + default: *261 '304': *37 '403': *29 '401': *25 @@ -36537,7 +36699,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *257 + - *259 responses: '204': description: Response @@ -36634,7 +36796,7 @@ paths: type: array items: *75 examples: - default: *260 + default: *262 headers: Link: example: ; rel="next" @@ -36685,7 +36847,7 @@ paths: type: integer custom_roles: type: array - items: &347 + items: &349 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -36733,7 +36895,7 @@ paths: - created_at - updated_at examples: - default: &348 + default: &350 value: id: 8030 name: Security Engineer @@ -36786,7 +36948,7 @@ paths: description: Response content: application/json: - schema: &261 + schema: &263 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -36824,7 +36986,7 @@ paths: required: true content: application/json: - schema: *261 + schema: *263 examples: selected_actions: *44 responses: @@ -36859,7 +37021,7 @@ paths: description: Response content: application/json: - schema: &262 + schema: &264 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -36897,7 +37059,7 @@ paths: required: true content: application/json: - schema: *262 + schema: *264 examples: selected_actions: *46 responses: @@ -36940,7 +37102,7 @@ paths: type: array items: *160 examples: - default: &729 + default: &731 value: - property_name: environment value: production @@ -36990,7 +37152,7 @@ paths: required: - properties examples: - default: &730 + default: &732 value: properties: - property_name: environment @@ -37037,7 +37199,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &265 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -37370,7 +37532,7 @@ paths: - updated_at - archived_at examples: - default-response: &264 + default-response: &266 value: login: github id: 1 @@ -37695,17 +37857,17 @@ paths: description: Response content: application/json: - schema: *263 + schema: *265 examples: - default: *264 + default: *266 '422': description: Validation failed content: application/json: schema: oneOf: - - *265 - - *266 + - *267 + - *268 '409': *121 x-github: githubCloudOnly: false @@ -37760,9 +37922,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *269 examples: - default: *268 + default: *270 headers: Link: *47 x-github: @@ -37803,7 +37965,7 @@ paths: type: integer repository_cache_usages: type: array - items: &505 + items: &507 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -37878,7 +38040,7 @@ paths: type: array items: *48 examples: - default: *269 + default: *271 headers: Link: *47 x-github: @@ -38044,7 +38206,7 @@ paths: application/json: schema: *49 examples: - default: *270 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38136,7 +38298,7 @@ paths: application/json: schema: *52 examples: - default: *271 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38255,9 +38417,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *274 examples: - default: *273 + default: *275 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38293,7 +38455,7 @@ paths: type: array items: *56 examples: - default: *274 + default: *276 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38536,7 +38698,7 @@ paths: required: true content: application/json: - schema: *275 + schema: *277 examples: default: *60 responses: @@ -38629,7 +38791,7 @@ paths: required: - include_claim_keys examples: - default: &276 + default: &278 value: include_claim_keys: - repo @@ -38674,13 +38836,13 @@ paths: format. type: boolean examples: - default: *276 + default: *278 responses: '201': description: Empty response content: application/json: - schema: &301 + schema: &303 title: Empty Object description: An object without any properties. type: object @@ -38719,7 +38881,7 @@ paths: schema: type: object properties: - enabled_repositories: &278 + enabled_repositories: &280 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -38733,7 +38895,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *62 - selected_actions_url: *277 + selected_actions_url: *279 sha_pinning_required: *63 required: - enabled_repositories @@ -38775,7 +38937,7 @@ paths: schema: type: object properties: - enabled_repositories: *278 + enabled_repositories: *280 allowed_actions: *62 sha_pinning_required: *63 required: @@ -38811,7 +38973,7 @@ paths: description: Response content: application/json: - schema: *279 + schema: *281 examples: response: summary: Example response @@ -38842,7 +39004,7 @@ paths: required: true content: application/json: - schema: *280 + schema: *282 examples: application/json: value: @@ -38880,7 +39042,7 @@ paths: application/json: schema: *64 examples: - default: *281 + default: *283 '404': *6 x-github: enabledForGitHubApps: true @@ -38937,7 +39099,7 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: default: *65 '403': *29 @@ -38962,7 +39124,7 @@ paths: required: true content: application/json: - schema: *283 + schema: *285 examples: default: *65 responses: @@ -39014,7 +39176,7 @@ paths: type: array items: *80 examples: - default: &285 + default: &287 value: total_count: 1 repositories: @@ -39199,7 +39361,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - &284 + - &286 name: repository_id description: The unique identifier of the repository. in: path @@ -39228,7 +39390,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: Response @@ -39424,7 +39586,7 @@ paths: type: array items: *80 examples: - default: *285 + default: *287 '403': *29 '404': *6 x-github: @@ -39493,7 +39655,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: No content @@ -39520,7 +39682,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: No content @@ -39554,7 +39716,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: default: *71 x-github: @@ -39588,7 +39750,7 @@ paths: required: false content: application/json: - schema: *287 + schema: *289 examples: default: *71 x-github: @@ -39635,7 +39797,7 @@ paths: type: number runner_groups: type: array - items: &288 + items: &290 type: object properties: id: @@ -39823,9 +39985,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: &289 + default: &291 value: id: 2 name: octo-runner-group @@ -39867,7 +40029,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: default: value: @@ -39958,9 +40120,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -40024,7 +40186,7 @@ paths: type: array items: *48 examples: - default: *269 + default: *271 headers: Link: *47 x-github: @@ -40065,9 +40227,9 @@ paths: type: number repositories: type: array - items: *290 + items: *292 examples: - default: &345 + default: &347 value: total_count: 1 repositories: @@ -40366,7 +40528,7 @@ paths: parameters: - *89 - *74 - - *284 + - *286 responses: '204': description: Response @@ -40390,7 +40552,7 @@ paths: parameters: - *89 - *74 - - *284 + - *286 responses: '204': description: Response @@ -40608,9 +40770,9 @@ paths: application/json: schema: type: array - items: *291 + items: *293 examples: - default: *292 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40675,7 +40837,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *293 + '201': *295 '404': *6 '422': *7 '409': *121 @@ -40714,7 +40876,7 @@ paths: application/json: schema: *81 examples: - default: *294 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40750,7 +40912,7 @@ paths: application/json: schema: *81 examples: - default: *295 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40781,7 +40943,7 @@ paths: application/json: schema: *78 examples: - default: *296 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40956,7 +41118,7 @@ paths: - *89 - *77 responses: - '200': *297 + '200': *299 '404': *6 x-github: githubCloudOnly: false @@ -40985,7 +41147,7 @@ paths: parameters: - *89 - *77 - - *298 + - *300 responses: '200': *83 '404': *6 @@ -41030,7 +41192,7 @@ paths: type: integer secrets: type: array - items: &299 + items: &301 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -41062,7 +41224,7 @@ paths: - updated_at - visibility examples: - default: &305 + default: &307 value: total_count: 3 secrets: @@ -41109,7 +41271,7 @@ paths: description: Response content: application/json: - schema: &306 + schema: &308 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -41138,7 +41300,7 @@ paths: - key_id - key examples: - default: &307 + default: &309 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41164,7 +41326,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *89 - - &300 + - &302 name: secret_name description: The name of the secret. in: path @@ -41176,9 +41338,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: &308 + default: &310 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -41207,7 +41369,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -41264,7 +41426,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -41291,7 +41453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '204': description: Response @@ -41318,7 +41480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 - *19 - *17 responses: @@ -41336,9 +41498,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: &304 + default: &306 value: total_count: 1 repositories: @@ -41431,7 +41593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -41484,7 +41646,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -41518,7 +41680,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -41551,7 +41713,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *89 - - &309 + - &311 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)." @@ -41575,7 +41737,7 @@ paths: type: integer variables: type: array - items: &302 + items: &304 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -41618,7 +41780,7 @@ paths: - updated_at - visibility examples: - default: &310 + default: &312 value: total_count: 3 variables: @@ -41708,7 +41870,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -41734,7 +41896,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *89 - - &303 + - &305 name: name description: The name of the variable. in: path @@ -41746,9 +41908,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: &311 + default: &313 value: name: USERNAME value: octocat @@ -41777,7 +41939,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *89 - - *303 + - *305 requestBody: required: true content: @@ -41840,7 +42002,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *89 - - *303 + - *305 responses: '204': description: Response @@ -41867,7 +42029,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *303 + - *305 - *19 - *17 responses: @@ -41885,9 +42047,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 '409': description: Response when the visibility of the variable is not set to `selected` @@ -41914,7 +42076,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *303 + - *305 requestBody: required: true content: @@ -41964,7 +42126,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *303 + - *305 - name: repository_id in: path required: true @@ -41999,7 +42161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *303 + - *305 - name: repository_id in: path required: true @@ -42051,9 +42213,9 @@ paths: type: integer secrets: type: array - items: *299 + items: *301 examples: - default: *305 + default: *307 headers: Link: *47 x-github: @@ -42084,9 +42246,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: - default: *307 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42109,15 +42271,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '200': description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *308 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42140,7 +42302,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -42197,7 +42359,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -42224,7 +42386,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '204': description: Response @@ -42251,7 +42413,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 - *19 - *17 responses: @@ -42269,9 +42431,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42295,7 +42457,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -42348,7 +42510,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -42382,7 +42544,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -42416,7 +42578,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *89 - - *309 + - *311 - *19 responses: '200': @@ -42433,9 +42595,9 @@ paths: type: integer variables: type: array - items: *302 + items: *304 examples: - default: *310 + default: *312 headers: Link: *47 x-github: @@ -42506,7 +42668,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -42532,15 +42694,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *89 - - *303 + - *305 responses: '200': description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *311 + default: *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42562,7 +42724,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *89 - - *303 + - *305 requestBody: required: true content: @@ -42625,7 +42787,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *89 - - *303 + - *305 responses: '204': description: Response @@ -42652,7 +42814,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *303 + - *305 - *19 - *17 responses: @@ -42670,9 +42832,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 '409': description: Response when the visibility of the variable is not set to `selected` @@ -42699,7 +42861,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *303 + - *305 requestBody: required: true content: @@ -42749,7 +42911,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *303 + - *305 - name: repository_id in: path required: true @@ -42784,7 +42946,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *303 + - *305 - name: repository_id in: path required: true @@ -42842,7 +43004,7 @@ paths: required: true content: application/json: - schema: *312 + schema: *314 examples: default: *87 parameters: @@ -43026,7 +43188,7 @@ paths: type: integer deployment_records: type: array - items: &313 + items: &315 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -43072,7 +43234,7 @@ paths: required: - total_count examples: - default: &314 + default: &316 value: total_count: 1 deployment_records: @@ -43250,11 +43412,11 @@ paths: type: integer deployment_records: type: array - items: *313 + items: *315 required: - total_count examples: - default: *314 + default: *316 '403': description: Forbidden content: @@ -43493,9 +43655,9 @@ paths: type: integer deployment_records: type: array - items: *313 + items: *315 examples: - default: *314 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43624,12 +43786,12 @@ paths: required: - subject_digests examples: - default: &866 + default: &868 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &867 + withPredicateType: &869 value: subject_digests: - sha256:abc123 @@ -43687,7 +43849,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &868 + default: &870 value: attestations_subject_digests: - sha256:abc: @@ -44037,7 +44199,7 @@ paths: initiator: type: string examples: - default: &538 + default: &540 value: attestations: - bundle: @@ -44163,10 +44325,10 @@ paths: required: false schema: type: string - - *315 - - *316 - *317 - *318 + - *319 + - *320 - *17 responses: '200': @@ -44175,9 +44337,9 @@ paths: application/json: schema: type: array - items: *319 + items: *321 examples: - default: *320 + default: *322 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44206,7 +44368,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44300,7 +44462,7 @@ paths: subcategory: bypass-requests parameters: - *89 - - &323 + - &325 name: repository_name description: The name of the repository to filter on. in: query @@ -44319,9 +44481,9 @@ paths: application/json: schema: type: array - items: *321 + items: *323 examples: - default: *322 + default: *324 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -44345,7 +44507,7 @@ paths: subcategory: delegated-bypass parameters: - *89 - - *323 + - *325 - *105 - *106 - *107 @@ -44359,9 +44521,9 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: - default: *325 + default: *327 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -44388,7 +44550,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &327 + schema: &329 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -44414,7 +44576,7 @@ paths: application/json: schema: type: array - items: &328 + items: &330 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -44445,7 +44607,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *326 + items: *328 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -44463,7 +44625,7 @@ paths: type: string format: date-time nullable: true - state: *327 + state: *329 contact_link: description: The contact link of the campaign. type: string @@ -44683,9 +44845,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *330 examples: - default: &329 + default: &331 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -44768,9 +44930,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *330 examples: - default: *329 + default: *331 '404': *6 '422': description: Unprocessable Entity @@ -44847,7 +45009,7 @@ paths: type: string format: uri nullable: true - state: *327 + state: *329 examples: default: value: @@ -44857,9 +45019,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *330 examples: - default: *329 + default: *331 '400': description: Bad Request content: @@ -44926,8 +45088,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - *330 - - *331 + - *332 + - *333 - *110 - *111 - *19 @@ -44938,7 +45100,7 @@ paths: be returned. in: query required: false - schema: *332 + schema: *334 - name: sort description: The property by which to sort the results. in: query @@ -44954,7 +45116,7 @@ paths: be returned. in: query required: false - schema: &564 + schema: &566 type: string description: Severity of a code scanning alert. enum: @@ -44980,9 +45142,9 @@ paths: application/json: schema: type: array - items: *333 + items: *335 examples: - default: *334 + default: *336 headers: Link: *47 '404': *6 @@ -45358,7 +45520,7 @@ paths: application/json: schema: *116 examples: - default: *335 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45386,9 +45548,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *338 examples: - default: *337 + default: *339 '304': *37 '403': *29 '404': *6 @@ -45477,7 +45639,7 @@ paths: application/json: schema: *116 examples: - default: *335 + default: *337 '304': *37 '403': *29 '404': *6 @@ -45922,7 +46084,7 @@ paths: default: value: default_for_new_repos: all - configuration: *335 + configuration: *337 '403': *29 '404': *6 x-github: @@ -45975,13 +46137,13 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *339 + repository: *341 '403': *29 '404': *6 x-github: @@ -46021,7 +46183,7 @@ paths: type: integer codespaces: type: array - items: &406 + items: &408 type: object title: Codespace description: A codespace. @@ -46046,12 +46208,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *290 + repository: *292 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &596 + properties: &598 name: type: string description: The name of the machine. @@ -46093,7 +46255,7 @@ paths: - ready - in_progress nullable: true - required: &597 + required: &599 - name - display_name - operating_system @@ -46298,7 +46460,7 @@ paths: - pulls_url - recent_folders examples: - default: &407 + default: &409 value: total_count: 3 codespaces: @@ -46922,7 +47084,7 @@ paths: type: integer secrets: type: array - items: &340 + items: &342 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -46961,7 +47123,7 @@ paths: - updated_at - visibility examples: - default: &598 + default: &600 value: total_count: 2 secrets: @@ -46999,7 +47161,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &601 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -47028,7 +47190,7 @@ paths: - key_id - key examples: - default: &600 + default: &602 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -47052,15 +47214,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: &602 + default: &604 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -47088,7 +47250,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -47143,7 +47305,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -47170,7 +47332,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '204': description: Response @@ -47196,7 +47358,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 - *19 - *17 responses: @@ -47214,9 +47376,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 '404': *6 x-github: githubCloudOnly: false @@ -47239,7 +47401,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -47290,7 +47452,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -47324,7 +47486,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -47394,7 +47556,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &341 + items: &343 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -47775,9 +47937,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: &342 + default: &344 summary: Example response for an organization copilot space value: id: 84 @@ -47882,9 +48044,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 '403': *29 '404': *6 x-github: @@ -48010,9 +48172,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 '403': *29 '404': *6 '422': *15 @@ -48095,7 +48257,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &343 + items: &345 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -48318,7 +48480,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: user: value: @@ -48448,7 +48610,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: user: value: @@ -48599,7 +48761,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &344 + items: &346 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -48742,7 +48904,7 @@ paths: description: Resource created content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -48758,7 +48920,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -48813,7 +48975,7 @@ paths: description: Response content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -48882,7 +49044,7 @@ paths: description: Response content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -49610,12 +49772,12 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 required: - total_count - repositories examples: - default: *345 + default: *347 '500': *40 '401': *25 '403': *29 @@ -49701,7 +49863,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: No Content @@ -49735,7 +49897,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: No Content @@ -49883,7 +50045,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *346 + '413': *348 '422': *7 x-github: githubCloudOnly: @@ -49946,13 +50108,13 @@ paths: application/json: schema: type: array - items: *213 + items: *215 examples: - default: *214 + default: *216 '500': *40 '403': *29 '404': *6 - '422': *215 + '422': *217 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50355,7 +50517,7 @@ paths: type: integer custom_roles: type: array - items: *347 + items: *349 examples: default: value: @@ -50447,7 +50609,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &351 type: object properties: name: @@ -50488,9 +50650,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '422': *15 '404': *6 x-github: @@ -50521,9 +50683,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '404': *6 x-github: githubCloudOnly: true @@ -50551,7 +50713,7 @@ paths: required: true content: application/json: - schema: &350 + schema: &352 type: object properties: name: @@ -50589,9 +50751,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '422': *15 '404': *6 x-github: @@ -50649,7 +50811,7 @@ paths: required: true content: application/json: - schema: *349 + schema: *351 examples: default: value: @@ -50663,9 +50825,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '422': *15 '404': *6 x-github: @@ -50702,9 +50864,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '404': *6 x-github: githubCloudOnly: true @@ -50738,7 +50900,7 @@ paths: required: true content: application/json: - schema: *350 + schema: *352 examples: default: value: @@ -50753,9 +50915,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 '422': *15 '404': *6 x-github: @@ -50815,12 +50977,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *89 - - *351 - - *352 - *353 - *354 - *355 - *356 + - *357 + - *358 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -50850,7 +51012,7 @@ paths: enum: - patch - deployment - - *357 + - *359 - name: runtime_risk in: query description: |- @@ -50859,8 +51021,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *358 - - *359 + - *360 + - *361 - *112 - *110 - *111 @@ -50872,9 +51034,9 @@ paths: application/json: schema: type: array - items: *360 + items: *362 examples: - default: *361 + default: *363 '304': *37 '400': *14 '403': *29 @@ -50923,9 +51085,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *364 examples: - default: *363 + default: *365 '403': *29 '404': *6 x-github: @@ -51088,7 +51250,7 @@ paths: type: integer secrets: type: array - items: &364 + items: &366 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -51165,7 +51327,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &635 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -51182,7 +51344,7 @@ paths: - key_id - key examples: - default: &634 + default: &636 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -51206,13 +51368,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '200': description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -51241,7 +51403,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -51298,7 +51460,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -51323,7 +51485,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *89 - - *300 + - *302 responses: '204': description: Response @@ -51348,7 +51510,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 - *19 - *17 responses: @@ -51366,9 +51528,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51390,7 +51552,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -51441,7 +51603,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -51473,7 +51635,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *300 + - *302 - name: repository_id in: path required: true @@ -51510,7 +51672,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &643 + - &645 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -51518,7 +51680,7 @@ paths: required: false schema: type: string - - &644 + - &646 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -51526,7 +51688,7 @@ paths: required: false schema: type: string - - &645 + - &647 name: time_period description: |- The time period to filter by. @@ -51542,7 +51704,7 @@ paths: - week - month default: month - - &646 + - &648 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -51557,7 +51719,7 @@ paths: - denied - all default: all - - *323 + - *325 - *17 - *19 responses: @@ -51567,7 +51729,7 @@ paths: application/json: schema: type: array - items: &647 + items: &649 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -51673,7 +51835,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &366 + items: &368 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -51723,7 +51885,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &648 + default: &650 value: - id: 21 number: 42 @@ -51811,11 +51973,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *323 + - *325 - *105 - *106 - *107 - - *365 + - *367 - *17 - *19 responses: @@ -51825,7 +51987,7 @@ paths: application/json: schema: type: array - items: &649 + items: &651 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -51931,7 +52093,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *366 + items: *368 url: type: string format: uri @@ -51942,7 +52104,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &650 + default: &652 value: - id: 21 number: 42 @@ -52030,11 +52192,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *323 + - *325 - *105 - *106 - *107 - - *365 + - *367 - *17 - *19 responses: @@ -52044,9 +52206,9 @@ paths: application/json: schema: type: array - items: *367 + items: *369 examples: - default: *368 + default: *370 '404': *6 '403': *29 '500': *40 @@ -52072,7 +52234,7 @@ paths: application/json: schema: type: array - items: &417 + items: &419 title: Package description: A software package type: object @@ -52122,8 +52284,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *369 - required: *370 + properties: *371 + required: *372 nullable: true created_at: type: string @@ -52142,7 +52304,7 @@ paths: - created_at - updated_at examples: - default: &418 + default: &420 value: - id: 197 name: hello_docker @@ -52230,7 +52392,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: 200-response: value: @@ -52329,7 +52491,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -52410,7 +52572,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &490 + default: &492 value: group_id: '123' group_name: Octocat admins @@ -52465,7 +52627,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &488 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -52502,7 +52664,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &487 + default: &489 value: groups: - group_id: '123' @@ -52547,7 +52709,7 @@ paths: application/json: schema: type: array - items: &395 + items: &397 title: Organization Invitation description: Organization Invitation type: object @@ -52594,7 +52756,7 @@ paths: - invitation_teams_url - node_id examples: - default: &396 + default: &398 value: - id: 1 login: monalisa @@ -52661,7 +52823,7 @@ paths: application/json: schema: type: array - items: &451 + items: &453 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -52675,7 +52837,7 @@ paths: - name - description examples: - default: &452 + default: &454 value: - name: add_assignee description: Assign or remove a user @@ -52716,7 +52878,7 @@ paths: application/json: schema: type: array - items: &371 + items: &373 title: Org Hook description: Org Hook type: object @@ -52885,9 +53047,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: &372 + default: &374 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -52932,7 +53094,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &373 + - &375 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. @@ -52945,9 +53107,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: *372 + default: *374 '404': *6 x-github: githubCloudOnly: false @@ -52969,7 +53131,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *373 + - *375 requestBody: required: false content: @@ -53014,7 +53176,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *373 examples: default: value: @@ -53054,7 +53216,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *373 + - *375 responses: '204': description: Response @@ -53080,7 +53242,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *373 + - *375 responses: '200': description: Response @@ -53109,7 +53271,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *373 + - *375 requestBody: required: false content: @@ -53158,10 +53320,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *373 - - *17 - - *374 - *375 + - *17 + - *376 + - *377 responses: '200': description: Response @@ -53169,9 +53331,9 @@ paths: application/json: schema: type: array - items: *376 + items: *378 examples: - default: *377 + default: *379 '400': *14 '422': *15 x-github: @@ -53195,16 +53357,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *373 + - *375 - *16 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: - default: *379 + default: *381 '400': *14 '422': *15 x-github: @@ -53228,7 +53390,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *373 + - *375 - *16 responses: '202': *39 @@ -53255,7 +53417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *373 + - *375 responses: '204': description: Response @@ -53278,7 +53440,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &384 + - &386 name: actor_type in: path description: The type of the actor @@ -53291,14 +53453,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &385 + - &387 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &380 + - &382 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`.' @@ -53306,7 +53468,7 @@ paths: required: true schema: type: string - - &381 + - &383 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) @@ -53400,12 +53562,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *380 - - *381 + - *382 + - *383 - *19 - *17 - *112 - - &390 + - &392 name: sort description: The property to sort the results by. in: query @@ -53483,14 +53645,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *380 - - *381 + - *382 + - *383 responses: '200': description: Response content: application/json: - schema: &382 + schema: &384 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -53506,7 +53668,7 @@ paths: type: integer format: int64 examples: - default: &383 + default: &385 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -53527,23 +53689,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &386 + - &388 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *380 - - *381 + - *382 + - *383 responses: '200': description: Response content: application/json: - schema: *382 + schema: *384 examples: - default: *383 + default: *385 x-github: enabledForGitHubApps: true category: orgs @@ -53562,18 +53724,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *380 - - *381 - - *384 - - *385 + - *382 + - *383 + - *386 + - *387 responses: '200': description: Response content: application/json: - schema: *382 + schema: *384 examples: - default: *383 + default: *385 x-github: enabledForGitHubApps: true category: orgs @@ -53591,9 +53753,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *380 - - *381 - - &387 + - *382 + - *383 + - &389 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -53606,7 +53768,7 @@ paths: description: Response content: application/json: - schema: &388 + schema: &390 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -53622,7 +53784,7 @@ paths: type: integer format: int64 examples: - default: &389 + default: &391 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -53659,18 +53821,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *386 - - *380 - - *381 - - *387 + - *388 + - *382 + - *383 + - *389 responses: '200': description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: *389 + default: *391 x-github: enabledForGitHubApps: true category: orgs @@ -53688,19 +53850,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *384 - - *385 - - *380 - - *381 + - *386 - *387 + - *382 + - *383 + - *389 responses: '200': description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: *389 + default: *391 x-github: enabledForGitHubApps: true category: orgs @@ -53718,13 +53880,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *386 - - *380 - - *381 + - *388 + - *382 + - *383 - *19 - *17 - *112 - - *390 + - *392 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -53805,7 +53967,7 @@ paths: application/json: schema: *22 examples: - default: *391 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -53925,12 +54087,12 @@ paths: application/json: schema: anyOf: - - &393 + - &395 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &392 + limit: &394 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -53955,7 +54117,7 @@ paths: properties: {} additionalProperties: false examples: - default: &394 + default: &396 value: limit: collaborators_only origin: organization @@ -53984,13 +54146,13 @@ paths: required: true content: application/json: - schema: &679 + schema: &681 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *392 + limit: *394 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -54014,9 +54176,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *394 + default: *396 '422': *15 x-github: githubCloudOnly: false @@ -54094,9 +54256,9 @@ paths: application/json: schema: type: array - items: *395 + items: *397 examples: - default: *396 + default: *398 headers: Link: *47 '404': *6 @@ -54174,7 +54336,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: default: value: @@ -54231,7 +54393,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &397 + - &399 name: invitation_id description: The unique identifier of the invitation. in: path @@ -54265,7 +54427,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *397 + - *399 - *17 - *19 responses: @@ -54275,9 +54437,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: &416 + default: &418 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -54320,7 +54482,7 @@ paths: application/json: schema: type: array - items: &398 + items: &400 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -54553,9 +54715,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *400 examples: - default: &399 + default: &401 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -54611,7 +54773,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *89 - - &400 + - &402 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -54719,9 +54881,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *400 examples: - default: *399 + default: *401 '404': *6 '422': *7 x-github: @@ -54746,7 +54908,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *89 - - *400 + - *402 responses: '204': *130 '404': *6 @@ -54776,7 +54938,7 @@ paths: application/json: schema: type: array - items: *401 + items: *403 examples: default: value: @@ -54861,9 +55023,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: &402 + default: &404 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -54896,7 +55058,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *89 - - &403 + - &405 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -54949,9 +55111,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *402 + default: *404 '404': *6 '422': *7 x-github: @@ -54976,7 +55138,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *89 - - *403 + - *405 responses: '204': description: Response @@ -55039,7 +55201,7 @@ paths: - closed - all default: open - - *404 + - *406 - name: type description: Can be the name of an issue type. in: query @@ -55058,7 +55220,7 @@ paths: - comments default: created - *112 - - *236 + - *238 - *17 - *19 responses: @@ -55068,9 +55230,9 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: *405 + default: *407 headers: Link: *47 '404': *6 @@ -55130,7 +55292,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 '422': *15 @@ -55229,9 +55391,9 @@ paths: type: integer codespaces: type: array - items: *406 + items: *408 examples: - default: *407 + default: *409 '304': *37 '500': *40 '401': *25 @@ -55258,7 +55420,7 @@ paths: parameters: - *89 - *148 - - &408 + - &410 name: codespace_name in: path required: true @@ -55293,15 +55455,15 @@ paths: parameters: - *89 - *148 - - *408 + - *410 responses: '200': description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: &595 + default: &597 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -55557,7 +55719,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &411 title: Org Membership description: Org Membership type: object @@ -55624,7 +55786,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &410 + response-if-user-has-an-active-admin-membership-with-organization: &412 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -55725,9 +55887,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *411 examples: - response-if-user-already-had-membership-with-organization: *410 + response-if-user-already-had-membership-with-organization: *412 '422': *15 '403': *29 x-github: @@ -55798,7 +55960,7 @@ paths: application/json: schema: type: array - items: &411 + items: &413 title: Migration description: A migration. type: object @@ -56127,7 +56289,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *413 examples: default: value: @@ -56306,7 +56468,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &412 + - &414 name: migration_id description: The unique identifier of the migration. in: path @@ -56333,7 +56495,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *411 + schema: *413 examples: default: value: @@ -56503,7 +56665,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *412 + - *414 responses: '302': description: Response @@ -56525,7 +56687,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *412 + - *414 responses: '204': description: Response @@ -56549,8 +56711,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *412 - - &849 + - *414 + - &851 name: repo_name description: repo_name parameter in: path @@ -56578,7 +56740,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *412 + - *414 - *17 - *19 responses: @@ -56588,9 +56750,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: &423 + default: &425 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -56801,7 +56963,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &413 + items: &415 title: Organization Role description: Organization roles type: object @@ -57008,7 +57170,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: default: value: @@ -57060,7 +57222,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *89 - - *222 + - *224 responses: '204': description: Response @@ -57086,7 +57248,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *89 - - *222 + - *224 - *147 responses: '204': @@ -57117,7 +57279,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *89 - - *222 + - *224 - *147 responses: '204': @@ -57238,7 +57400,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: default: value: @@ -57335,7 +57497,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: default: value: @@ -57493,8 +57655,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *416 + required: *417 nullable: true type: description: The ownership type of the team @@ -57526,7 +57688,7 @@ paths: - type - parent examples: - default: *416 + default: *418 headers: Link: *47 '404': @@ -57584,13 +57746,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &476 + items: &478 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *416 + required: *417 name: nullable: true type: string @@ -57685,7 +57847,7 @@ paths: - type - url examples: - default: *218 + default: *220 headers: Link: *47 '404': @@ -57736,7 +57898,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -57878,7 +58040,7 @@ paths: - nuget - container - *89 - - &850 + - &852 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -57914,12 +58076,12 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *418 + default: *420 '403': *29 '401': *25 - '400': &852 + '400': &854 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -57941,7 +58103,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &419 + - &421 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 @@ -57959,7 +58121,7 @@ paths: - docker - nuget - container - - &420 + - &422 name: package_name description: The name of the package. in: path @@ -57972,7 +58134,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *419 examples: default: value: @@ -58024,8 +58186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *419 - - *420 + - *421 + - *422 - *89 responses: '204': @@ -58058,8 +58220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *419 - - *420 + - *421 + - *422 - *89 - name: token description: package token @@ -58092,8 +58254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *419 - - *420 + - *421 + - *422 - *89 - *19 - *17 @@ -58114,7 +58276,7 @@ paths: application/json: schema: type: array - items: &421 + items: &423 title: Package Version description: A version of a software package type: object @@ -58239,10 +58401,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: - - *419 - - *420 + - *421 + - *422 - *89 - - &422 + - &424 name: package_version_id description: Unique identifier of the package version. in: path @@ -58254,7 +58416,7 @@ paths: description: Response content: application/json: - schema: *421 + schema: *423 examples: default: value: @@ -58290,10 +58452,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *419 - - *420 - - *89 + - *421 - *422 + - *89 + - *424 responses: '204': description: Response @@ -58325,10 +58487,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *419 - - *420 - - *89 + - *421 - *422 + - *89 + - *424 responses: '204': description: Response @@ -58358,7 +58520,7 @@ paths: - *89 - *17 - *19 - - &424 + - &426 name: sort description: The property by which to sort the results. in: query @@ -58369,7 +58531,7 @@ paths: - created_at default: created_at - *112 - - &425 + - &427 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -58380,7 +58542,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &426 + - &428 name: repository description: The name of the repository to use to filter the results. in: query @@ -58388,7 +58550,7 @@ paths: schema: type: string example: Hello-World - - &427 + - &429 name: permission description: The permission to use to filter the results. in: query @@ -58396,7 +58558,7 @@ paths: schema: type: string example: issues_read - - &428 + - &430 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) @@ -58406,7 +58568,7 @@ paths: schema: type: string format: date-time - - &429 + - &431 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) @@ -58416,7 +58578,7 @@ paths: schema: type: string format: date-time - - &430 + - &432 name: token_id description: The ID of the token in: query @@ -58727,9 +58889,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -58755,14 +58917,14 @@ paths: - *89 - *17 - *19 - - *424 - - *112 - - *425 - *426 + - *112 - *427 - *428 - *429 - *430 + - *431 + - *432 responses: '500': *40 '422': *15 @@ -59042,9 +59204,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -59086,7 +59248,7 @@ paths: type: integer configurations: type: array - items: &431 + items: &433 title: Organization private registry description: Private registry configuration for an organization type: object @@ -59597,7 +59759,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &432 + org-private-registry-with-selected-visibility: &434 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -59687,15 +59849,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *89 - - *300 + - *302 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 '404': *6 x-github: githubCloudOnly: false @@ -59718,7 +59880,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *89 - - *300 + - *302 requestBody: required: true content: @@ -59906,7 +60068,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *89 - - *300 + - *302 responses: '204': description: Response @@ -59946,7 +60108,7 @@ paths: application/json: schema: type: array - items: &433 + items: &435 title: Projects v2 Project description: A projects v2 project type: object @@ -60016,7 +60178,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &944 + properties: &946 id: type: number description: The unique identifier of the status update. @@ -60064,7 +60226,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &945 + required: &947 - id - node_id - created_at @@ -60089,7 +60251,7 @@ paths: - deleted_at - deleted_by examples: - default: &434 + default: &436 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -60192,7 +60354,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &435 + - &437 name: project_number description: The project's number. in: path @@ -60205,9 +60367,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 headers: Link: *47 '304': *37 @@ -60230,7 +60392,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *89 - - *435 + - *437 requestBody: required: true description: Details of the draft item to create in the project. @@ -60264,7 +60426,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &443 title: Projects v2 Item description: An item belonging to a project type: object @@ -60277,8 +60439,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *229 - - &612 + - *231 + - &614 title: Pull Request Simple description: Pull Request Simple type: object @@ -60384,8 +60546,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *438 + required: *439 nullable: true active_lock_reason: type: string @@ -60428,7 +60590,7 @@ paths: items: *4 requested_teams: type: array - items: *326 + items: *328 head: type: object properties: @@ -60478,7 +60640,7 @@ paths: _links: type: object properties: - comments: &438 + comments: &440 title: Link description: Hypermedia Link type: object @@ -60487,13 +60649,13 @@ paths: type: string required: - href - commits: *438 - statuses: *438 - html: *438 - issue: *438 - review_comments: *438 - review_comment: *438 - self: *438 + commits: *440 + statuses: *440 + html: *440 + issue: *440 + review_comments: *440 + review_comment: *440 + self: *440 required: - comments - commits @@ -60503,8 +60665,8 @@ paths: - review_comments - review_comment - self - author_association: *226 - auto_merge: &732 + author_association: *228 + auto_merge: &734 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60606,7 +60768,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &440 + content_type: &442 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -60646,7 +60808,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &442 + draft_issue: &444 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -60720,7 +60882,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *435 + - *437 - *89 - *17 - *110 @@ -60732,7 +60894,7 @@ paths: application/json: schema: type: array - items: &439 + items: &441 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -60882,7 +61044,7 @@ paths: - updated_at - project_url examples: - default: &872 + default: &874 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61012,7 +61174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *435 + - *437 - *89 requestBody: required: true @@ -61059,7 +61221,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &873 + items: &875 type: object properties: name: @@ -61096,7 +61258,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &874 + iteration_configuration: &876 type: object description: The configuration for iteration fields. properties: @@ -61146,7 +61308,7 @@ paths: value: name: Due date data_type: date - single_select_field: &875 + single_select_field: &877 summary: Create a single select field value: name: Priority @@ -61173,7 +61335,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &876 + iteration_field: &878 summary: Create an iteration field value: name: Sprint @@ -61197,9 +61359,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *439 + schema: *441 examples: - text_field: &877 + text_field: &879 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -61208,7 +61370,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &878 + number_field: &880 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -61217,7 +61379,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &879 + date_field: &881 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -61226,7 +61388,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &880 + single_select_field: &882 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61260,7 +61422,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &881 + iteration_field: &883 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -61305,8 +61467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *435 - - &882 + - *437 + - &884 name: field_id description: The unique identifier of the field. in: path @@ -61319,9 +61481,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *441 examples: - default: &883 + default: &885 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61377,7 +61539,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *435 + - *437 - *89 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -61410,7 +61572,7 @@ paths: application/json: schema: type: array - items: &443 + items: &445 title: Projects v2 Item description: An item belonging to a project type: object @@ -61426,7 +61588,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *440 + content_type: *442 content: type: object additionalProperties: true @@ -61469,7 +61631,7 @@ paths: - updated_at - archived_at examples: - default: &444 + default: &446 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -62167,7 +62329,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *89 - - *435 + - *437 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -62237,22 +62399,22 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *442 + value: *444 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *442 + value: *444 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *442 + value: *444 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *442 + value: *444 '304': *37 '403': *29 '401': *25 @@ -62272,9 +62434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *435 + - *437 - *89 - - &445 + - &447 name: item_id description: The unique identifier of the project item. in: path @@ -62300,9 +62462,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 headers: Link: *47 '304': *37 @@ -62323,9 +62485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *435 + - *437 - *89 - - *445 + - *447 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -62395,13 +62557,13 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - text_field: *444 - number_field: *444 - date_field: *444 - single_select_field: *444 - iteration_field: *444 + text_field: *446 + number_field: *446 + date_field: *446 + single_select_field: *446 + iteration_field: *446 '401': *25 '403': *29 '404': *6 @@ -62421,9 +62583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *435 + - *437 - *89 - - *445 + - *447 responses: '204': description: Response @@ -62447,7 +62609,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *89 - - *435 + - *437 requestBody: required: true content: @@ -62518,7 +62680,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &863 + schema: &865 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62616,7 +62778,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &446 + value: &448 value: id: 1 number: 1 @@ -62662,10 +62824,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *446 + value: *448 roadmap_view: summary: Response for creating a roadmap view - value: *446 + value: *448 '304': *37 '403': *29 '401': *25 @@ -62693,9 +62855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *435 + - *437 - *89 - - &884 + - &886 name: view_number description: The number that identifies the project view. in: path @@ -62727,9 +62889,9 @@ paths: application/json: schema: type: array - items: *443 + items: *445 examples: - default: *444 + default: *446 headers: Link: *47 '304': *37 @@ -62893,7 +63055,7 @@ paths: required: true content: application/json: - schema: *447 + schema: *449 examples: default: value: @@ -63118,7 +63280,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -63256,9 +63418,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -63461,7 +63623,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &499 title: Full Repository description: Full Repository type: object @@ -63749,8 +63911,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *448 - required: *449 + properties: *450 + required: *451 nullable: true temp_clone_token: type: string @@ -63837,8 +63999,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true organization: title: Simple User @@ -63865,7 +64027,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &617 + properties: &619 url: type: string format: uri @@ -63881,12 +64043,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &618 + required: &620 - url - key - name - html_url - security_and_analysis: *450 + security_and_analysis: *452 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -63970,7 +64132,7 @@ paths: - network_count - subscribers_count examples: - default: &499 + default: &501 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -64496,9 +64658,9 @@ paths: application/json: schema: type: array - items: *451 + items: *453 examples: - default: *452 + default: *454 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -64523,7 +64685,7 @@ paths: - *89 - *17 - *19 - - &754 + - &756 name: targets description: | A comma-separated list of rule targets to filter by. @@ -64614,11 +64776,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *173 - conditions: *453 + conditions: *455 rules: type: array description: An array of rules within the ruleset. - items: &455 + items: &457 title: Repository Rule type: object description: A repository rule. @@ -64683,7 +64845,7 @@ paths: application/json: schema: *195 examples: - default: &454 + default: &456 value: id: 21 name: super cool ruleset @@ -64739,7 +64901,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &756 + - &758 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 @@ -64749,16 +64911,16 @@ paths: schema: type: string x-multi-segment: true - - *323 + - *325 - *107 - - &757 + - &759 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 - - &758 + - &760 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -64771,7 +64933,7 @@ paths: - bypass - all default: all - - &759 + - &761 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -64794,7 +64956,7 @@ paths: description: Response content: application/json: - schema: &760 + schema: &762 title: Rule Suites description: Response type: array @@ -64849,7 +65011,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &761 + default: &763 value: - id: 21 actor_id: 12 @@ -64893,7 +65055,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &762 + - &764 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -64909,7 +65071,7 @@ paths: description: Response content: application/json: - schema: &763 + schema: &765 title: Rule Suite description: Response type: object @@ -65008,7 +65170,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &764 + default: &766 value: id: 21 actor_id: 12 @@ -65083,7 +65245,7 @@ paths: application/json: schema: *195 examples: - default: *454 + default: *456 '404': *6 '500': *40 put: @@ -65132,11 +65294,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *173 - conditions: *453 + conditions: *455 rules: description: An array of rules within the ruleset. type: array - items: *455 + items: *457 examples: default: value: @@ -65173,7 +65335,7 @@ paths: application/json: schema: *195 examples: - default: *454 + default: *456 '404': *6 '422': *15 '500': *40 @@ -65233,7 +65395,7 @@ paths: type: array items: *199 examples: - default: *456 + default: *458 '404': *6 '500': *40 x-github: @@ -65270,7 +65432,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: default: value: @@ -65333,18 +65495,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *458 - - *459 - *460 - *461 - *462 - *463 - *464 - *465 + - *466 + - *467 - *112 - *19 - *17 - - &766 + - &768 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 @@ -65354,7 +65516,7 @@ paths: required: false schema: type: string - - &767 + - &769 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 @@ -65364,11 +65526,11 @@ paths: required: false schema: type: string - - *466 - - *467 - *468 - *469 - *470 + - *471 + - *472 responses: '200': description: Response @@ -65376,9 +65538,9 @@ paths: application/json: schema: type: array - items: *471 + items: *473 examples: - default: *472 + default: *474 headers: Link: *47 '404': *6 @@ -65413,9 +65575,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *475 examples: - default: *474 + default: *476 '403': *29 '404': *6 patch: @@ -65568,7 +65730,7 @@ paths: application/json: schema: type: array - items: &788 + items: &790 description: A repository security advisory. type: object properties: @@ -65788,7 +65950,7 @@ paths: login: type: string description: The username of the user credited. - type: *475 + type: *477 credits_detailed: type: array nullable: true @@ -65798,7 +65960,7 @@ paths: type: object properties: user: *4 - type: *475 + type: *477 state: type: string description: The state of the user's acceptance of the @@ -65822,7 +65984,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *326 + items: *328 private_fork: readOnly: true nullable: true @@ -65859,7 +66021,7 @@ paths: - private_fork additionalProperties: false examples: - default: &789 + default: &791 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -66246,7 +66408,7 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: default: value: @@ -66287,7 +66449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/security-managers#add-a-security-manager-team parameters: - *89 - - *222 + - *224 responses: '204': description: Response @@ -66313,7 +66475,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *89 - - *222 + - *224 responses: '204': description: Response @@ -66345,7 +66507,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *89 - - *477 + - *479 - *17 - *19 responses: @@ -66353,9 +66515,9 @@ paths: description: Success content: application/json: - schema: *478 + schema: *480 examples: - default: *479 + default: *481 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -66499,9 +66661,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *304 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66570,7 +66732,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: Response @@ -66593,7 +66755,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *284 + - *286 responses: '204': description: Response @@ -66636,7 +66798,7 @@ paths: type: array items: *153 examples: - default: *480 + default: *482 headers: Link: *47 x-github: @@ -66865,15 +67027,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *89 - - *481 + - *483 responses: '200': description: Response content: application/json: - schema: *482 + schema: *484 examples: - default: *483 + default: *485 headers: Link: *47 x-github: @@ -66911,7 +67073,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &496 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -66957,7 +67119,7 @@ paths: type: string nullable: true examples: - default: &495 + default: &497 value: groups: - group_id: '123' @@ -67003,7 +67165,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *89 - - *222 + - *224 - 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`). @@ -67035,13 +67197,13 @@ paths: application/json: schema: type: array - items: *213 + items: *215 examples: - default: *214 + default: *216 '500': *40 '403': *29 '404': *6 - '422': *215 + '422': *217 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67081,9 +67243,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 headers: Link: *47 '403': *29 @@ -67177,7 +67339,7 @@ paths: description: Response content: application/json: - schema: &484 + schema: &486 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -67240,8 +67402,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *416 + required: *417 nullable: true members_count: type: integer @@ -67504,7 +67666,7 @@ paths: - repos_count - organization examples: - default: &485 + default: &487 value: id: 1 node_id: MDQ6VGVhbTE= @@ -67575,15 +67737,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-by-name parameters: - *89 - - *222 + - *224 responses: '200': description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -67605,7 +67767,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team parameters: - *89 - - *222 + - *224 requestBody: required: false content: @@ -67667,16 +67829,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '201': description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '404': *6 '422': *15 '403': *29 @@ -67702,11 +67864,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team parameters: - *89 - - *222 + - *224 responses: '204': description: Response - '422': &488 + '422': &490 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -67729,16 +67891,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *89 - - *222 + - *224 responses: '200': description: Response content: application/json: - schema: *486 + schema: *488 examples: - default: *487 - '422': *488 + default: *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67758,7 +67920,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *89 - - *222 + - *224 requestBody: required: true content: @@ -67781,10 +67943,10 @@ paths: description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 - '422': *488 + default: *492 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -67804,11 +67966,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *89 - - *222 + - *224 responses: '204': description: Response - '422': *488 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -67830,7 +67992,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations parameters: - *89 - - *222 + - *224 - *17 - *19 responses: @@ -67840,12 +68002,12 @@ paths: application/json: schema: type: array - items: *395 + items: *397 examples: - default: *396 + default: *398 headers: Link: *47 - '422': *488 + '422': *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67866,7 +68028,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members parameters: - *89 - - *222 + - *224 - name: role description: Filters members returned by their role in the team. in: query @@ -67889,7 +68051,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -67920,14 +68082,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user parameters: - *89 - - *222 + - *224 - *148 responses: '200': description: Response content: application/json: - schema: &491 + schema: &493 title: Team Membership description: Team Membership type: object @@ -67954,7 +68116,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &830 + response-if-user-is-a-team-maintainer: &832 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -67991,7 +68153,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *89 - - *222 + - *224 - *148 requestBody: required: false @@ -68017,9 +68179,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: &831 + response-if-users-membership-with-team-is-now-pending: &833 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -68055,7 +68217,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user parameters: - *89 - - *222 + - *224 - *148 responses: '204': @@ -68083,7 +68245,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories parameters: - *89 - - *222 + - *224 - *17 - *19 responses: @@ -68093,9 +68255,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -68125,15 +68287,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *89 - - *222 - - *492 - - *493 + - *224 + - *494 + - *495 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &832 + schema: &834 title: Team Repository description: A team's access to a repository. type: object @@ -68156,8 +68318,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true forks: type: integer @@ -68703,9 +68865,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *89 - - *222 - - *492 - - *493 + - *224 + - *494 + - *495 requestBody: required: false content: @@ -68751,9 +68913,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team parameters: - *89 - - *222 - - *492 - - *493 + - *224 + - *494 + - *495 responses: '204': description: Response @@ -68780,16 +68942,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *89 - - *222 + - *224 responses: '200': description: Response content: application/json: - schema: *494 + schema: *496 examples: - default: *495 - '422': *488 + default: *497 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68812,7 +68974,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *89 - - *222 + - *224 requestBody: required: true content: @@ -68855,7 +69017,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -68867,7 +69029,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *488 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68889,7 +69051,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams parameters: - *89 - - *222 + - *224 - *17 - *19 responses: @@ -68899,9 +69061,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - response-if-child-teams-exist: &833 + response-if-child-teams-exist: &835 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69055,7 +69217,7 @@ paths: resources: type: object properties: - core: &496 + core: &498 title: Rate Limit type: object properties: @@ -69072,21 +69234,21 @@ paths: - remaining - reset - used - graphql: *496 - search: *496 - code_search: *496 - source_import: *496 - integration_manifest: *496 - code_scanning_upload: *496 - actions_runner_registration: *496 - scim: *496 - dependency_snapshots: *496 - dependency_sbom: *496 - code_scanning_autofix: *496 + graphql: *498 + search: *498 + code_search: *498 + source_import: *498 + integration_manifest: *498 + code_scanning_upload: *498 + actions_runner_registration: *498 + scim: *498 + dependency_snapshots: *498 + dependency_sbom: *498 + code_scanning_autofix: *498 required: - core - search - rate: *496 + rate: *498 required: - rate - resources @@ -69191,14 +69353,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *497 + schema: *499 examples: default-response: summary: Default response @@ -69707,7 +69869,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *498 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69725,8 +69887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -70034,10 +70196,10 @@ paths: description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *499 - '307': &500 + default: *501 + '307': &502 description: Temporary Redirect content: application/json: @@ -70066,8 +70228,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -70089,7 +70251,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': *500 + '307': *502 '404': *6 '409': *121 x-github: @@ -70113,11 +70275,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 - - &516 + - &518 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -70140,7 +70302,7 @@ paths: type: integer artifacts: type: array - items: &501 + items: &503 title: Artifact description: An artifact type: object @@ -70218,7 +70380,7 @@ paths: - expires_at - updated_at examples: - default: &517 + default: &519 value: total_count: 2 artifacts: @@ -70279,9 +70441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *492 - - *493 - - &502 + - *494 + - *495 + - &504 name: artifact_id description: The unique identifier of the artifact. in: path @@ -70293,7 +70455,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: default: value: @@ -70331,9 +70493,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *492 - - *493 - - *502 + - *494 + - *495 + - *504 responses: '204': description: Response @@ -70357,9 +70519,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *492 - - *493 - - *502 + - *494 + - *495 + - *504 - name: archive_format in: path required: true @@ -70369,11 +70531,11 @@ paths: '302': description: Response headers: - Location: &636 + Location: &638 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': &682 + '410': &684 description: Gone content: application/json: @@ -70398,14 +70560,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &503 + schema: &505 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -70438,13 +70600,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: application/json: - schema: *503 + schema: *505 examples: selected_actions: *44 responses: @@ -70473,14 +70635,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &504 + schema: &506 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -70513,13 +70675,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: application/json: - schema: *504 + schema: *506 examples: selected_actions: *46 responses: @@ -70550,14 +70712,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: default: value: @@ -70583,11 +70745,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: - - *492 - - *493 + - *494 + - *495 - *17 - *19 - - &506 + - &508 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 @@ -70621,7 +70783,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &509 title: Repository actions caches description: Repository actions caches type: object @@ -70663,7 +70825,7 @@ paths: - total_count - actions_caches examples: - default: &508 + default: &510 value: total_count: 1 actions_caches: @@ -70695,23 +70857,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: - - *492 - - *493 + - *494 + - *495 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *506 + - *508 responses: '200': description: Response content: application/json: - schema: *507 + schema: *509 examples: - default: *508 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70731,8 +70893,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: - - *492 - - *493 + - *494 + - *495 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -70761,8 +70923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *111 responses: @@ -70844,8 +71006,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -70997,9 +71159,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: - - *492 - - *493 - - &509 + - *494 + - *495 + - &511 name: job_id description: The unique identifier of the job. in: path @@ -71011,7 +71173,7 @@ paths: description: Response content: application/json: - schema: &520 + schema: &522 title: Job description: Information of a job execution in a workflow run type: object @@ -71318,9 +71480,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: - - *492 - - *493 - - *509 + - *494 + - *495 + - *511 responses: '302': description: Response @@ -71348,9 +71510,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: - - *492 - - *493 - - *509 + - *494 + - *495 + - *511 requestBody: required: false content: @@ -71376,7 +71538,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -71400,8 +71562,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Status response @@ -71460,8 +71622,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -71500,7 +71662,7 @@ paths: description: Empty response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -71529,8 +71691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -71548,7 +71710,7 @@ paths: type: integer secrets: type: array - items: &522 + items: &524 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -71568,7 +71730,7 @@ paths: - created_at - updated_at examples: - default: &523 + default: &525 value: total_count: 2 secrets: @@ -71601,9 +71763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *492 - - *493 - - *309 + - *494 + - *495 + - *311 - *19 responses: '200': @@ -71620,7 +71782,7 @@ paths: type: integer variables: type: array - items: &524 + items: &526 title: Actions Variable type: object properties: @@ -71650,7 +71812,7 @@ paths: - created_at - updated_at examples: - default: &525 + default: &527 value: total_count: 2 variables: @@ -71683,8 +71845,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -71693,11 +71855,11 @@ paths: schema: type: object properties: - enabled: &510 + enabled: &512 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *62 - selected_actions_url: *277 + selected_actions_url: *279 sha_pinning_required: *63 required: - enabled @@ -71728,8 +71890,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -71740,7 +71902,7 @@ paths: schema: type: object properties: - enabled: *510 + enabled: *512 allowed_actions: *62 sha_pinning_required: *63 required: @@ -71773,14 +71935,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &511 + schema: &513 type: object properties: access_level: @@ -71798,7 +71960,7 @@ paths: required: - access_level examples: - default: &512 + default: &514 value: access_level: organization x-github: @@ -71823,15 +71985,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 responses: '204': description: Response @@ -71855,14 +72017,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *279 + schema: *281 examples: default: value: @@ -71886,8 +72048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Empty response for successful settings update @@ -71897,7 +72059,7 @@ paths: required: true content: application/json: - schema: *280 + schema: *282 examples: default: summary: Set retention days @@ -71921,8 +72083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -71930,7 +72092,7 @@ paths: application/json: schema: *64 examples: - default: *281 + default: *283 '404': *6 x-github: enabledForGitHubApps: true @@ -71949,8 +72111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -71984,14 +72146,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *282 + schema: *284 examples: default: *65 '403': *29 @@ -72013,13 +72175,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: application/json: - schema: *283 + schema: *285 examples: default: *65 responses: @@ -72045,8 +72207,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -72077,8 +72239,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -72110,14 +72272,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *286 + schema: *288 examples: default: *71 x-github: @@ -72140,8 +72302,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Success response @@ -72152,7 +72314,7 @@ paths: required: true content: application/json: - schema: *287 + schema: *289 examples: default: *71 x-github: @@ -72181,8 +72343,8 @@ paths: in: query schema: type: string - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -72226,8 +72388,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -72235,9 +72397,9 @@ paths: application/json: schema: type: array - items: *291 + items: *293 examples: - default: *292 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72259,8 +72421,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -72303,7 +72465,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *293 + '201': *295 '404': *6 '422': *7 '409': *121 @@ -72334,8 +72496,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: - - *492 - - *493 + - *494 + - *495 responses: '201': description: Response @@ -72343,7 +72505,7 @@ paths: application/json: schema: *81 examples: - default: *294 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72371,8 +72533,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: - - *492 - - *493 + - *494 + - *495 responses: '201': description: Response @@ -72380,7 +72542,7 @@ paths: application/json: schema: *81 examples: - default: *295 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72402,8 +72564,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: - - *492 - - *493 + - *494 + - *495 - *77 responses: '200': @@ -72412,7 +72574,7 @@ paths: application/json: schema: *78 examples: - default: *296 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72433,8 +72595,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: - - *492 - - *493 + - *494 + - *495 - *77 responses: '204': @@ -72461,8 +72623,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: - - *492 - - *493 + - *494 + - *495 - *77 responses: '200': *83 @@ -72487,8 +72649,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: - - *492 - - *493 + - *494 + - *495 - *77 requestBody: required: true @@ -72537,8 +72699,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: - - *492 - - *493 + - *494 + - *495 - *77 requestBody: required: true @@ -72588,11 +72750,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: - - *492 - - *493 + - *494 + - *495 - *77 responses: - '200': *297 + '200': *299 '404': *6 x-github: githubCloudOnly: false @@ -72619,10 +72781,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: - - *492 - - *493 + - *494 + - *495 - *77 - - *298 + - *300 responses: '200': *83 '404': *6 @@ -72650,9 +72812,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: - - *492 - - *493 - - &528 + - *494 + - *495 + - &530 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. @@ -72660,7 +72822,7 @@ paths: required: false schema: type: string - - &529 + - &531 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -72668,7 +72830,7 @@ paths: required: false schema: type: string - - &530 + - &532 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -72677,7 +72839,7 @@ paths: required: false schema: type: string - - &531 + - &533 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 @@ -72704,7 +72866,7 @@ paths: - pending - *17 - *19 - - &532 + - &534 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)." @@ -72713,7 +72875,7 @@ paths: schema: type: string format: date-time - - &513 + - &515 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -72722,13 +72884,13 @@ paths: schema: type: boolean default: false - - &533 + - &535 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &534 + - &536 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -72751,7 +72913,7 @@ paths: type: integer workflow_runs: type: array - items: &514 + items: &516 title: Workflow Run description: An invocation of a workflow type: object @@ -72846,7 +73008,7 @@ paths: that triggered the run. type: array nullable: true - items: *234 + items: *236 created_at: type: string format: date-time @@ -72899,7 +73061,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &558 + properties: &560 id: type: string description: SHA for the commit @@ -72950,7 +73112,7 @@ paths: - name - email nullable: true - required: &559 + required: &561 - id - tree_id - message @@ -72958,8 +73120,8 @@ paths: - author - committer nullable: true - repository: *290 - head_repository: *290 + repository: *292 + head_repository: *292 head_repository_id: type: integer example: 5 @@ -72997,7 +73159,7 @@ paths: - workflow_url - pull_requests examples: - default: &535 + default: &537 value: total_count: 1 workflow_runs: @@ -73233,24 +73395,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *492 - - *493 - - &515 + - *494 + - *495 + - &517 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *513 + - *515 responses: '200': description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: &518 + default: &520 value: id: 30433642 name: Build @@ -73491,9 +73653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '204': description: Response @@ -73516,9 +73678,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '200': description: Response @@ -73637,15 +73799,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '201': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -73672,12 +73834,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 - *17 - *19 - - *516 + - *518 - *112 responses: '200': @@ -73694,9 +73856,9 @@ paths: type: integer artifacts: type: array - items: *501 + items: *503 examples: - default: *517 + default: *519 headers: Link: *47 x-github: @@ -73720,25 +73882,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *492 - - *493 - - *515 - - &519 + - *494 + - *495 + - *517 + - &521 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *513 + - *515 responses: '200': description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: *518 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73761,10 +73923,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: - - *492 - - *493 - - *515 - - *519 + - *494 + - *495 + - *517 + - *521 - *17 - *19 responses: @@ -73782,9 +73944,9 @@ paths: type: integer jobs: type: array - items: *520 + items: *522 examples: - default: &521 + default: &523 value: total_count: 1 jobs: @@ -73897,10 +74059,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *492 - - *493 - - *515 - - *519 + - *494 + - *495 + - *517 + - *521 responses: '302': description: Response @@ -73928,15 +74090,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -73976,9 +74138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 - *17 - *110 - *111 @@ -74149,9 +74311,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 requestBody: required: true content: @@ -74218,15 +74380,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -74253,9 +74415,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 - 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 @@ -74285,9 +74447,9 @@ paths: type: integer jobs: type: array - items: *520 + items: *522 examples: - default: *521 + default: *523 headers: Link: *47 x-github: @@ -74312,9 +74474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '302': description: Response @@ -74341,9 +74503,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '204': description: Response @@ -74370,9 +74532,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '200': description: Response @@ -74432,7 +74594,7 @@ paths: items: type: object properties: - type: &651 + type: &653 type: string description: The type of reviewer. enum: @@ -74442,7 +74604,7 @@ paths: reviewer: anyOf: - *4 - - *326 + - *328 required: - environment - wait_timer @@ -74517,9 +74679,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 requestBody: required: true content: @@ -74566,12 +74728,12 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &902 + properties: &904 url: type: string format: uri @@ -74654,9 +74816,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 - required: &903 + properties: *226 + required: *227 + required: &905 - id - node_id - sha @@ -74672,7 +74834,7 @@ paths: - created_at - updated_at examples: - default: &639 + default: &641 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -74728,9 +74890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 requestBody: required: false content: @@ -74751,7 +74913,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -74774,9 +74936,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: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 requestBody: required: false content: @@ -74797,7 +74959,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -74830,9 +74992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *492 - - *493 - - *515 + - *494 + - *495 + - *517 responses: '200': description: Response @@ -74969,8 +75131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -74988,9 +75150,9 @@ paths: type: integer secrets: type: array - items: *522 + items: *524 examples: - default: *523 + default: *525 headers: Link: *47 x-github: @@ -75015,16 +75177,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *306 + schema: *308 examples: - default: *307 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75046,17 +75208,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '200': description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: &536 + default: &538 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -75082,9 +75244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 requestBody: required: true content: @@ -75115,7 +75277,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -75141,9 +75303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '204': description: Response @@ -75168,9 +75330,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *492 - - *493 - - *309 + - *494 + - *495 + - *311 - *19 responses: '200': @@ -75187,9 +75349,9 @@ paths: type: integer variables: type: array - items: *524 + items: *526 examples: - default: *525 + default: *527 headers: Link: *47 x-github: @@ -75212,8 +75374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -75240,7 +75402,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -75265,17 +75427,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 responses: '200': description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: &537 + default: &539 value: name: USERNAME value: octocat @@ -75301,9 +75463,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 requestBody: required: true content: @@ -75345,9 +75507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 responses: '204': description: Response @@ -75372,8 +75534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -75391,7 +75553,7 @@ paths: type: integer workflows: type: array - items: &526 + items: &528 title: Workflow description: A GitHub Actions workflow type: object @@ -75498,9 +75660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *492 - - *493 - - &527 + - *494 + - *495 + - &529 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -75515,7 +75677,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: default: value: @@ -75548,9 +75710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *492 - - *493 - - *527 + - *494 + - *495 + - *529 responses: '204': description: Response @@ -75575,9 +75737,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *492 - - *493 - - *527 + - *494 + - *495 + - *529 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -75664,9 +75826,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *492 - - *493 - - *527 + - *494 + - *495 + - *529 responses: '204': description: Response @@ -75693,19 +75855,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: - - *492 - - *493 - - *527 - - *528 + - *494 + - *495 - *529 - *530 - *531 - - *17 - - *19 - *532 - - *513 - *533 + - *17 + - *19 - *534 + - *515 + - *535 + - *536 responses: '200': description: Response @@ -75721,9 +75883,9 @@ paths: type: integer workflow_runs: type: array - items: *514 + items: *516 examples: - default: *535 + default: *537 headers: Link: *47 x-github: @@ -75756,9 +75918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *492 - - *493 - - *527 + - *494 + - *495 + - *529 responses: '200': description: Response @@ -75819,8 +75981,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *492 - - *493 + - *494 + - *495 - *112 - *17 - *110 @@ -75989,8 +76151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -76008,9 +76170,9 @@ paths: type: integer secrets: type: array - items: *522 + items: *524 examples: - default: *523 + default: *525 headers: Link: *47 x-github: @@ -76034,9 +76196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *492 - - *493 - - *309 + - *494 + - *495 + - *311 - *19 responses: '200': @@ -76053,9 +76215,9 @@ paths: type: integer variables: type: array - items: *524 + items: *526 examples: - default: *525 + default: *527 headers: Link: *47 x-github: @@ -76080,8 +76242,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -76099,9 +76261,9 @@ paths: type: integer secrets: type: array - items: *522 + items: *524 examples: - default: *523 + default: *525 headers: Link: *47 x-github: @@ -76126,16 +76288,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *306 + schema: *308 examples: - default: *307 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76157,17 +76319,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '200': description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *536 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76189,9 +76351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 requestBody: required: true content: @@ -76222,7 +76384,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -76248,9 +76410,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '204': description: Response @@ -76275,9 +76437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *492 - - *493 - - *309 + - *494 + - *495 + - *311 - *19 responses: '200': @@ -76294,9 +76456,9 @@ paths: type: integer variables: type: array - items: *524 + items: *526 examples: - default: *525 + default: *527 headers: Link: *47 x-github: @@ -76319,8 +76481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -76347,7 +76509,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -76372,17 +76534,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 responses: '200': description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: *537 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76403,9 +76565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 requestBody: required: true content: @@ -76447,9 +76609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *492 - - *493 - - *303 + - *494 + - *495 + - *305 responses: '204': description: Response @@ -76470,8 +76632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -76483,7 +76645,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 '404': *6 @@ -76508,8 +76670,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: - - *492 - - *493 + - *494 + - *495 - name: assignee in: path required: true @@ -76545,8 +76707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -76656,8 +76818,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *110 - *111 @@ -76714,7 +76876,7 @@ paths: initiator: type: string examples: - default: *538 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76734,8 +76896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -76743,7 +76905,7 @@ paths: application/json: schema: type: array - items: &539 + items: &541 title: Autolink reference description: An autolink reference. type: object @@ -76797,8 +76959,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -76837,9 +76999,9 @@ paths: description: response content: application/json: - schema: *539 + schema: *541 examples: - default: &540 + default: &542 value: id: 1 key_prefix: TICKET- @@ -76870,9 +77032,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: - - *492 - - *493 - - &541 + - *494 + - *495 + - &543 name: autolink_id description: The unique identifier of the autolink. in: path @@ -76884,9 +77046,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 '404': *6 x-github: githubCloudOnly: false @@ -76906,9 +77068,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: - - *492 - - *493 - - *541 + - *494 + - *495 + - *543 responses: '204': description: Response @@ -76932,8 +77094,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response if Dependabot is enabled @@ -76981,8 +77143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -77003,8 +77165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -77024,8 +77186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *492 - - *493 + - *494 + - *495 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -77063,7 +77225,7 @@ paths: - url protected: type: boolean - protection: &543 + protection: &545 title: Branch Protection description: Branch Protection type: object @@ -77105,7 +77267,7 @@ paths: required: - contexts - checks - enforce_admins: &546 + enforce_admins: &548 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -77120,7 +77282,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &548 + required_pull_request_reviews: &550 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -77141,7 +77303,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *326 + items: *328 apps: description: The list of apps with review dismissal access. @@ -77170,7 +77332,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *326 + items: *328 apps: description: The list of apps allowed to bypass pull request requirements. @@ -77196,7 +77358,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &545 + restrictions: &547 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -77259,7 +77421,7 @@ paths: type: string teams: type: array - items: *326 + items: *328 apps: type: array items: @@ -77473,9 +77635,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *492 - - *493 - - &544 + - *494 + - *495 + - &546 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). @@ -77489,14 +77651,14 @@ paths: description: Response content: application/json: - schema: &554 + schema: &556 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &608 + commit: &610 title: Commit description: Commit type: object @@ -77530,7 +77692,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &542 + properties: &544 name: type: string example: '"Chris Wanstrath"' @@ -77546,7 +77708,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *542 + properties: *544 nullable: true message: type: string @@ -77567,7 +77729,7 @@ paths: required: - sha - url - verification: &669 + verification: &671 title: Verification type: object properties: @@ -77601,12 +77763,12 @@ paths: nullable: true oneOf: - *4 - - *301 + - *303 committer: nullable: true oneOf: - *4 - - *301 + - *303 parents: type: array items: @@ -77637,7 +77799,7 @@ paths: type: integer files: type: array - items: &621 + items: &623 title: Diff Entry description: Diff Entry type: object @@ -77721,7 +77883,7 @@ paths: - self protected: type: boolean - protection: *543 + protection: *545 protection_url: type: string format: uri @@ -77828,7 +77990,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *498 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -77850,15 +78012,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *543 + schema: *545 examples: default: value: @@ -78052,9 +78214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -78309,7 +78471,7 @@ paths: url: type: string format: uri - required_status_checks: &551 + required_status_checks: &553 title: Status Check Policy description: Status Check Policy type: object @@ -78385,7 +78547,7 @@ paths: items: *4 teams: type: array - items: *326 + items: *328 apps: type: array items: *5 @@ -78403,7 +78565,7 @@ paths: items: *4 teams: type: array - items: *326 + items: *328 apps: type: array items: *5 @@ -78461,7 +78623,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *545 + restrictions: *547 required_conversation_resolution: type: object properties: @@ -78573,9 +78735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -78600,17 +78762,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &547 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -78632,17 +78794,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78661,9 +78823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -78688,17 +78850,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *548 + schema: *550 examples: - default: &549 + default: &551 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -78794,9 +78956,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -78894,9 +79056,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *550 examples: - default: *549 + default: *551 '422': *15 x-github: githubCloudOnly: false @@ -78917,9 +79079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -78946,17 +79108,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &550 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -78979,17 +79141,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *550 + default: *552 '404': *6 x-github: githubCloudOnly: false @@ -79009,9 +79171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -79036,17 +79198,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: &552 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -79072,9 +79234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -79126,9 +79288,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 '404': *6 '422': *15 x-github: @@ -79150,9 +79312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -79176,9 +79338,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response @@ -79212,9 +79374,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -79281,9 +79443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -79347,9 +79509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: content: application/json: @@ -79415,15 +79577,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *545 + schema: *547 examples: default: value: @@ -79514,9 +79676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '204': description: Response @@ -79539,9 +79701,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: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response @@ -79551,7 +79713,7 @@ paths: type: array items: *5 examples: - default: &553 + default: &555 value: - id: 1 slug: octoapp @@ -79608,9 +79770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -79644,7 +79806,7 @@ paths: type: array items: *5 examples: - default: *553 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -79665,9 +79827,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -79701,7 +79863,7 @@ paths: type: array items: *5 examples: - default: *553 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -79722,9 +79884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -79758,7 +79920,7 @@ paths: type: array items: *5 examples: - default: *553 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -79780,9 +79942,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: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response @@ -79790,9 +79952,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -79812,9 +79974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -79850,9 +80012,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -79873,9 +80035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: false content: @@ -79911,9 +80073,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -79934,9 +80096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: content: application/json: @@ -79971,9 +80133,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -79995,9 +80157,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: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 responses: '200': description: Response @@ -80007,7 +80169,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 '404': *6 x-github: githubCloudOnly: false @@ -80031,9 +80193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -80066,7 +80228,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 '422': *15 x-github: githubCloudOnly: false @@ -80091,9 +80253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -80126,7 +80288,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 '422': *15 x-github: githubCloudOnly: false @@ -80151,9 +80313,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -80186,7 +80348,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 '422': *15 x-github: githubCloudOnly: false @@ -80213,9 +80375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 requestBody: required: true content: @@ -80237,7 +80399,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -80351,8 +80513,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *492 - - *493 + - *494 + - *495 - *105 - *106 - *107 @@ -80366,9 +80528,9 @@ paths: application/json: schema: type: array - items: *321 + items: *323 examples: - default: *322 + default: *324 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -80388,8 +80550,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: bypass_request_number in: path required: true @@ -80403,7 +80565,7 @@ paths: description: Response content: application/json: - schema: *321 + schema: *323 examples: default: value: @@ -80462,8 +80624,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *492 - - *493 + - *494 + - *495 - *105 - *106 - *107 @@ -80477,9 +80639,9 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: - default: *325 + default: *327 '404': *6 '403': *29 '500': *40 @@ -80503,8 +80665,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *492 - - *493 + - *494 + - *495 - name: bypass_request_number in: path required: true @@ -80516,7 +80678,7 @@ paths: description: A single bypass request. content: application/json: - schema: *324 + schema: *326 examples: default: value: @@ -80574,8 +80736,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *492 - - *493 + - *494 + - *495 - name: bypass_request_number in: path required: true @@ -80646,8 +80808,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *492 - - *493 + - *494 + - *495 - name: bypass_response_id in: path required: true @@ -80680,8 +80842,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -80960,7 +81122,7 @@ paths: description: Response content: application/json: - schema: &555 + schema: &557 title: CheckRun description: A check performed on the code of a given code change type: object @@ -81071,16 +81233,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *234 - deployment: &895 + items: *236 + deployment: &897 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81147,8 +81309,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 required: - id - node_id @@ -81360,9 +81522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *492 - - *493 - - &556 + - *494 + - *495 + - &558 name: check_run_id description: The unique identifier of the check run. in: path @@ -81374,9 +81536,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *557 examples: - default: &557 + default: &559 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -81476,9 +81638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *492 - - *493 - - *556 + - *494 + - *495 + - *558 requestBody: required: true content: @@ -81718,9 +81880,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *557 examples: - default: *557 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81740,9 +81902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *492 - - *493 - - *556 + - *494 + - *495 + - *558 - *17 - *19 responses: @@ -81837,15 +81999,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *492 - - *493 - - *556 + - *494 + - *495 + - *558 responses: '201': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -81883,8 +82045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -81906,7 +82068,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &560 + schema: &562 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -81970,7 +82132,7 @@ paths: nullable: true pull_requests: type: array - items: *234 + items: *236 nullable: true app: title: GitHub app @@ -81981,9 +82143,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 - repository: *290 + properties: *226 + required: *227 + repository: *292 created_at: type: string format: date-time @@ -81992,12 +82154,12 @@ paths: type: string format: date-time nullable: true - head_commit: &928 + head_commit: &930 title: Simple Commit description: A commit. type: object - properties: *558 - required: *559 + properties: *560 + required: *561 latest_check_runs_count: type: integer check_runs_url: @@ -82025,7 +82187,7 @@ paths: - check_runs_url - pull_requests examples: - default: &561 + default: &563 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -82316,9 +82478,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82337,8 +82499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -82399,7 +82561,7 @@ paths: required: - app_id - setting - repository: *290 + repository: *292 examples: default: value: @@ -82647,9 +82809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *492 - - *493 - - &562 + - *494 + - *495 + - &564 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -82661,9 +82823,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82686,17 +82848,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: - - *492 - - *493 - - *562 - - &614 + - *494 + - *495 + - *564 + - &616 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &615 + - &617 name: status description: Returns check runs with the specified `status`. in: query @@ -82735,9 +82897,9 @@ paths: type: integer check_runs: type: array - items: *555 + items: *557 examples: - default: &616 + default: &618 value: total_count: 1 check_runs: @@ -82839,15 +83001,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *492 - - *493 - - *562 + - *494 + - *495 + - *564 responses: '201': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -82874,21 +83036,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: - - *492 - - *493 - - *330 - - *331 + - *494 + - *495 + - *332 + - *333 - *19 - *17 - - &578 + - &580 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: *563 - - &579 + schema: *565 + - &581 name: pr description: The number of the pull request for the results you want to list. in: query @@ -82913,13 +83075,13 @@ paths: be returned. in: query required: false - schema: *332 + schema: *334 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *564 + schema: *566 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -82943,7 +83105,7 @@ paths: updated_at: *139 url: *136 html_url: *137 - instances_url: *565 + instances_url: *567 state: *115 fixed_at: *141 dismissed_by: @@ -82954,11 +83116,11 @@ paths: required: *21 nullable: true dismissed_at: *140 - dismissed_reason: *566 - dismissed_comment: *567 - rule: *568 - tool: *569 - most_recent_instance: *570 + dismissed_reason: *568 + dismissed_comment: *569 + rule: *570 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -83084,7 +83246,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &571 + '403': &573 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -83111,9 +83273,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: - - *492 - - *493 - - &572 + - *494 + - *495 + - &574 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -83127,7 +83289,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &575 type: object properties: number: *131 @@ -83135,7 +83297,7 @@ paths: updated_at: *139 url: *136 html_url: *137 - instances_url: *565 + instances_url: *567 state: *115 fixed_at: *141 dismissed_by: @@ -83146,8 +83308,8 @@ paths: required: *21 nullable: true dismissed_at: *140 - dismissed_reason: *566 - dismissed_comment: *567 + dismissed_reason: *568 + dismissed_comment: *569 rule: type: object properties: @@ -83201,8 +83363,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *569 - most_recent_instance: *570 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -83301,7 +83463,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -83321,9 +83483,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 requestBody: required: true content: @@ -83338,8 +83500,8 @@ paths: enum: - open - dismissed - dismissed_reason: *566 - dismissed_comment: *567 + dismissed_reason: *568 + dismissed_comment: *569 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -83367,7 +83529,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *575 examples: default: value: @@ -83443,7 +83605,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &577 + '403': &579 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -83470,15 +83632,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 responses: '200': description: Response content: application/json: - schema: &574 + schema: &576 type: object properties: status: @@ -83504,13 +83666,13 @@ paths: - description - started_at examples: - default: &575 + default: &577 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &576 + '400': &578 description: Bad Request content: application/json: @@ -83521,7 +83683,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': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -83546,29 +83708,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 responses: '200': description: OK content: application/json: - schema: *574 + schema: *576 examples: - default: *575 + default: *577 '202': description: Accepted content: application/json: - schema: *574 + schema: *576 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *576 + '400': *578 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -83600,9 +83762,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 requestBody: required: false content: @@ -83647,8 +83809,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *576 - '403': *577 + '400': *578 + '403': *579 '404': *6 '422': description: Unprocessable Entity @@ -83672,13 +83834,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 - *19 - *17 - - *578 - - *579 + - *580 + - *581 responses: '200': description: Response @@ -83689,10 +83851,10 @@ paths: items: type: object properties: - ref: *563 - analysis_key: *580 - environment: *581 - category: *582 + ref: *565 + analysis_key: *582 + environment: *583 + category: *584 state: type: string description: State of a code scanning alert instance. @@ -83707,7 +83869,7 @@ paths: properties: text: type: string - location: *583 + location: *585 html_url: type: string classifications: @@ -83715,7 +83877,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *584 + items: *586 examples: default: value: @@ -83752,7 +83914,7 @@ paths: end_column: 50 classifications: - source - '403': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -83786,25 +83948,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: - - *492 - - *493 - - *330 - - *331 + - *494 + - *495 + - *332 + - *333 - *19 - *17 - - *579 + - *581 - 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: *563 + schema: *565 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &585 + schema: &587 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -83825,23 +83987,23 @@ paths: application/json: schema: type: array - items: &586 + items: &588 type: object properties: - ref: *563 - commit_sha: &594 + ref: *565 + commit_sha: &596 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *580 + analysis_key: *582 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *582 + category: *584 error: type: string example: error reading field xyz @@ -83865,8 +84027,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *585 - tool: *569 + sarif_id: *587 + tool: *571 deletable: type: boolean warning: @@ -83927,7 +84089,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -83963,8 +84125,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: - - *492 - - *493 + - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -83977,7 +84139,7 @@ paths: description: Response content: application/json: - schema: *586 + schema: *588 examples: response: summary: application/json response @@ -84031,7 +84193,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *571 + '403': *573 '404': *6 '422': description: Response if analysis could not be processed @@ -84118,8 +84280,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: - - *492 - - *493 + - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -84172,7 +84334,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': *577 + '403': *579 '404': *6 '503': *200 x-github: @@ -84194,8 +84356,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -84203,7 +84365,7 @@ paths: application/json: schema: type: array - items: &587 + items: &589 title: CodeQL Database description: A CodeQL database. type: object @@ -84314,7 +84476,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': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -84343,8 +84505,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: - - *492 - - *493 + - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -84356,7 +84518,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *589 examples: default: value: @@ -84388,9 +84550,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': &625 + '302': &627 description: Found - '403': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -84412,8 +84574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *492 - - *493 + - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -84423,7 +84585,7 @@ paths: responses: '204': description: Response - '403': *577 + '403': *579 '404': *6 '503': *200 x-github: @@ -84451,8 +84613,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -84461,7 +84623,7 @@ paths: type: object additionalProperties: false properties: - language: &588 + language: &590 type: string description: The language targeted by the CodeQL query enum: @@ -84541,7 +84703,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &592 + schema: &594 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -84551,7 +84713,7 @@ paths: description: The ID of the variant analysis. controller_repo: *122 actor: *4 - query_language: *588 + query_language: *590 query_pack_url: type: string description: The download url for the query pack. @@ -84598,7 +84760,7 @@ paths: items: type: object properties: - repository: &589 + repository: &591 title: Repository Identifier description: Repository Identifier type: object @@ -84634,7 +84796,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &593 + analysis_status: &595 type: string description: The new status of the CodeQL variant analysis repository task. @@ -84666,7 +84828,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &590 + access_mismatch_repos: &592 type: object properties: repository_count: @@ -84680,7 +84842,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: *589 + items: *591 required: - repository_count - repositories @@ -84702,8 +84864,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *590 - over_limit_repos: *590 + no_codeql_db_repos: *592 + over_limit_repos: *592 required: - access_mismatch_repos - not_found_repos @@ -84719,7 +84881,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &591 + value: &593 summary: Default response value: id: 1 @@ -84865,10 +85027,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *591 + value: *593 repository_lists: summary: Response for a successful variant analysis submission - value: *591 + value: *593 '404': *6 '422': description: Unable to process variant analysis submission @@ -84896,8 +85058,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: - - *492 - - *493 + - *494 + - *495 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -84909,9 +85071,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: - default: *591 + default: *593 '404': *6 '503': *200 x-github: @@ -84934,7 +85096,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: - - *492 + - *494 - name: repo in: path description: The name of the controller repository. @@ -84969,7 +85131,7 @@ paths: type: object properties: repository: *122 - analysis_status: *593 + analysis_status: *595 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -85094,8 +85256,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -85180,7 +85342,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *571 + '403': *573 '404': *6 '503': *200 x-github: @@ -85201,8 +85363,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -85269,7 +85431,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -85294,7 +85456,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *577 + '403': *579 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -85365,8 +85527,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -85374,7 +85536,7 @@ paths: schema: type: object properties: - commit_sha: *594 + commit_sha: *596 ref: type: string description: |- @@ -85432,7 +85594,7 @@ paths: schema: type: object properties: - id: *585 + id: *587 url: type: string description: The REST API URL for checking the status of the upload. @@ -85446,7 +85608,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': *577 + '403': *579 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -85469,8 +85631,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: - - *492 - - *493 + - *494 + - *495 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -85516,7 +85678,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': *571 + '403': *573 '404': description: Not Found if the sarif id does not match any upload '503': *200 @@ -85541,8 +85703,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -85623,8 +85785,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *492 - - *493 + - *494 + - *495 - 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 @@ -85744,8 +85906,8 @@ paths: parameters: - *17 - *19 - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -85761,7 +85923,7 @@ paths: type: integer codespaces: type: array - items: *406 + items: *408 examples: default: value: @@ -86059,8 +86221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -86123,17 +86285,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '400': *14 '401': *25 '403': *29 @@ -86162,8 +86324,8 @@ paths: parameters: - *17 - *19 - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -86227,8 +86389,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: - - *492 - - *493 + - *494 + - *495 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -86263,14 +86425,14 @@ paths: type: integer machines: type: array - items: &839 + items: &841 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *596 - required: *597 + properties: *598 + required: *599 examples: - default: &840 + default: &842 value: total_count: 2 machines: @@ -86310,8 +86472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *492 - - *493 + - *494 + - *495 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -86395,8 +86557,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: - - *492 - - *493 + - *494 + - *495 - 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 @@ -86462,8 +86624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -86481,7 +86643,7 @@ paths: type: integer secrets: type: array - items: &601 + items: &603 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -86501,7 +86663,7 @@ paths: - created_at - updated_at examples: - default: *598 + default: *600 headers: Link: *47 x-github: @@ -86524,16 +86686,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: *600 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86553,17 +86715,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '200': description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: *602 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86583,9 +86745,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: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 requestBody: required: true content: @@ -86613,7 +86775,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -86637,9 +86799,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '204': description: Response @@ -86667,8 +86829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *492 - - *493 + - *494 + - *495 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -86710,7 +86872,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &603 + properties: &605 login: type: string example: octocat @@ -86803,7 +86965,7 @@ paths: user_view_type: type: string example: public - required: &604 + required: &606 - avatar_url - events_url - followers_url @@ -86877,8 +87039,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *492 - - *493 + - *494 + - *495 - *148 responses: '204': @@ -86925,8 +87087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *492 - - *493 + - *494 + - *495 - *148 requestBody: required: false @@ -86953,7 +87115,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &681 + schema: &683 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -86964,7 +87126,7 @@ paths: example: 42 type: integer format: int64 - repository: *290 + repository: *292 invitee: title: Simple User description: A GitHub user. @@ -87142,7 +87304,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *265 + schema: *267 '403': *29 x-github: triggersNotification: true @@ -87182,8 +87344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *492 - - *493 + - *494 + - *495 - *148 responses: '204': @@ -87215,8 +87377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *492 - - *493 + - *494 + - *495 - *148 responses: '200': @@ -87237,8 +87399,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *603 - required: *604 + properties: *605 + required: *606 nullable: true required: - permission @@ -87293,8 +87455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -87304,7 +87466,7 @@ paths: application/json: schema: type: array - items: &605 + items: &607 title: Commit Comment description: Commit Comment type: object @@ -87345,8 +87507,8 @@ paths: updated_at: type: string format: date-time - author_association: *226 - reactions: *227 + author_association: *228 + reactions: *229 required: - url - html_url @@ -87362,7 +87524,7 @@ paths: - created_at - updated_at examples: - default: &610 + default: &612 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -87421,17 +87583,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '200': description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: &611 + default: &613 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -87488,9 +87650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -87512,7 +87674,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: default: value: @@ -87563,9 +87725,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '204': description: Response @@ -87586,9 +87748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 - 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. @@ -87614,7 +87776,7 @@ paths: application/json: schema: type: array - items: &606 + items: &608 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -87657,7 +87819,7 @@ paths: - content - created_at examples: - default: &685 + default: &687 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -87702,9 +87864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -87736,9 +87898,9 @@ paths: description: Reaction exists content: application/json: - schema: *606 + schema: *608 examples: - default: &607 + default: &609 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -87767,9 +87929,9 @@ paths: description: Reaction created content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -87791,10 +87953,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *492 - - *493 - - *245 - - &686 + - *494 + - *495 + - *247 + - &688 name: reaction_id description: The unique identifier of the reaction. in: path @@ -87849,8 +88011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *492 - - *493 + - *494 + - *495 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -87906,9 +88068,9 @@ paths: application/json: schema: type: array - items: *608 + items: *610 examples: - default: &739 + default: &741 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88002,9 +88164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *492 - - *493 - - &609 + - *494 + - *495 + - &611 name: commit_sha description: The SHA of the commit. in: path @@ -88076,9 +88238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *492 - - *493 - - *609 + - *494 + - *495 + - *611 - *17 - *19 responses: @@ -88088,9 +88250,9 @@ paths: application/json: schema: type: array - items: *605 + items: *607 examples: - default: *610 + default: *612 headers: Link: *47 x-github: @@ -88118,9 +88280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *492 - - *493 - - *609 + - *494 + - *495 + - *611 requestBody: required: true content: @@ -88155,9 +88317,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: *611 + default: *613 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88185,9 +88347,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: - - *492 - - *493 - - *609 + - *494 + - *495 + - *611 - *17 - *19 responses: @@ -88197,9 +88359,9 @@ paths: application/json: schema: type: array - items: *612 + items: *614 examples: - default: &731 + default: &733 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88736,11 +88898,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *492 - - *493 + - *494 + - *495 - *19 - *17 - - &613 + - &615 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)" @@ -88755,9 +88917,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: &716 + default: &718 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88845,7 +89007,7 @@ paths: schema: type: string examples: - default: &622 + default: &624 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -88858,7 +89020,7 @@ paths: schema: type: string examples: - default: &623 + default: &625 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -88911,11 +89073,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: - - *492 - - *493 - - *613 - - *614 + - *494 + - *495 - *615 + - *616 + - *617 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -88949,9 +89111,9 @@ paths: type: integer check_runs: type: array - items: *555 + items: *557 examples: - default: *616 + default: *618 headers: Link: *47 x-github: @@ -88976,9 +89138,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: - - *492 - - *493 - - *613 + - *494 + - *495 + - *615 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -88986,7 +89148,7 @@ paths: schema: type: integer example: 1 - - *614 + - *616 - *17 - *19 responses: @@ -89004,7 +89166,7 @@ paths: type: integer check_suites: type: array - items: *560 + items: *562 examples: default: value: @@ -89204,9 +89366,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: - - *492 - - *493 - - *613 + - *494 + - *495 + - *615 - *17 - *19 responses: @@ -89273,7 +89435,7 @@ paths: type: string total_count: type: integer - repository: *290 + repository: *292 commit_url: type: string format: uri @@ -89404,9 +89566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *492 - - *493 - - *613 + - *494 + - *495 + - *615 - *17 - *19 responses: @@ -89416,7 +89578,7 @@ paths: application/json: schema: type: array - items: &793 + items: &795 title: Status description: The status of a commit. type: object @@ -89497,7 +89659,7 @@ paths: site_admin: false headers: Link: *47 - '301': *498 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89525,8 +89687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -89555,20 +89717,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *617 - required: *618 + properties: *619 + required: *620 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &619 + properties: &621 url: type: string format: uri html_url: type: string format: uri - required: &620 + required: &622 - url - html_url nullable: true @@ -89576,32 +89738,32 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true contributing: title: Community Health File type: object - properties: *619 - required: *620 + properties: *621 + required: *622 nullable: true readme: title: Community Health File type: object - properties: *619 - required: *620 + properties: *621 + required: *622 nullable: true issue_template: title: Community Health File type: object - properties: *619 - required: *620 + properties: *621 + required: *622 nullable: true pull_request_template: title: Community Health File type: object - properties: *619 - required: *620 + properties: *621 + required: *622 nullable: true required: - code_of_conduct @@ -89728,8 +89890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *492 - - *493 + - *494 + - *495 - *19 - *17 - name: basehead @@ -89772,8 +89934,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *608 - merge_base_commit: *608 + base_commit: *610 + merge_base_commit: *610 status: type: string enum: @@ -89793,10 +89955,10 @@ paths: example: 6 commits: type: array - items: *608 + items: *610 files: type: array - items: *621 + items: *623 required: - url - html_url @@ -90042,12 +90204,12 @@ paths: schema: type: string examples: - default: *622 + default: *624 application/vnd.github.patch: schema: type: string examples: - default: *623 + default: *625 '404': *6 '500': *40 '503': *200 @@ -90092,8 +90254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *492 - - *493 + - *494 + - *495 - name: path description: path parameter in: path @@ -90253,7 +90415,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &624 + response-if-content-is-a-file-github-object: &626 summary: Response if content is a file value: type: file @@ -90385,7 +90547,7 @@ paths: - size - type - url - - &744 + - &746 title: Content File description: Content File type: object @@ -90586,7 +90748,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *624 + response-if-content-is-a-file: *626 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -90655,7 +90817,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *625 + '302': *627 '304': *37 x-github: githubCloudOnly: false @@ -90678,8 +90840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *492 - - *493 + - *494 + - *495 - name: path description: path parameter in: path @@ -90772,7 +90934,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &628 title: File Commit description: File Commit type: object @@ -90924,7 +91086,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: example-for-creating-a-file: value: @@ -90978,7 +91140,7 @@ paths: schema: oneOf: - *3 - - &664 + - &666 description: Repository rule violation was detected type: object properties: @@ -90999,7 +91161,7 @@ paths: items: type: object properties: - placeholder_id: &785 + placeholder_id: &787 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -91031,8 +91193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *492 - - *493 + - *494 + - *495 - name: path description: path parameter in: path @@ -91093,7 +91255,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: default: value: @@ -91148,8 +91310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *492 - - *493 + - *494 + - *495 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -91278,8 +91440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -91411,24 +91573,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *492 - - *493 - - *351 - - *352 + - *494 + - *495 - *353 - *354 - *355 + - *356 + - *357 - 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 - - *356 - - *627 - - *357 - *358 + - *629 - *359 + - *360 + - *361 - *112 - *110 - *111 @@ -91440,7 +91602,7 @@ paths: application/json: schema: type: array - items: &631 + items: &633 type: object description: A Dependabot alert. properties: @@ -91487,7 +91649,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *628 + security_advisory: *630 security_vulnerability: *135 url: *136 html_url: *137 @@ -91518,8 +91680,8 @@ paths: nullable: true maxLength: 280 fixed_at: *141 - auto_dismissed_at: *629 - dismissal_request: *630 + auto_dismissed_at: *631 + dismissal_request: *632 assignees: type: array description: The users assigned to this alert. @@ -91774,9 +91936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *492 - - *493 - - &632 + - *494 + - *495 + - &634 name: alert_number in: path description: |- @@ -91791,7 +91953,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *633 examples: default: value: @@ -91923,9 +92085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *492 - - *493 - - *632 + - *494 + - *495 + - *634 requestBody: required: true content: @@ -91981,7 +92143,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *633 examples: default: value: @@ -92111,8 +92273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -92130,7 +92292,7 @@ paths: type: integer secrets: type: array - items: &635 + items: &637 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -92183,16 +92345,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *634 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92212,15 +92374,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '200': description: Response content: application/json: - schema: *635 + schema: *637 examples: default: value: @@ -92246,9 +92408,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 requestBody: required: true content: @@ -92276,7 +92438,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -92300,9 +92462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *492 - - *493 - - *300 + - *494 + - *495 + - *302 responses: '204': description: Response @@ -92324,8 +92486,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: - - *492 - - *493 + - *494 + - *495 - 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 @@ -92488,8 +92650,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -92727,8 +92889,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - name: sbom_uuid in: path required: true @@ -92739,7 +92901,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *636 + Location: *638 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -92760,8 +92922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '201': description: Response @@ -92799,8 +92961,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -92875,7 +93037,7 @@ paths: - version - url additionalProperties: false - metadata: &637 + metadata: &639 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92908,7 +93070,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *637 + metadata: *639 resolved: type: object description: A collection of resolved package dependencies. @@ -92921,7 +93083,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *637 + metadata: *639 relationship: type: string description: A notation of whether a dependency is requested @@ -93050,8 +93212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *492 - - *493 + - *494 + - *495 - name: sha description: The SHA recorded at creation time. in: query @@ -93091,9 +93253,9 @@ paths: application/json: schema: type: array - items: *638 + items: *640 examples: - default: *639 + default: *641 headers: Link: *47 x-github: @@ -93159,8 +93321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -93241,7 +93403,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: simple-example: summary: Simple example @@ -93314,9 +93476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *492 - - *493 - - &640 + - *494 + - *495 + - &642 name: deployment_id description: deployment_id parameter in: path @@ -93328,7 +93490,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: default: value: @@ -93393,9 +93555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *492 - - *493 - - *640 + - *494 + - *495 + - *642 responses: '204': description: Response @@ -93417,9 +93579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *492 - - *493 - - *640 + - *494 + - *495 + - *642 - *17 - *19 responses: @@ -93429,7 +93591,7 @@ paths: application/json: schema: type: array - items: &641 + items: &643 title: Deployment Status description: The status of a deployment. type: object @@ -93520,8 +93682,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 required: - id - node_id @@ -93590,9 +93752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *492 - - *493 - - *640 + - *494 + - *495 + - *642 requestBody: required: true content: @@ -93667,9 +93829,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: &642 + default: &644 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -93725,9 +93887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *492 - - *493 - - *640 + - *494 + - *495 + - *642 - name: status_id in: path required: true @@ -93738,9 +93900,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: *642 + default: *644 '404': *6 x-github: githubCloudOnly: false @@ -93767,12 +93929,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 - - *643 - - *644 + - *494 + - *495 - *645 - *646 + - *647 + - *648 - *17 - *19 responses: @@ -93782,9 +93944,9 @@ paths: application/json: schema: type: array - items: *647 + items: *649 examples: - default: *648 + default: *650 '404': *6 '403': *29 '500': *40 @@ -93808,8 +93970,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -93821,7 +93983,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *647 + schema: *649 examples: default: value: @@ -93877,8 +94039,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -93937,12 +94099,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *492 - - *493 - - *643 - - *644 + - *494 + - *495 - *645 - *646 + - *647 + - *648 - *17 - *19 responses: @@ -93952,9 +94114,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 '404': *6 '403': *29 '500': *40 @@ -93978,8 +94140,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -93991,7 +94153,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *649 + schema: *651 examples: default: value: @@ -94042,8 +94204,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -94081,7 +94243,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *649 + schema: *651 examples: default: value: @@ -94132,8 +94294,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -94204,8 +94366,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -94238,12 +94400,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - *105 - *106 - *107 - - *365 + - *367 - *17 - *19 responses: @@ -94253,9 +94415,9 @@ paths: application/json: schema: type: array - items: *367 + items: *369 examples: - default: *368 + default: *370 '404': *6 '403': *29 '500': *40 @@ -94280,8 +94442,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -94293,7 +94455,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -94351,8 +94513,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: alert_number in: path required: true @@ -94421,8 +94583,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -94479,8 +94641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -94497,7 +94659,7 @@ paths: type: integer environments: type: array - items: &652 + items: &654 title: Environment description: Details of a deployment environment type: object @@ -94549,7 +94711,7 @@ paths: type: type: string example: wait_timer - wait_timer: &654 + wait_timer: &656 type: integer example: 30 description: The amount of time to delay a job after @@ -94586,11 +94748,11 @@ paths: items: type: object properties: - type: *651 + type: *653 reviewer: anyOf: - *4 - - *326 + - *328 required: - id - node_id @@ -94610,7 +94772,7 @@ paths: - id - node_id - type - deployment_branch_policy: &655 + deployment_branch_policy: &657 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -94726,9 +94888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *492 - - *493 - - &653 + - *494 + - *495 + - &655 name: environment_name in: path required: true @@ -94741,9 +94903,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *654 examples: - default: &656 + default: &658 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -94827,9 +94989,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 requestBody: required: false content: @@ -94838,7 +95000,7 @@ paths: type: object nullable: true properties: - wait_timer: *654 + wait_timer: *656 prevent_self_review: type: boolean example: false @@ -94855,13 +95017,13 @@ paths: items: type: object properties: - type: *651 + type: *653 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *655 + deployment_branch_policy: *657 additionalProperties: false examples: default: @@ -94881,9 +95043,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *654 examples: - default: *656 + default: *658 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -94907,9 +95069,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 responses: '204': description: Default response @@ -94934,9 +95096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 - *17 - *19 responses: @@ -94954,7 +95116,7 @@ paths: example: 2 branch_policies: type: array - items: &657 + items: &659 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -95011,9 +95173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 requestBody: required: true content: @@ -95059,9 +95221,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *659 examples: - example-wildcard: &658 + example-wildcard: &660 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -95103,10 +95265,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *492 - - *493 - - *653 - - &659 + - *494 + - *495 + - *655 + - &661 name: branch_policy_id in: path required: true @@ -95118,9 +95280,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *659 examples: - default: *658 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95139,10 +95301,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *492 - - *493 - - *653 - - *659 + - *494 + - *495 + - *655 + - *661 requestBody: required: true content: @@ -95170,9 +95332,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *659 examples: - default: *658 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95191,10 +95353,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *492 - - *493 - - *653 - - *659 + - *494 + - *495 + - *655 + - *661 responses: '204': description: Response @@ -95219,9 +95381,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: - - *653 - - *493 - - *492 + - *655 + - *495 + - *494 responses: '200': description: List of deployment protection rules @@ -95237,7 +95399,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &660 + items: &662 title: Deployment protection rule description: Deployment protection rule type: object @@ -95256,7 +95418,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &661 + app: &663 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -95355,9 +95517,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: - - *653 - - *493 - - *492 + - *655 + - *495 + - *494 requestBody: content: application/json: @@ -95378,9 +95540,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *660 + schema: *662 examples: - default: &662 + default: &664 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -95415,9 +95577,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: - - *653 - - *493 - - *492 + - *655 + - *495 + - *494 - *19 - *17 responses: @@ -95436,7 +95598,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *661 + items: *663 examples: default: value: @@ -95471,10 +95633,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: - - *492 - - *493 - - *653 - - &663 + - *494 + - *495 + - *655 + - &665 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -95486,9 +95648,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: - default: *662 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95509,10 +95671,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: - - *653 - - *493 - - *492 - - *663 + - *655 + - *495 + - *494 + - *665 responses: '204': description: Response @@ -95538,9 +95700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 - *17 - *19 responses: @@ -95558,9 +95720,9 @@ paths: type: integer secrets: type: array - items: *522 + items: *524 examples: - default: *523 + default: *525 headers: Link: *47 x-github: @@ -95585,17 +95747,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 responses: '200': description: Response content: application/json: - schema: *306 + schema: *308 examples: - default: *307 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95617,18 +95779,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *492 - - *493 - - *653 - - *300 + - *494 + - *495 + - *655 + - *302 responses: '200': description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *536 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95650,10 +95812,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *492 - - *493 - - *653 - - *300 + - *494 + - *495 + - *655 + - *302 requestBody: required: true content: @@ -95684,7 +95846,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -95710,10 +95872,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *492 - - *493 - - *653 - - *300 + - *494 + - *495 + - *655 + - *302 responses: '204': description: Default response @@ -95738,10 +95900,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *492 - - *493 - - *653 - - *309 + - *494 + - *495 + - *655 + - *311 - *19 responses: '200': @@ -95758,9 +95920,9 @@ paths: type: integer variables: type: array - items: *524 + items: *526 examples: - default: *525 + default: *527 headers: Link: *47 x-github: @@ -95783,9 +95945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *492 - - *493 - - *653 + - *494 + - *495 + - *655 requestBody: required: true content: @@ -95812,7 +95974,7 @@ paths: description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -95837,18 +95999,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *492 - - *493 - - *653 - - *303 + - *494 + - *495 + - *655 + - *305 responses: '200': description: Response content: application/json: - schema: *524 + schema: *526 examples: - default: *537 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95869,10 +96031,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *492 - - *493 - - *303 - - *653 + - *494 + - *495 + - *305 + - *655 requestBody: required: true content: @@ -95914,10 +96076,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *492 - - *493 - - *303 - - *653 + - *494 + - *495 + - *305 + - *655 responses: '204': description: Response @@ -95939,8 +96101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -95950,7 +96112,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: 200-response: value: @@ -96008,8 +96170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *492 - - *493 + - *494 + - *495 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -96031,7 +96193,7 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: default: value: @@ -96168,8 +96330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -96201,9 +96363,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *499 + default: *501 '400': *14 '422': *15 '403': *29 @@ -96224,8 +96386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -96284,8 +96446,8 @@ paths: application/json: schema: oneOf: - - *265 - - *664 + - *267 + - *666 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96310,8 +96472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *492 - - *493 + - *494 + - *495 - name: file_sha in: path required: true @@ -96410,8 +96572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -96520,7 +96682,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &667 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -96734,15 +96896,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *492 - - *493 - - *609 + - *494 + - *495 + - *611 responses: '200': description: Response content: application/json: - schema: *665 + schema: *667 examples: default: value: @@ -96798,9 +96960,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *492 - - *493 - - &666 + - *494 + - *495 + - &668 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. @@ -96817,7 +96979,7 @@ paths: application/json: schema: type: array - items: &667 + items: &669 title: Git Reference description: Git references within a repository type: object @@ -96892,17 +97054,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *492 - - *493 - - *666 + - *494 + - *495 + - *668 responses: '200': description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: &668 + default: &670 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -96931,8 +97093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -96961,9 +97123,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -96989,9 +97151,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *492 - - *493 - - *666 + - *494 + - *495 + - *668 requestBody: required: true content: @@ -97020,9 +97182,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 '422': *15 '409': *121 x-github: @@ -97040,9 +97202,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *492 - - *493 - - *666 + - *494 + - *495 + - *668 responses: '204': description: Response @@ -97097,8 +97259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -97165,7 +97327,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &672 title: Git Tag description: Metadata for a Git tag type: object @@ -97216,7 +97378,7 @@ paths: - sha - type - url - verification: *669 + verification: *671 required: - sha - url @@ -97226,7 +97388,7 @@ paths: - tag - message examples: - default: &671 + default: &673 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -97299,8 +97461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *492 - - *493 + - *494 + - *495 - name: tag_sha in: path required: true @@ -97311,9 +97473,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: *671 + default: *673 '404': *6 '409': *121 x-github: @@ -97337,8 +97499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -97411,7 +97573,7 @@ paths: description: Response content: application/json: - schema: &672 + schema: &674 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -97507,8 +97669,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *492 - - *493 + - *494 + - *495 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -97531,7 +97693,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: default-response: summary: Default response @@ -97589,8 +97751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -97633,8 +97795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -97644,7 +97806,7 @@ paths: application/json: schema: type: array - items: &673 + items: &675 title: Webhook description: Webhooks for repositories. type: object @@ -97698,7 +97860,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &936 + last_response: &938 title: Hook Response type: object properties: @@ -97772,8 +97934,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -97825,9 +97987,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: &674 + default: &676 value: type: Repository id: 12345678 @@ -97875,17 +98037,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 responses: '200': description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: *674 + default: *676 '404': *6 x-github: githubCloudOnly: false @@ -97905,9 +98067,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 requestBody: required: true content: @@ -97952,9 +98114,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: *674 + default: *676 '422': *15 '404': *6 x-github: @@ -97975,9 +98137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 responses: '204': description: Response @@ -98001,9 +98163,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: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 responses: '200': description: Response @@ -98030,9 +98192,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: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 requestBody: required: false content: @@ -98076,12 +98238,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *492 - - *493 - - *373 - - *17 - - *374 + - *494 + - *495 - *375 + - *17 + - *376 + - *377 responses: '200': description: Response @@ -98089,9 +98251,9 @@ paths: application/json: schema: type: array - items: *376 + items: *378 examples: - default: *377 + default: *379 '400': *14 '422': *15 x-github: @@ -98110,18 +98272,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: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 - *16 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: - default: *379 + default: *381 '400': *14 '422': *15 x-github: @@ -98140,9 +98302,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: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 - *16 responses: '202': *39 @@ -98165,9 +98327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 responses: '204': description: Response @@ -98192,9 +98354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *492 - - *493 - - *373 + - *494 + - *495 + - *375 responses: '204': description: Response @@ -98217,8 +98379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response if immutable releases are enabled @@ -98264,8 +98426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': *130 '409': *121 @@ -98285,8 +98447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': *130 '409': *121 @@ -98343,14 +98505,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &675 + schema: &677 title: Import description: A repository import from an external source. type: object @@ -98449,7 +98611,7 @@ paths: - html_url - authors_url examples: - default: &678 + default: &680 value: vcs: subversion use_lfs: true @@ -98465,7 +98627,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': &676 + '503': &678 description: Unavailable due to service under maintenance. content: application/json: @@ -98494,8 +98656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -98543,7 +98705,7 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: default: value: @@ -98568,7 +98730,7 @@ paths: type: string '422': *15 '404': *6 - '503': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98596,8 +98758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -98646,7 +98808,7 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: example-1: summary: Example 1 @@ -98694,7 +98856,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': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98717,12 +98879,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response - '503': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98748,9 +98910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *492 - - *493 - - &861 + - *494 + - *495 + - &863 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -98764,7 +98926,7 @@ paths: application/json: schema: type: array - items: &677 + items: &679 title: Porter Author description: Porter Author type: object @@ -98818,7 +98980,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': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98843,8 +99005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *492 - - *493 + - *494 + - *495 - name: author_id in: path required: true @@ -98874,7 +99036,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *679 examples: default: value: @@ -98887,7 +99049,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98911,8 +99073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -98953,7 +99115,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98981,8 +99143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -99009,11 +99171,11 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *678 + default: *680 '422': *15 - '503': *676 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99036,8 +99198,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -99045,8 +99207,8 @@ paths: application/json: schema: *22 examples: - default: *391 - '301': *498 + default: *393 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -99066,8 +99228,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -99075,12 +99237,12 @@ paths: application/json: schema: anyOf: - - *393 + - *395 - type: object properties: {} additionalProperties: false examples: - default: &680 + default: &682 value: limit: collaborators_only origin: repository @@ -99105,13 +99267,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: application/json: - schema: *679 + schema: *681 examples: default: summary: Example request body @@ -99123,9 +99285,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *680 + default: *682 '409': description: Response x-github: @@ -99147,8 +99309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -99171,8 +99333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -99182,9 +99344,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: &854 + default: &856 value: - id: 1 repository: @@ -99315,9 +99477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *492 - - *493 - - *397 + - *494 + - *495 + - *399 requestBody: required: false content: @@ -99346,7 +99508,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: default: value: @@ -99477,9 +99639,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *492 - - *493 - - *397 + - *494 + - *495 + - *399 responses: '204': description: Response @@ -99510,8 +99672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *492 - - *493 + - *494 + - *495 - 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 @@ -99573,7 +99735,7 @@ paths: required: false schema: type: string - - *404 + - *406 - name: sort description: What to sort results by. in: query @@ -99586,7 +99748,7 @@ paths: - comments default: created - *112 - - *236 + - *238 - *17 - *19 responses: @@ -99596,9 +99758,9 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: &693 + default: &695 value: - id: 1 node_id: MDU6SXNzdWUx @@ -99747,7 +99909,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *498 + '301': *500 '422': *15 '404': *6 x-github: @@ -99776,8 +99938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -99880,9 +100042,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: &690 + default: &692 value: id: 1 node_id: MDU6SXNzdWUx @@ -100039,7 +100201,7 @@ paths: '422': *15 '503': *200 '404': *6 - '410': *682 + '410': *684 x-github: triggersNotification: true githubCloudOnly: false @@ -100067,9 +100229,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *492 - - *493 - - *253 + - *494 + - *495 + - *255 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -100079,7 +100241,7 @@ paths: enum: - asc - desc - - *236 + - *238 - *17 - *19 responses: @@ -100089,9 +100251,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: &692 + default: &694 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -100149,17 +100311,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '200': description: Response content: application/json: - schema: *683 + schema: *685 examples: - default: &684 + default: &686 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -100214,9 +100376,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -100238,9 +100400,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 '422': *15 x-github: githubCloudOnly: false @@ -100258,9 +100420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '204': description: Response @@ -100288,15 +100450,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '200': description: Response content: application/json: - schema: *683 + schema: *685 examples: default: value: @@ -100352,7 +100514,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *682 + '410': *684 '422': *15 x-github: githubCloudOnly: false @@ -100369,16 +100531,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *682 + '410': *684 '503': *200 x-github: githubCloudOnly: false @@ -100396,9 +100558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 - 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. @@ -100424,9 +100586,9 @@ paths: application/json: schema: type: array - items: *606 + items: *608 examples: - default: *685 + default: *687 headers: Link: *47 '404': *6 @@ -100447,9 +100609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -100481,16 +100643,16 @@ paths: description: Reaction exists content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '201': description: Reaction created content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -100512,10 +100674,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *492 - - *493 - - *245 - - *686 + - *494 + - *495 + - *247 + - *688 responses: '204': description: Response @@ -100535,8 +100697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -100546,7 +100708,7 @@ paths: application/json: schema: type: array - items: &689 + items: &691 title: Issue Event description: Issue Event type: object @@ -100589,8 +100751,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *687 - required: *688 + properties: *689 + required: *690 nullable: true label: title: Issue Event Label @@ -100634,7 +100796,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *326 + requested_team: *328 dismissed_review: title: Issue Event Dismissed Review type: object @@ -100699,7 +100861,7 @@ paths: required: - from - to - author_association: *226 + author_association: *228 lock_reason: type: string nullable: true @@ -100712,8 +100874,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 required: - id - node_id @@ -100898,8 +101060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *492 - - *493 + - *494 + - *495 - name: event_id in: path required: true @@ -100910,7 +101072,7 @@ paths: description: Response content: application/json: - schema: *689 + schema: *691 examples: default: value: @@ -101103,7 +101265,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *682 + '410': *684 '403': *29 x-github: githubCloudOnly: false @@ -101137,9 +101299,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *492 - - *493 - - &691 + - *494 + - *495 + - &693 name: issue_number description: The number that identifies the issue. in: path @@ -101151,11 +101313,11 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: default: summary: Issue - value: *690 + value: *692 pinned_comment: summary: Issue with pinned comment value: @@ -101354,9 +101516,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 '304': *37 x-github: githubCloudOnly: false @@ -101381,9 +101543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: false content: @@ -101507,15 +101669,15 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 '422': *15 '503': *200 '403': *29 - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101533,9 +101695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: false content: @@ -101561,9 +101723,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101579,9 +101741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: content: application/json: @@ -101606,9 +101768,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101630,9 +101792,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: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - name: assignee in: path required: true @@ -101672,10 +101834,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *492 - - *493 - - *691 - - *236 + - *494 + - *495 + - *693 + - *238 - *17 - *19 responses: @@ -101685,13 +101847,13 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: *692 + default: *694 headers: Link: *47 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101720,9 +101882,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -101744,16 +101906,16 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *682 + '410': *684 '422': *15 '404': *6 x-github: @@ -101781,9 +101943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -101793,14 +101955,14 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: *693 + default: *695 headers: Link: *47 - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101828,9 +101990,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -101852,17 +102014,17 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *498 + '301': *500 '403': *29 - '410': *682 + '410': *684 '422': *15 '404': *6 x-github: @@ -101893,9 +102055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -101907,15 +102069,15 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 - '301': *498 + default: *692 + '301': *500 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *682 + '410': *684 x-github: triggersNotification: true githubCloudOnly: false @@ -101941,9 +102103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -101953,14 +102115,14 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: *693 + default: *695 headers: Link: *47 - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101977,9 +102139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -101993,7 +102155,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &697 + - &699 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -102024,8 +102186,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 label: type: object properties: @@ -102047,7 +102209,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &698 + - &700 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -102078,8 +102240,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 label: type: object properties: @@ -102167,8 +102329,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 assignee: *4 assigner: *4 required: @@ -102183,7 +102345,7 @@ paths: - performed_via_github_app - assignee - assigner - - &699 + - &701 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -102214,8 +102376,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 milestone: type: object properties: @@ -102234,7 +102396,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &700 + - &702 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -102265,8 +102427,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 milestone: type: object properties: @@ -102285,7 +102447,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &701 + - &703 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -102316,8 +102478,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 rename: type: object properties: @@ -102339,7 +102501,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &702 + - &704 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -102370,10 +102532,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 review_requester: *4 - requested_team: *326 + requested_team: *328 requested_reviewer: *4 required: - review_requester @@ -102386,7 +102548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &703 + - &705 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -102417,10 +102579,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 review_requester: *4 - requested_team: *326 + requested_team: *328 requested_reviewer: *4 required: - review_requester @@ -102433,7 +102595,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &706 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -102464,8 +102626,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 dismissed_review: type: object properties: @@ -102493,7 +102655,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &705 + - &707 title: Locked Issue Event description: Locked Issue Event type: object @@ -102524,8 +102686,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 lock_reason: type: string example: '"off-topic"' @@ -102541,7 +102703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &708 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -102572,8 +102734,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 project_card: type: object properties: @@ -102607,7 +102769,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &709 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -102638,8 +102800,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 project_card: type: object properties: @@ -102673,7 +102835,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &710 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -102704,8 +102866,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 project_card: type: object properties: @@ -102739,7 +102901,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &711 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -102830,7 +102992,7 @@ paths: color: red headers: Link: *47 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102847,9 +103009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -102859,9 +103021,9 @@ paths: application/json: schema: type: array - items: *694 + items: *696 examples: - default: &695 + default: &697 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -102885,9 +103047,9 @@ paths: value: '2025-12-25' headers: Link: *47 - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102916,9 +103078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -102982,9 +103144,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *694 + items: *696 examples: - default: *695 + default: *697 '400': *14 '403': *29 '404': *6 @@ -103020,9 +103182,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -103087,9 +103249,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *694 + items: *696 examples: - default: *695 + default: *697 '400': *14 '403': *29 '404': *6 @@ -103120,10 +103282,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *492 - - *493 - - *691 - - *400 + - *494 + - *495 + - *693 + - *402 responses: '204': description: Issue field value deleted successfully @@ -103148,9 +103310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -103160,9 +103322,9 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: - default: &696 + default: &698 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -103180,9 +103342,9 @@ paths: default: false headers: Link: *47 - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103198,9 +103360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: false content: @@ -103243,12 +103405,12 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: - default: *696 - '301': *498 + default: *698 + '301': *500 '404': *6 - '410': *682 + '410': *684 '422': *15 x-github: githubCloudOnly: false @@ -103265,9 +103427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: false content: @@ -103327,12 +103489,12 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: - default: *696 - '301': *498 + default: *698 + '301': *500 '404': *6 - '410': *682 + '410': *684 '422': *15 x-github: githubCloudOnly: false @@ -103349,15 +103511,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 responses: '204': description: Response - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103376,9 +103538,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - name: name in: path required: true @@ -103391,7 +103553,7 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: default: value: @@ -103402,9 +103564,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *498 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103424,9 +103586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: false content: @@ -103454,7 +103616,7 @@ paths: '204': description: Response '403': *29 - '410': *682 + '410': *684 '404': *6 '422': *15 x-github: @@ -103472,9 +103634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 responses: '204': description: Response @@ -103504,20 +103666,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 responses: '200': description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 - '301': *498 + default: *692 + '301': *500 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103534,9 +103696,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - 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. @@ -103562,13 +103724,13 @@ paths: application/json: schema: type: array - items: *606 + items: *608 examples: - default: *685 + default: *687 headers: Link: *47 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103586,9 +103748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -103620,16 +103782,16 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '201': description: Response content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -103651,10 +103813,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *492 - - *493 - - *691 - - *686 + - *494 + - *495 + - *693 + - *688 responses: '204': description: Response @@ -103683,9 +103845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -103707,9 +103869,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -103742,9 +103904,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -103754,13 +103916,13 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: *693 + default: *695 headers: Link: *47 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103788,9 +103950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -103817,16 +103979,16 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *682 + '410': *684 '422': *15 '404': *6 x-github: @@ -103846,9 +104008,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 requestBody: required: true content: @@ -103879,9 +104041,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *231 examples: - default: *690 + default: *692 '403': *29 '404': *6 '422': *7 @@ -103903,9 +104065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *492 - - *493 - - *691 + - *494 + - *495 + - *693 - *17 - *19 responses: @@ -103920,8 +104082,6 @@ paths: description: Timeline Event type: object anyOf: - - *697 - - *698 - *699 - *700 - *701 @@ -103933,6 +104093,8 @@ paths: - *707 - *708 - *709 + - *710 + - *711 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -103975,7 +104137,7 @@ paths: issue_url: type: string format: uri - author_association: *226 + author_association: *228 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -103985,16 +104147,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 - reactions: *227 + properties: *226 + required: *227 + reactions: *229 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *710 - required: *711 + properties: *712 + required: *713 nullable: true required: - event @@ -104026,7 +104188,7 @@ paths: properties: type: type: string - issue: *229 + issue: *231 required: - event - created_at @@ -104226,7 +104388,7 @@ paths: type: string body_text: type: string - author_association: *226 + author_association: *228 required: - event - id @@ -104249,7 +104411,7 @@ paths: type: string comments: type: array - items: &733 + items: &735 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -104344,7 +104506,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *226 + author_association: *228 _links: type: object properties: @@ -104428,7 +104590,7 @@ paths: enum: - line - file - reactions: *227 + reactions: *229 body_html: type: string example: '"

comment body

"' @@ -104464,7 +104626,7 @@ paths: type: string comments: type: array - items: *605 + items: *607 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -104495,8 +104657,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 assignee: *4 required: - id @@ -104539,8 +104701,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 assignee: *4 required: - id @@ -104583,8 +104745,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 state_reason: type: string nullable: true @@ -104753,7 +104915,7 @@ paths: headers: Link: *47 '404': *6 - '410': *682 + '410': *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104770,8 +104932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -104781,7 +104943,7 @@ paths: application/json: schema: type: array - items: &712 + items: &714 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -104847,8 +105009,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -104884,9 +105046,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *714 examples: - default: &713 + default: &715 value: id: 1 key: ssh-rsa AAA... @@ -104920,9 +105082,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *492 - - *493 - - &714 + - *494 + - *495 + - &716 name: key_id description: The unique identifier of the key. in: path @@ -104934,9 +105096,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *714 examples: - default: *713 + default: *715 '404': *6 x-github: githubCloudOnly: false @@ -104954,9 +105116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *492 - - *493 - - *714 + - *494 + - *495 + - *716 responses: '204': description: Response @@ -104976,8 +105138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -104987,9 +105149,9 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: - default: *696 + default: *698 headers: Link: *47 '404': *6 @@ -105010,8 +105172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -105047,9 +105209,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: &715 + default: &717 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -105081,8 +105243,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *492 - - *493 + - *494 + - *495 - name: name in: path required: true @@ -105093,9 +105255,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: *715 + default: *717 '404': *6 x-github: githubCloudOnly: false @@ -105112,8 +105274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *492 - - *493 + - *494 + - *495 - name: name in: path required: true @@ -105152,7 +105314,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -105178,8 +105340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *492 - - *493 + - *494 + - *495 - name: name in: path required: true @@ -105205,8 +105367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -105242,8 +105404,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '202': *39 '403': @@ -105271,8 +105433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -105298,9 +105460,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *492 - - *493 - - *578 + - *494 + - *495 + - *580 responses: '200': description: Response @@ -105362,8 +105524,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true required: - _links @@ -105445,8 +105607,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -105511,8 +105673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -105546,9 +105708,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *608 + schema: *610 examples: - default: *716 + default: *718 '204': description: Response when already merged '404': @@ -105573,8 +105735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *492 - - *493 + - *494 + - *495 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -105615,12 +105777,12 @@ paths: application/json: schema: type: array - items: &717 + items: &719 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *438 + required: *439 examples: default: value: @@ -105676,8 +105838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -105717,9 +105879,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: &718 + default: &720 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -105778,9 +105940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *492 - - *493 - - &719 + - *494 + - *495 + - &721 name: milestone_number description: The number that identifies the milestone. in: path @@ -105792,9 +105954,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: *718 + default: *720 '404': *6 x-github: githubCloudOnly: false @@ -105811,9 +105973,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *492 - - *493 - - *719 + - *494 + - *495 + - *721 requestBody: required: false content: @@ -105851,9 +106013,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: *718 + default: *720 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105869,9 +106031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *492 - - *493 - - *719 + - *494 + - *495 + - *721 responses: '204': description: Response @@ -105892,9 +106054,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: - - *492 - - *493 - - *719 + - *494 + - *495 + - *721 - *17 - *19 responses: @@ -105904,9 +106066,9 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: - default: *696 + default: *698 headers: Link: *47 x-github: @@ -105925,12 +106087,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: - - *492 - - *493 - - *720 - - *721 - - *236 + - *494 + - *495 - *722 + - *723 + - *238 + - *724 - *17 - *19 responses: @@ -105940,9 +106102,9 @@ paths: application/json: schema: type: array - items: *256 + items: *258 examples: - default: *723 + default: *725 headers: Link: *47 x-github: @@ -105966,8 +106128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -106025,14 +106187,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &724 + schema: &726 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -106157,7 +106319,7 @@ paths: - custom_404 - public examples: - default: &725 + default: &727 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -106198,8 +106360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -106253,9 +106415,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *726 examples: - default: *725 + default: *727 '422': *15 '409': *121 x-github: @@ -106278,8 +106440,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -106386,8 +106548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -106413,8 +106575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -106424,7 +106586,7 @@ paths: application/json: schema: type: array - items: &726 + items: &728 title: Page Build description: Page Build type: object @@ -106518,8 +106680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *492 - - *493 + - *494 + - *495 responses: '201': description: Response @@ -106564,16 +106726,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *726 + schema: *728 examples: - default: &727 + default: &729 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -106621,8 +106783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *492 - - *493 + - *494 + - *495 - name: build_id in: path required: true @@ -106633,9 +106795,9 @@ paths: description: Response content: application/json: - schema: *726 + schema: *728 examples: - default: *727 + default: *729 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106655,8 +106817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -106761,9 +106923,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: - - *492 - - *493 - - &728 + - *494 + - *495 + - &730 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -106821,9 +106983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *492 - - *493 - - *728 + - *494 + - *495 + - *730 responses: '204': *130 '404': *6 @@ -106850,8 +107012,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -107082,7 +107244,7 @@ paths: description: Empty response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -107109,8 +107271,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Private vulnerability reporting status @@ -107147,8 +107309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': *130 '422': *14 @@ -107169,8 +107331,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': *130 '422': *14 @@ -107192,8 +107354,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -107203,7 +107365,7 @@ paths: type: array items: *160 examples: - default: *729 + default: *731 '403': *29 '404': *6 x-github: @@ -107225,8 +107387,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -107242,7 +107404,7 @@ paths: required: - properties examples: - default: *730 + default: *732 responses: '204': description: No Content when custom property values are successfully created @@ -107280,8 +107442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *492 - - *493 + - *494 + - *495 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -107341,9 +107503,9 @@ paths: application/json: schema: type: array - items: *612 + items: *614 examples: - default: *731 + default: *733 headers: Link: *47 '304': *37 @@ -107375,8 +107537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -107441,7 +107603,7 @@ paths: description: Response content: application/json: - schema: &735 + schema: &737 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -107552,8 +107714,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *438 + required: *439 nullable: true active_lock_reason: type: string @@ -107596,7 +107758,7 @@ paths: items: *4 requested_teams: type: array - items: *476 + items: *478 head: type: object properties: @@ -107634,14 +107796,14 @@ paths: _links: type: object properties: - comments: *438 - commits: *438 - statuses: *438 - html: *438 - issue: *438 - review_comments: *438 - review_comment: *438 - self: *438 + comments: *440 + commits: *440 + statuses: *440 + html: *440 + issue: *440 + review_comments: *440 + review_comment: *440 + self: *440 required: - comments - commits @@ -107651,8 +107813,8 @@ paths: - review_comments - review_comment - self - author_association: *226 - auto_merge: *732 + author_association: *228 + auto_merge: *734 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -107744,7 +107906,7 @@ paths: - merged_by - review_comments examples: - default: &736 + default: &738 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -108271,8 +108433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *492 - - *493 + - *494 + - *495 - name: sort in: query required: false @@ -108291,7 +108453,7 @@ paths: enum: - asc - desc - - *236 + - *238 - *17 - *19 responses: @@ -108301,9 +108463,9 @@ paths: application/json: schema: type: array - items: *733 + items: *735 examples: - default: &738 + default: &740 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -108380,17 +108542,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: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '200': description: Response content: application/json: - schema: *733 + schema: *735 examples: - default: &734 + default: &736 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -108465,9 +108627,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: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -108489,9 +108651,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *735 examples: - default: *734 + default: *736 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108507,9 +108669,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: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 responses: '204': description: Response @@ -108530,9 +108692,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: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 - 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. @@ -108558,9 +108720,9 @@ paths: application/json: schema: type: array - items: *606 + items: *608 examples: - default: *685 + default: *687 headers: Link: *47 '404': *6 @@ -108581,9 +108743,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: - - *492 - - *493 - - *245 + - *494 + - *495 + - *247 requestBody: required: true content: @@ -108615,16 +108777,16 @@ paths: description: Reaction exists content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '201': description: Reaction created content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -108646,10 +108808,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *492 - - *493 - - *245 - - *686 + - *494 + - *495 + - *247 + - *688 responses: '204': description: Response @@ -108692,9 +108854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *492 - - *493 - - &737 + - *494 + - *495 + - &739 name: pull_number description: The number that identifies the pull request. in: path @@ -108707,9 +108869,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *735 + schema: *737 examples: - default: *736 + default: *738 '304': *37 '404': *6 '406': @@ -108744,9 +108906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: false content: @@ -108788,9 +108950,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *737 examples: - default: *736 + default: *738 '422': *15 '403': *29 x-github: @@ -108812,9 +108974,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: true content: @@ -108874,17 +109036,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '401': *25 '403': *29 '404': *6 @@ -108914,10 +109076,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: - - *492 - - *493 - - *737 - - *253 + - *494 + - *495 + - *739 + - *255 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -108927,7 +109089,7 @@ paths: enum: - asc - desc - - *236 + - *238 - *17 - *19 responses: @@ -108937,9 +109099,9 @@ paths: application/json: schema: type: array - items: *733 + items: *735 examples: - default: *738 + default: *740 headers: Link: *47 x-github: @@ -108972,9 +109134,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: true content: @@ -109079,7 +109241,7 @@ paths: description: Response content: application/json: - schema: *733 + schema: *735 examples: example-for-a-multi-line-comment: value: @@ -109167,10 +109329,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: - - *492 - - *493 - - *737 - - *245 + - *494 + - *495 + - *739 + - *247 requestBody: required: true content: @@ -109192,7 +109354,7 @@ paths: description: Response content: application/json: - schema: *733 + schema: *735 examples: default: value: @@ -109278,9 +109440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 - *17 - *19 responses: @@ -109290,9 +109452,9 @@ paths: application/json: schema: type: array - items: *608 + items: *610 examples: - default: *739 + default: *741 headers: Link: *47 x-github: @@ -109322,9 +109484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 - *17 - *19 responses: @@ -109334,7 +109496,7 @@ paths: application/json: schema: type: array - items: *621 + items: *623 examples: default: value: @@ -109372,9 +109534,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 responses: '204': description: Response if pull request has been merged @@ -109397,9 +109559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: false content: @@ -109510,9 +109672,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 responses: '200': description: Response @@ -109528,7 +109690,7 @@ paths: items: *4 teams: type: array - items: *326 + items: *328 required: - users - teams @@ -109587,9 +109749,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: false content: @@ -109626,7 +109788,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *614 examples: default: value: @@ -110162,9 +110324,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: true content: @@ -110198,7 +110360,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *614 examples: default: value: @@ -110703,9 +110865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 - *17 - *19 responses: @@ -110715,7 +110877,7 @@ paths: application/json: schema: type: array - items: &740 + items: &742 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -110784,7 +110946,7 @@ paths: type: string body_text: type: string - author_association: *226 + author_association: *228 required: - id - node_id @@ -110866,9 +111028,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: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: false content: @@ -110954,9 +111116,9 @@ paths: description: Response content: application/json: - schema: *740 + schema: *742 examples: - default: &742 + default: &744 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -111019,10 +111181,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: - - *492 - - *493 - - *737 - - &741 + - *494 + - *495 + - *739 + - &743 name: review_id description: The unique identifier of the review. in: path @@ -111034,9 +111196,9 @@ paths: description: Response content: application/json: - schema: *740 + schema: *742 examples: - default: &743 + default: &745 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -111095,10 +111257,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: - - *492 - - *493 - - *737 - - *741 + - *494 + - *495 + - *739 + - *743 requestBody: required: true content: @@ -111121,7 +111283,7 @@ paths: description: Response content: application/json: - schema: *740 + schema: *742 examples: default: value: @@ -111183,18 +111345,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: - - *492 - - *493 - - *737 - - *741 + - *494 + - *495 + - *739 + - *743 responses: '200': description: Response content: application/json: - schema: *740 + schema: *742 examples: - default: *742 + default: *744 '422': *7 '404': *6 x-github: @@ -111221,10 +111383,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: - - *492 - - *493 - - *737 - - *741 + - *494 + - *495 + - *739 + - *743 - *17 - *19 responses: @@ -111303,13 +111465,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *226 + author_association: *228 _links: type: object properties: - self: *438 - html: *438 - pull_request: *438 + self: *440 + html: *440 + pull_request: *440 required: - self - html @@ -111318,7 +111480,7 @@ paths: type: string body_html: type: string - reactions: *227 + reactions: *229 side: description: The side of the first line of the range for a multi-line comment. @@ -111459,10 +111621,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: - - *492 - - *493 - - *737 - - *741 + - *494 + - *495 + - *739 + - *743 requestBody: required: true content: @@ -111490,7 +111652,7 @@ paths: description: Response content: application/json: - schema: *740 + schema: *742 examples: default: value: @@ -111553,10 +111715,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: - - *492 - - *493 - - *737 - - *741 + - *494 + - *495 + - *739 + - *743 requestBody: required: true content: @@ -111591,9 +111753,9 @@ paths: description: Response content: application/json: - schema: *740 + schema: *742 examples: - default: *743 + default: *745 '404': *6 '422': *7 '403': *29 @@ -111615,9 +111777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *492 - - *493 - - *737 + - *494 + - *495 + - *739 requestBody: required: false content: @@ -111680,8 +111842,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *492 - - *493 + - *494 + - *495 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -111694,9 +111856,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *746 examples: - default: &745 + default: &747 value: type: file encoding: base64 @@ -111738,8 +111900,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: - - *492 - - *493 + - *494 + - *495 - name: dir description: The alternate path to look for a README file in: path @@ -111759,9 +111921,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *746 examples: - default: *745 + default: *747 '404': *6 '422': *15 x-github: @@ -111783,8 +111945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -111794,7 +111956,7 @@ paths: application/json: schema: type: array - items: *746 + items: *748 examples: default: value: @@ -111888,8 +112050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -111965,9 +112127,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *748 examples: - default: &750 + default: &752 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -112072,9 +112234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *492 - - *493 - - &748 + - *494 + - *495 + - &750 name: asset_id description: The unique identifier of the asset. in: path @@ -112086,9 +112248,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *749 examples: - default: &749 + default: &751 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 @@ -112123,7 +112285,7 @@ paths: type: User site_admin: false '404': *6 - '302': *625 + '302': *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112139,9 +112301,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *492 - - *493 - - *748 + - *494 + - *495 + - *750 requestBody: required: false content: @@ -112169,9 +112331,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *749 examples: - default: *749 + default: *751 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112187,9 +112349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *492 - - *493 - - *748 + - *494 + - *495 + - *750 responses: '204': description: Response @@ -112214,8 +112376,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -112300,16 +112462,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *746 + schema: *748 examples: - default: *750 + default: *752 '404': *6 x-github: githubCloudOnly: false @@ -112327,8 +112489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *492 - - *493 + - *494 + - *495 - name: tag description: tag parameter in: path @@ -112341,9 +112503,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *748 examples: - default: *750 + default: *752 '404': *6 x-github: githubCloudOnly: false @@ -112365,9 +112527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *492 - - *493 - - &751 + - *494 + - *495 + - &753 name: release_id description: The unique identifier of the release. in: path @@ -112381,9 +112543,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: *746 + schema: *748 examples: - default: *750 + default: *752 '401': description: Unauthorized x-github: @@ -112401,9 +112563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 requestBody: required: false content: @@ -112467,9 +112629,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *748 examples: - default: *750 + default: *752 '404': description: Not Found if the discussion category name is invalid content: @@ -112490,9 +112652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 responses: '204': description: Response @@ -112513,9 +112675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 - *17 - *19 responses: @@ -112525,7 +112687,7 @@ paths: application/json: schema: type: array - items: *747 + items: *749 examples: default: value: @@ -112607,9 +112769,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: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 - name: name in: query required: true @@ -112635,7 +112797,7 @@ paths: description: Response for successful upload content: application/json: - schema: *747 + schema: *749 examples: response-for-successful-upload: value: @@ -112690,9 +112852,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 - 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. @@ -112716,9 +112878,9 @@ paths: application/json: schema: type: array - items: *606 + items: *608 examples: - default: *685 + default: *687 headers: Link: *47 '404': *6 @@ -112739,9 +112901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *492 - - *493 - - *751 + - *494 + - *495 + - *753 requestBody: required: true content: @@ -112771,16 +112933,16 @@ paths: description: Reaction exists content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '201': description: Reaction created content: application/json: - schema: *606 + schema: *608 examples: - default: *607 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -112802,10 +112964,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *492 - - *493 - - *751 - - *686 + - *494 + - *495 + - *753 + - *688 responses: '204': description: Response @@ -112829,9 +112991,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *492 - - *493 - - *544 + - *494 + - *495 + - *546 - *17 - *19 responses: @@ -112848,7 +113010,7 @@ paths: oneOf: - allOf: - *174 - - &752 + - &754 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -112869,67 +113031,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *175 - - *752 + - *754 - allOf: - *176 - - *752 + - *754 - allOf: - *177 - - *752 + - *754 - allOf: - - *753 - - *752 + - *755 + - *754 - allOf: - *178 - - *752 + - *754 - allOf: - *179 - - *752 + - *754 - allOf: - *180 - - *752 + - *754 - allOf: - *181 - - *752 + - *754 - allOf: - *182 - - *752 + - *754 - allOf: - *183 - - *752 + - *754 - allOf: - *184 - - *752 + - *754 - allOf: - *185 - - *752 + - *754 - allOf: - *186 - - *752 + - *754 - allOf: - *187 - - *752 + - *754 - allOf: - *188 - - *752 + - *754 - allOf: - *189 - - *752 + - *754 - allOf: - *190 - - *752 + - *754 - allOf: - *191 - - *752 + - *754 - allOf: - *192 - - *752 + - *754 - allOf: - *193 - - *752 + - *754 - allOf: - *194 - - *752 + - *754 examples: default: value: @@ -112968,8 +113130,8 @@ paths: category: repos subcategory: rules parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 - name: includes_parents @@ -112980,7 +113142,7 @@ paths: schema: type: boolean default: true - - *754 + - *756 responses: '200': description: Response @@ -113035,8 +113197,8 @@ paths: category: repos subcategory: rules parameters: - - *492 - - *493 + - *494 + - *495 requestBody: description: Request body required: true @@ -113065,7 +113227,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *755 + items: *757 required: - name - enforcement @@ -113098,7 +113260,7 @@ paths: application/json: schema: *195 examples: - default: &765 + default: &767 value: id: 42 name: super cool ruleset @@ -113146,13 +113308,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *492 - - *493 - - *756 - - *107 - - *757 + - *494 + - *495 - *758 + - *107 - *759 + - *760 + - *761 - *17 - *19 responses: @@ -113160,9 +113322,9 @@ paths: description: Response content: application/json: - schema: *760 + schema: *762 examples: - default: *761 + default: *763 '404': *6 '500': *40 x-github: @@ -113183,17 +113345,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *492 - - *493 - - *762 + - *494 + - *495 + - *764 responses: '200': description: Response content: application/json: - schema: *763 + schema: *765 examples: - default: *764 + default: *766 '404': *6 '500': *40 x-github: @@ -113221,8 +113383,8 @@ paths: category: repos subcategory: rules parameters: - - *492 - - *493 + - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -113244,7 +113406,7 @@ paths: application/json: schema: *195 examples: - default: *765 + default: *767 '404': *6 '500': *40 put: @@ -113262,8 +113424,8 @@ paths: category: repos subcategory: rules parameters: - - *492 - - *493 + - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -113297,7 +113459,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *755 + items: *757 examples: default: value: @@ -113327,7 +113489,7 @@ paths: application/json: schema: *195 examples: - default: *765 + default: *767 '404': *6 '422': *15 '500': *40 @@ -113346,8 +113508,8 @@ paths: category: repos subcategory: rules parameters: - - *492 - - *493 + - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -113370,8 +113532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 - name: ruleset_id @@ -113389,7 +113551,7 @@ paths: type: array items: *199 examples: - default: *456 + default: *458 '404': *6 '500': *40 x-github: @@ -113408,8 +113570,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *492 - - *493 + - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -113427,7 +113589,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: default: value: @@ -113482,26 +113644,26 @@ 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: - - *492 - - *493 - - *458 - - *459 + - *494 + - *495 - *460 - *461 - *462 - *463 - *464 - *465 + - *466 + - *467 - *112 - *19 - *17 - - *766 - - *767 - - *466 - - *467 + - *768 + - *769 - *468 - *469 - *470 + - *471 + - *472 responses: '200': description: Response @@ -113509,7 +113671,7 @@ paths: application/json: schema: type: array - items: &771 + items: &773 type: object properties: number: *131 @@ -113528,8 +113690,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *768 - resolution: *769 + state: *770 + resolution: *771 resolved_at: type: string format: date-time @@ -113635,7 +113797,7 @@ paths: pull request. ' - oneOf: *770 + oneOf: *772 nullable: true has_more_locations: type: boolean @@ -113799,16 +113961,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *492 - - *493 - - *572 - - *469 + - *494 + - *495 + - *574 + - *471 responses: '200': description: Response content: application/json: - schema: *771 + schema: *773 examples: default: value: @@ -113862,9 +114024,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 requestBody: required: true content: @@ -113872,8 +114034,8 @@ paths: schema: type: object properties: - state: *768 - resolution: *769 + state: *770 + resolution: *771 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -113917,7 +114079,7 @@ paths: description: Response content: application/json: - schema: *771 + schema: *773 examples: default: value: @@ -114016,9 +114178,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: - - *492 - - *493 - - *572 + - *494 + - *495 + - *574 - *19 - *17 responses: @@ -114029,7 +114191,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &958 + items: &960 type: object properties: type: @@ -114055,8 +114217,6 @@ paths: example: commit details: oneOf: - - *772 - - *773 - *774 - *775 - *776 @@ -114068,6 +114228,8 @@ paths: - *782 - *783 - *784 + - *785 + - *786 examples: default: value: @@ -114153,8 +114315,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -114162,14 +114324,14 @@ paths: schema: type: object properties: - reason: &786 + reason: &788 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *785 + placeholder_id: *787 required: - reason - placeholder_id @@ -114186,7 +114348,7 @@ paths: schema: type: object properties: - reason: *786 + reason: *788 expire_at: type: string format: date-time @@ -114232,8 +114394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *492 - - *493 + - *494 + - *495 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -114248,7 +114410,7 @@ paths: properties: incremental_scans: type: array - items: &787 + items: &789 description: Information on a single scan performed by secret scanning on the repository type: object @@ -114279,15 +114441,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *787 + items: *789 backfill_scans: type: array - items: *787 + items: *789 custom_pattern_backfill_scans: type: array items: allOf: - - *787 + - *789 - type: object properties: pattern_name: @@ -114300,7 +114462,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *787 + items: *789 examples: default: value: @@ -114365,8 +114527,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *492 - - *493 + - *494 + - *495 - *112 - name: sort description: The property to sort the results by. @@ -114410,9 +114572,9 @@ paths: application/json: schema: type: array - items: *788 + items: *790 examples: - default: *789 + default: *791 '400': *14 '404': *6 x-github: @@ -114435,8 +114597,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -114509,7 +114671,7 @@ paths: login: type: string description: The username of the user credited. - type: *475 + type: *477 required: - login - type @@ -114596,9 +114758,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *790 examples: - default: &791 + default: &793 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -114831,8 +114993,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: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -114936,7 +115098,7 @@ paths: description: Response content: application/json: - schema: *788 + schema: *790 examples: default: value: @@ -115083,17 +115245,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: - - *492 - - *493 - - *790 + - *494 + - *495 + - *792 responses: '200': description: Response content: application/json: - schema: *788 + schema: *790 examples: - default: *791 + default: *793 '403': *29 '404': *6 x-github: @@ -115117,9 +115279,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: - - *492 - - *493 - - *790 + - *494 + - *495 + - *792 requestBody: required: true content: @@ -115192,7 +115354,7 @@ paths: login: type: string description: The username of the user credited. - type: *475 + type: *477 required: - login - type @@ -115278,17 +115440,17 @@ paths: description: Response content: application/json: - schema: *788 + schema: *790 examples: - default: *791 - add_credit: *791 + default: *793 + add_credit: *793 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *265 + schema: *267 examples: invalid_state_transition: value: @@ -115319,9 +115481,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: - - *492 - - *493 - - *790 + - *494 + - *495 + - *792 responses: '202': *39 '400': *14 @@ -115348,17 +115510,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: - - *492 - - *493 - - *790 + - *494 + - *495 + - *792 responses: '202': description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *499 + default: *501 '400': *14 '422': *15 '403': *29 @@ -115384,8 +115546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -115484,8 +115646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -115494,7 +115656,7 @@ paths: application/json: schema: type: array - items: &792 + items: &794 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -115527,8 +115689,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -115604,8 +115766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -115701,8 +115863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -115856,8 +116018,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: - - *492 - - *493 + - *494 + - *495 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -115867,7 +116029,7 @@ paths: application/json: schema: type: array - items: *792 + items: *794 examples: default: value: @@ -115900,8 +116062,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *492 - - *493 + - *494 + - *495 - name: sha in: path required: true @@ -115955,7 +116117,7 @@ paths: description: Response content: application/json: - schema: *793 + schema: *795 examples: default: value: @@ -116009,8 +116171,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -116022,7 +116184,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -116042,14 +116204,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &794 + schema: &796 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -116117,8 +116279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: false content: @@ -116144,7 +116306,7 @@ paths: description: Response content: application/json: - schema: *794 + schema: *796 examples: default: value: @@ -116171,8 +116333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -116192,8 +116354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -116272,8 +116434,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *492 - - *493 + - *494 + - *495 - name: ref in: path required: true @@ -116309,8 +116471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *492 - - *493 + - *494 + - *495 - *17 - *19 responses: @@ -116320,9 +116482,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - default: *416 + default: *418 headers: Link: *47 '404': *6 @@ -116342,8 +116504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *492 - - *493 + - *494 + - *495 - *19 - *17 responses: @@ -116351,7 +116513,7 @@ paths: description: Response content: application/json: - schema: &795 + schema: &797 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -116363,7 +116525,7 @@ paths: required: - names examples: - default: &796 + default: &798 value: names: - octocat @@ -116386,8 +116548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -116418,9 +116580,9 @@ paths: description: Response content: application/json: - schema: *795 + schema: *797 examples: - default: *796 + default: *798 '404': *6 '422': *7 x-github: @@ -116441,9 +116603,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *492 - - *493 - - &797 + - *494 + - *495 + - &799 name: per description: The time frame to display results for. in: query @@ -116472,7 +116634,7 @@ paths: example: 128 clones: type: array - items: &798 + items: &800 title: Traffic type: object properties: @@ -116559,8 +116721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -116650,8 +116812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *492 - - *493 + - *494 + - *495 responses: '200': description: Response @@ -116711,9 +116873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *492 - - *493 - - *797 + - *494 + - *495 + - *799 responses: '200': description: Response @@ -116732,7 +116894,7 @@ paths: example: 3782 views: type: array - items: *798 + items: *800 required: - uniques - count @@ -116809,8 +116971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *492 - - *493 + - *494 + - *495 requestBody: required: true content: @@ -116846,7 +117008,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: default: value: @@ -117084,8 +117246,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -117108,8 +117270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -117131,8 +117293,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -117158,8 +117320,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *492 - - *493 + - *494 + - *495 - name: ref in: path required: true @@ -117251,9 +117413,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *499 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -117294,7 +117456,7 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: default: value: @@ -117404,7 +117566,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &806 + - &808 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -117413,7 +117575,7 @@ paths: schema: type: string example: members - - &811 + - &813 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -117424,7 +117586,7 @@ paths: default: 1 format: int32 example: 1 - - &812 + - &814 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -117466,7 +117628,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &801 + items: &803 allOf: - type: object required: @@ -117541,7 +117703,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: &813 + meta: &815 type: object description: The metadata associated with the creation/updates to the user. @@ -117601,30 +117763,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &802 + '400': &804 description: Bad request content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 - '401': *800 - '403': &803 + schema: *801 + '401': *802 + '403': &805 description: Permission denied - '429': &804 + '429': &806 description: Too many requests content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 - '500': &805 + schema: *801 + '500': &807 description: Internal server error content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 + schema: *801 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117648,7 +117810,7 @@ paths: required: true content: application/json: - schema: &809 + schema: &811 type: object required: - schemas @@ -117708,9 +117870,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *801 + schema: *803 examples: - group: &807 + group: &809 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -117729,13 +117891,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': *802 - '401': *800 - '403': *803 - '409': &810 + '400': *804 + '401': *802 + '403': *805 + '409': &812 description: Duplicate record detected - '429': *804 - '500': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117752,7 +117914,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: - - &808 + - &810 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -117760,22 +117922,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *806 + - *808 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *801 + schema: *803 examples: - default: *807 - '400': *802 - '401': *800 - '403': *803 + default: *809 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '429': *804 - '500': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117794,13 +117956,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: - - *808 + - *810 - *41 requestBody: required: true content: application/json: - schema: *809 + schema: *811 examples: group: summary: Group @@ -117826,17 +117988,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *801 + schema: *803 examples: - group: *807 - groupWithMembers: *807 - '400': *802 - '401': *800 - '403': *803 + group: *809 + groupWithMembers: *809 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '409': *810 - '429': *804 - '500': *805 + '409': *812 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117860,13 +118022,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: - - *808 + - *810 - *41 requestBody: required: true content: application/json: - schema: &820 + schema: &822 type: object required: - Operations @@ -117926,17 +118088,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *801 + schema: *803 examples: - updateGroup: *807 - addMembers: *807 - '400': *802 - '401': *800 - '403': *803 + updateGroup: *809 + addMembers: *809 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '409': *810 - '429': *804 - '500': *805 + '409': *812 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117952,17 +118114,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: - - *808 + - *810 - *41 responses: '204': description: Group was deleted, no content - '400': *802 - '401': *800 - '403': *803 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '429': *804 - '500': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117996,8 +118158,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *811 - - *812 + - *813 + - *814 - *41 responses: '200': @@ -118030,7 +118192,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &815 + items: &817 allOf: - type: object required: @@ -118109,7 +118271,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &814 + roles: &816 type: array description: The roles assigned to the user. items: @@ -118165,7 +118327,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *813 + meta: *815 startIndex: type: integer description: A starting index for the returned page @@ -118202,11 +118364,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *802 - '401': *800 - '403': *803 - '429': *804 - '500': *805 + '400': *804 + '401': *802 + '403': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118230,7 +118392,7 @@ paths: required: true content: application/json: - schema: &818 + schema: &820 type: object required: - schemas @@ -118312,9 +118474,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *814 + roles: *816 examples: - user: &819 + user: &821 summary: User value: schemas: @@ -118361,9 +118523,9 @@ paths: description: User has been created content: application/scim+json: - schema: *815 + schema: *817 examples: - user: &816 + user: &818 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118389,13 +118551,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: *816 - '400': *802 - '401': *800 - '403': *803 - '409': *810 - '429': *804 - '500': *805 + enterpriseOwner: *818 + '400': *804 + '401': *802 + '403': *805 + '409': *812 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118412,7 +118574,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: - - &817 + - &819 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -118425,15 +118587,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *815 + schema: *817 examples: - default: *816 - '400': *802 - '401': *800 - '403': *803 + default: *818 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '429': *804 - '500': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118484,30 +118646,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: - - *817 + - *819 - *41 requestBody: required: true content: application/json: - schema: *818 + schema: *820 examples: - user: *819 + user: *821 responses: '200': description: User was updated content: application/scim+json: - schema: *815 + schema: *817 examples: - user: *816 - '400': *802 - '401': *800 - '403': *803 + user: *818 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '409': *810 - '429': *804 - '500': *805 + '409': *812 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118548,13 +118710,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: - - *817 + - *819 - *41 requestBody: required: true content: application/json: - schema: *820 + schema: *822 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -118594,18 +118756,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *815 + schema: *817 examples: - userMultiValuedProperties: *816 - userSingleValuedProperties: *816 - disableUser: *816 - '400': *802 - '401': *800 - '403': *803 + userMultiValuedProperties: *818 + userSingleValuedProperties: *818 + disableUser: *818 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '409': *810 - '429': *804 - '500': *805 + '409': *812 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118625,17 +118787,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: - - *817 + - *819 - *41 responses: '204': description: User was deleted, no content - '400': *802 - '401': *800 - '403': *803 + '400': *804 + '401': *802 + '403': *805 '404': *6 - '429': *804 - '500': *805 + '429': *806 + '500': *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118722,7 +118884,7 @@ paths: example: 1 Resources: type: array - items: &821 + items: &823 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -118953,22 +119115,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &822 + '404': &824 description: Resource not found content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 - '403': &823 + schema: *801 + '403': &825 description: Forbidden content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 - '400': *802 - '429': *804 + schema: *801 + '400': *804 + '429': *806 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -118994,9 +119156,9 @@ paths: description: Response content: application/scim+json: - schema: *821 + schema: *823 examples: - default: &824 + default: &826 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -119019,17 +119181,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *822 - '403': *823 - '500': *805 + '404': *824 + '403': *825 + '500': *807 '409': description: Conflict content: application/json: - schema: *799 + schema: *801 application/scim+json: - schema: *799 - '400': *802 + schema: *801 + '400': *804 requestBody: required: true content: @@ -119127,17 +119289,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *817 + - *819 responses: '200': description: Response content: application/scim+json: - schema: *821 + schema: *823 examples: - default: *824 - '404': *822 - '403': *823 + default: *826 + '404': *824 + '403': *825 '304': *37 x-github: githubCloudOnly: true @@ -119161,18 +119323,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *817 + - *819 responses: '200': description: Response content: application/scim+json: - schema: *821 + schema: *823 examples: - default: *824 + default: *826 '304': *37 - '404': *822 - '403': *823 + '404': *824 + '403': *825 requestBody: required: true content: @@ -119285,19 +119447,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *817 + - *819 responses: '200': description: Response content: application/scim+json: - schema: *821 + schema: *823 examples: - default: *824 + default: *826 '304': *37 - '404': *822 - '403': *823 - '400': *802 + '404': *824 + '403': *825 + '400': *804 '429': description: Response content: @@ -119388,12 +119550,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *817 + - *819 responses: '204': description: Response - '404': *822 - '403': *823 + '404': *824 + '403': *825 '304': *37 x-github: githubCloudOnly: true @@ -119511,7 +119673,7 @@ paths: html_url: type: string format: uri - repository: *290 + repository: *292 score: type: number file_size: @@ -119529,7 +119691,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &825 + text_matches: &827 title: Search Result Text Matches type: array items: @@ -119692,7 +119854,7 @@ paths: enum: - author-date - committer-date - - &826 + - &828 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 @@ -119763,7 +119925,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *542 + properties: *544 nullable: true comment_count: type: integer @@ -119783,7 +119945,7 @@ paths: url: type: string format: uri - verification: *669 + verification: *671 required: - author - committer @@ -119802,7 +119964,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *542 + properties: *544 nullable: true parents: type: array @@ -119815,12 +119977,12 @@ paths: type: string sha: type: string - repository: *290 + repository: *292 score: type: number node_id: type: string - text_matches: *825 + text_matches: *827 required: - sha - node_id @@ -120013,7 +120175,7 @@ paths: - interactions - created - updated - - *826 + - *828 - *17 - *19 - name: advanced_search @@ -120127,11 +120289,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: type: string state_reason: @@ -120148,8 +120310,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *438 + required: *439 nullable: true comments: type: integer @@ -120163,7 +120325,7 @@ paths: type: string format: date-time nullable: true - text_matches: *825 + text_matches: *827 pull_request: type: object properties: @@ -120196,7 +120358,7 @@ paths: type: string score: type: number - author_association: *226 + author_association: *228 draft: type: boolean repository: *80 @@ -120207,7 +120369,7 @@ paths: timeline_url: type: string format: uri - type: *401 + type: *403 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -120217,17 +120379,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - reactions: *227 + reactions: *229 required: - assignee - closed_at @@ -120445,7 +120607,7 @@ paths: enum: - created - updated - - *826 + - *828 - *17 - *19 responses: @@ -120489,7 +120651,7 @@ paths: nullable: true score: type: number - text_matches: *825 + text_matches: *827 required: - id - node_id @@ -120575,7 +120737,7 @@ paths: - forks - help-wanted-issues - updated - - *826 + - *828 - *17 - *19 responses: @@ -120803,8 +120965,8 @@ paths: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true permissions: type: object @@ -120823,7 +120985,7 @@ paths: - admin - pull - push - text_matches: *825 + text_matches: *827 temp_clone_token: type: string allow_merge_commit: @@ -121124,7 +121286,7 @@ paths: type: string format: uri nullable: true - text_matches: *825 + text_matches: *827 related: type: array nullable: true @@ -121317,7 +121479,7 @@ paths: - followers - repositories - joined - - *826 + - *828 - *17 - *19 responses: @@ -121421,7 +121583,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *825 + text_matches: *827 blog: type: string nullable: true @@ -121500,7 +121662,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &829 + - &831 name: team_id description: The unique identifier of the team. in: path @@ -121512,9 +121674,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -121541,7 +121703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *829 + - *831 requestBody: required: true content: @@ -121604,16 +121766,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '201': description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '404': *6 '422': *15 '403': *29 @@ -121641,7 +121803,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *829 + - *831 responses: '204': description: Response @@ -121670,7 +121832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *829 + - *831 - *17 - *19 responses: @@ -121680,9 +121842,9 @@ paths: application/json: schema: type: array - items: *395 + items: *397 examples: - default: *396 + default: *398 headers: Link: *47 x-github: @@ -121708,7 +121870,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *829 + - *831 - name: role description: Filters members returned by their role in the team. in: query @@ -121731,7 +121893,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 '404': *6 @@ -121759,7 +121921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *829 + - *831 - *148 responses: '204': @@ -121796,7 +121958,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *829 + - *831 - *148 responses: '204': @@ -121836,7 +121998,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *829 + - *831 - *148 responses: '204': @@ -121873,16 +122035,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: - - *829 + - *831 - *148 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: - response-if-user-is-a-team-maintainer: *830 + response-if-user-is-a-team-maintainer: *832 '404': *6 x-github: githubCloudOnly: false @@ -121915,7 +122077,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *829 + - *831 - *148 requestBody: required: false @@ -121941,9 +122103,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: *831 + response-if-users-membership-with-team-is-now-pending: *833 '403': description: Forbidden if team synchronization is set up '422': @@ -121977,7 +122139,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *829 + - *831 - *148 responses: '204': @@ -122005,7 +122167,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *829 + - *831 - *17 - *19 responses: @@ -122015,9 +122177,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 '404': *6 @@ -122047,15 +122209,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: - - *829 - - *492 - - *493 + - *831 + - *494 + - *495 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *832 + schema: *834 examples: alternative-response-with-extra-repository-information: value: @@ -122206,9 +122368,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: - - *829 - - *492 - - *493 + - *831 + - *494 + - *495 requestBody: required: false content: @@ -122258,9 +122420,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: - - *829 - - *492 - - *493 + - *831 + - *494 + - *495 responses: '204': description: Response @@ -122289,15 +122451,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: - - *829 + - *831 responses: '200': description: Response content: application/json: - schema: *494 + schema: *496 examples: - default: *495 + default: *497 '403': *29 '404': *6 x-github: @@ -122324,7 +122486,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: - - *829 + - *831 requestBody: required: true content: @@ -122381,7 +122543,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -122412,7 +122574,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *829 + - *831 - *17 - *19 responses: @@ -122422,9 +122584,9 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: - response-if-child-teams-exist: *833 + response-if-child-teams-exist: *835 headers: Link: *47 '404': *6 @@ -122457,7 +122619,7 @@ paths: application/json: schema: oneOf: - - &835 + - &837 title: Private User description: Private User type: object @@ -122660,7 +122822,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *834 + - *836 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -122813,7 +122975,7 @@ paths: description: Response content: application/json: - schema: *835 + schema: *837 examples: default: value: @@ -122892,7 +123054,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 '304': *37 '404': *6 '403': *29 @@ -123016,9 +123178,9 @@ paths: type: integer codespaces: type: array - items: *406 + items: *408 examples: - default: *407 + default: *409 '304': *37 '500': *40 '401': *25 @@ -123157,17 +123319,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '401': *25 '403': *29 '404': *6 @@ -123211,7 +123373,7 @@ paths: type: integer secrets: type: array - items: &836 + items: &838 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -123251,7 +123413,7 @@ paths: - visibility - selected_repositories_url examples: - default: *598 + default: *600 headers: Link: *47 x-github: @@ -123321,13 +123483,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: - - *300 + - *302 responses: '200': description: Response content: application/json: - schema: *836 + schema: *838 examples: default: value: @@ -123357,7 +123519,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: - - *300 + - *302 requestBody: required: true content: @@ -123402,7 +123564,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -123430,7 +123592,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: - - *300 + - *302 responses: '204': description: Response @@ -123455,7 +123617,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: - - *300 + - *302 responses: '200': description: Response @@ -123471,9 +123633,9 @@ paths: type: integer repositories: type: array - items: *290 + items: *292 examples: - default: *345 + default: *347 '401': *25 '403': *29 '404': *6 @@ -123498,7 +123660,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: - - *300 + - *302 requestBody: required: true content: @@ -123552,7 +123714,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: - - *300 + - *302 - name: repository_id in: path required: true @@ -123585,7 +123747,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: - - *300 + - *302 - name: repository_id in: path required: true @@ -123617,15 +123779,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: - - *408 + - *410 responses: '200': description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '304': *37 '500': *40 '401': *25 @@ -123651,7 +123813,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: - - *408 + - *410 requestBody: required: false content: @@ -123681,9 +123843,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '401': *25 '403': *29 '404': *6 @@ -123705,7 +123867,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: - - *408 + - *410 responses: '202': *39 '304': *37 @@ -123734,13 +123896,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: - - *408 + - *410 responses: '202': description: Response content: application/json: - schema: &837 + schema: &839 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -123781,7 +123943,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &838 + default: &840 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -123813,7 +123975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *408 + - *410 - name: export_id in: path required: true @@ -123826,9 +123988,9 @@ paths: description: Response content: application/json: - schema: *837 + schema: *839 examples: - default: *838 + default: *840 '404': *6 x-github: githubCloudOnly: false @@ -123849,7 +124011,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *408 + - *410 responses: '200': description: Response @@ -123865,9 +124027,9 @@ paths: type: integer machines: type: array - items: *839 + items: *841 examples: - default: *840 + default: *842 '304': *37 '500': *40 '401': *25 @@ -123896,7 +124058,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: - - *408 + - *410 requestBody: required: true content: @@ -123946,13 +124108,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *497 + repository: *499 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *596 - required: *597 + properties: *598 + required: *599 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -124726,15 +124888,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: - - *408 + - *410 responses: '200': description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '304': *37 '500': *40 '400': *14 @@ -124766,15 +124928,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: - - *408 + - *410 responses: '200': description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *595 + default: *597 '500': *40 '401': *25 '403': *29 @@ -124804,9 +124966,9 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: &851 + default: &853 value: - id: 197 name: hello_docker @@ -124907,7 +125069,7 @@ paths: application/json: schema: type: array - items: &841 + items: &843 title: Email description: Email type: object @@ -124972,9 +125134,9 @@ paths: application/json: schema: type: array - items: *841 + items: *843 examples: - default: &853 + default: &855 value: - email: octocat@github.com verified: true @@ -125049,7 +125211,7 @@ paths: application/json: schema: type: array - items: *841 + items: *843 examples: default: value: @@ -125159,7 +125321,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 '304': *37 @@ -125192,7 +125354,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 '304': *37 @@ -125305,7 +125467,7 @@ paths: application/json: schema: type: array - items: &842 + items: &844 title: GPG Key description: A unique encryption key type: object @@ -125436,7 +125598,7 @@ paths: - subkeys - revoked examples: - default: &870 + default: &872 value: - id: 3 name: Octocat's GPG Key @@ -125521,9 +125683,9 @@ paths: description: Response content: application/json: - schema: *842 + schema: *844 examples: - default: &843 + default: &845 value: id: 3 name: Octocat's GPG Key @@ -125580,7 +125742,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: - - &844 + - &846 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -125592,9 +125754,9 @@ paths: description: Response content: application/json: - schema: *842 + schema: *844 examples: - default: *843 + default: *845 '404': *6 '304': *37 '403': *29 @@ -125617,7 +125779,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: - - *844 + - *846 responses: '204': description: Response @@ -125819,7 +125981,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *285 + default: *287 headers: Link: *47 '404': *6 @@ -125845,7 +126007,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *284 + - *286 responses: '204': description: Response @@ -125871,7 +126033,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *284 + - *286 responses: '204': description: Response @@ -125905,12 +126067,12 @@ paths: application/json: schema: anyOf: - - *393 + - *395 - type: object properties: {} additionalProperties: false examples: - default: *394 + default: *396 '204': description: Response when there are no restrictions x-github: @@ -125934,7 +126096,7 @@ paths: required: true content: application/json: - schema: *679 + schema: *681 examples: default: value: @@ -125945,7 +126107,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: default: value: @@ -126026,7 +126188,7 @@ paths: - closed - all default: open - - *404 + - *406 - name: sort description: What to sort results by. in: query @@ -126039,7 +126201,7 @@ paths: - comments default: created - *112 - - *236 + - *238 - *17 - *19 responses: @@ -126049,9 +126211,9 @@ paths: application/json: schema: type: array - items: *229 + items: *231 examples: - default: *405 + default: *407 headers: Link: *47 '404': *6 @@ -126084,7 +126246,7 @@ paths: application/json: schema: type: array - items: &845 + items: &847 title: Key description: Key type: object @@ -126185,9 +126347,9 @@ paths: description: Response content: application/json: - schema: *845 + schema: *847 examples: - default: &846 + default: &848 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -126220,15 +126382,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: - - *714 + - *716 responses: '200': description: Response content: application/json: - schema: *845 + schema: *847 examples: - default: *846 + default: *848 '404': *6 '304': *37 '403': *29 @@ -126251,7 +126413,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: - - *714 + - *716 responses: '204': description: Response @@ -126284,7 +126446,7 @@ paths: application/json: schema: type: array - items: &847 + items: &849 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -126341,7 +126503,7 @@ paths: - id - type - login - plan: *247 + plan: *249 required: - billing_cycle - next_billing_date @@ -126352,7 +126514,7 @@ paths: - account - plan examples: - default: &848 + default: &850 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -126414,9 +126576,9 @@ paths: application/json: schema: type: array - items: *847 + items: *849 examples: - default: *848 + default: *850 headers: Link: *47 '304': *37 @@ -126456,7 +126618,7 @@ paths: application/json: schema: type: array - items: *409 + items: *411 examples: default: value: @@ -126570,7 +126732,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *411 examples: default: value: @@ -126657,7 +126819,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *411 examples: default: value: @@ -126729,7 +126891,7 @@ paths: application/json: schema: type: array - items: *411 + items: *413 examples: default: value: @@ -126982,7 +127144,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *413 examples: default: value: @@ -127162,7 +127324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *412 + - *414 - name: exclude in: query required: false @@ -127175,7 +127337,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *413 examples: default: value: @@ -127369,7 +127531,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *412 + - *414 responses: '302': description: Response @@ -127395,7 +127557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *412 + - *414 responses: '204': description: Response @@ -127424,8 +127586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *412 - - *849 + - *414 + - *851 responses: '204': description: Response @@ -127449,7 +127611,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *412 + - *414 - *17 - *19 responses: @@ -127459,9 +127621,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 '404': *6 @@ -127498,7 +127660,7 @@ paths: type: array items: *75 examples: - default: *260 + default: *262 headers: Link: *47 '304': *37 @@ -127540,7 +127702,7 @@ paths: - docker - nuget - container - - *850 + - *852 - *19 - *17 responses: @@ -127550,10 +127712,10 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *851 - '400': *852 + default: *853 + '400': *854 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -127573,16 +127735,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: - - *419 - - *420 + - *421 + - *422 responses: '200': description: Response content: application/json: - schema: *417 + schema: *419 examples: - default: &871 + default: &873 value: id: 40201 name: octo-name @@ -127695,8 +127857,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: - - *419 - - *420 + - *421 + - *422 responses: '204': description: Response @@ -127726,8 +127888,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: - - *419 - - *420 + - *421 + - *422 - name: token description: package token schema: @@ -127759,8 +127921,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: - - *419 - - *420 + - *421 + - *422 - *19 - *17 - name: state @@ -127780,7 +127942,7 @@ paths: application/json: schema: type: array - items: *421 + items: *423 examples: default: value: @@ -127829,15 +127991,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: - - *419 - - *420 + - *421 - *422 + - *424 responses: '200': description: Response content: application/json: - schema: *421 + schema: *423 examples: default: value: @@ -127873,9 +128035,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: - - *419 - - *420 + - *421 - *422 + - *424 responses: '204': description: Response @@ -127905,9 +128067,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: - - *419 - - *420 + - *421 - *422 + - *424 responses: '204': description: Response @@ -127944,9 +128106,9 @@ paths: application/json: schema: type: array - items: *841 + items: *843 examples: - default: *853 + default: *855 headers: Link: *47 '304': *37 @@ -128059,7 +128221,7 @@ paths: type: array items: *80 examples: - default: &860 + default: &862 summary: Default response value: - id: 1296269 @@ -128363,9 +128525,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *499 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -128403,9 +128565,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: *854 + default: *856 headers: Link: *47 '304': *37 @@ -128428,7 +128590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *397 + - *399 responses: '204': description: Response @@ -128451,7 +128613,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *397 + - *399 responses: '204': description: Response @@ -128484,7 +128646,7 @@ paths: application/json: schema: type: array - items: &855 + items: &857 title: Social account description: Social media account type: object @@ -128499,7 +128661,7 @@ paths: - provider - url examples: - default: &856 + default: &858 value: - provider: twitter url: https://twitter.com/github @@ -128561,9 +128723,9 @@ paths: application/json: schema: type: array - items: *855 + items: *857 examples: - default: *856 + default: *858 '422': *15 '304': *37 '404': *6 @@ -128650,7 +128812,7 @@ paths: application/json: schema: type: array - items: &857 + items: &859 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -128670,7 +128832,7 @@ paths: - title - created_at examples: - default: &885 + default: &887 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128734,9 +128896,9 @@ paths: description: Response content: application/json: - schema: *857 + schema: *859 examples: - default: &858 + default: &860 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128766,7 +128928,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: - - &859 + - &861 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -128778,9 +128940,9 @@ paths: description: Response content: application/json: - schema: *857 + schema: *859 examples: - default: *858 + default: *860 '404': *6 '304': *37 '403': *29 @@ -128803,7 +128965,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: - - *859 + - *861 responses: '204': description: Response @@ -128832,7 +128994,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: - - &886 + - &888 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 @@ -128857,11 +129019,11 @@ paths: type: array items: *80 examples: - default-response: *860 + default-response: *862 application/vnd.github.v3.star+json: schema: type: array - items: &887 + items: &889 title: Starred Repository description: Starred Repository type: object @@ -129017,8 +129179,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response if this repository is starred by you @@ -129046,8 +129208,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -129071,8 +129233,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: - - *492 - - *493 + - *494 + - *495 responses: '204': description: Response @@ -129105,9 +129267,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 '304': *37 @@ -129144,7 +129306,7 @@ paths: application/json: schema: type: array - items: *484 + items: *486 examples: default: value: @@ -129222,7 +129384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *249 + - *251 responses: '200': description: Response @@ -129230,10 +129392,10 @@ paths: application/json: schema: oneOf: - - *835 - - *834 + - *837 + - *836 examples: - default-response: &864 + default-response: &866 summary: Default response value: login: octocat @@ -129268,7 +129430,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &865 + response-with-git-hub-plan-information: &867 summary: Response with GitHub plan information value: login: octocat @@ -129325,14 +129487,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &862 + - &864 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *435 + - *437 requestBody: required: true description: Details of the draft item to create in the project. @@ -129366,9 +129528,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - draft_issue: *442 + draft_issue: *444 '304': *37 '403': *29 '401': *25 @@ -129391,7 +129553,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *861 + - *863 - *17 responses: '200': @@ -129402,7 +129564,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: example: ; rel="next" @@ -129426,8 +129588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *862 - - *435 + - *864 + - *437 requestBody: required: true content: @@ -129498,17 +129660,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *863 + schema: *865 examples: table_view: summary: Response for creating a table view - value: *446 + value: *448 board_view: summary: Response for creating a board view with filter - value: *446 + value: *448 roadmap_view: summary: Response for creating a roadmap view - value: *446 + value: *448 '304': *37 '403': *29 '401': *25 @@ -129550,11 +129712,11 @@ paths: application/json: schema: oneOf: - - *835 - - *834 + - *837 + - *836 examples: - default-response: *864 - response-with-git-hub-plan-information: *865 + default-response: *866 + response-with-git-hub-plan-information: *867 '404': *6 x-github: githubCloudOnly: false @@ -129604,8 +129766,8 @@ paths: required: - subject_digests examples: - default: *866 - withPredicateType: *867 + default: *868 + withPredicateType: *869 responses: '200': description: Response @@ -129658,7 +129820,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *868 + default: *870 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -129863,12 +130025,12 @@ paths: initiator: type: string examples: - default: *538 + default: *540 '201': description: Response content: application/json: - schema: *301 + schema: *303 examples: default: value: @@ -129930,7 +130092,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *341 + items: *343 examples: default: summary: Example response for listing user copilot spaces @@ -130142,9 +130304,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: &869 + default: &871 summary: Example response for a user copilot space value: id: 42 @@ -130243,9 +130405,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *869 + default: *871 '403': *29 '404': *6 x-github: @@ -130366,9 +130528,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *869 + default: *871 '403': *29 '404': *6 '422': *15 @@ -130445,7 +130607,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *343 + items: *345 examples: default: value: @@ -130588,7 +130750,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: default: value: @@ -130699,7 +130861,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: default: value: @@ -130829,7 +130991,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *344 + items: *346 examples: default: value: @@ -130921,7 +131083,7 @@ paths: description: Resource created content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -130937,7 +131099,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -130990,7 +131152,7 @@ paths: description: Response content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -131057,7 +131219,7 @@ paths: description: Response content: application/json: - schema: *344 + schema: *346 examples: default: value: @@ -131134,9 +131296,9 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *851 + default: *853 '403': *29 '401': *25 x-github: @@ -131169,7 +131331,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -131242,7 +131404,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -131329,7 +131491,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -131399,7 +131561,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -131430,7 +131592,7 @@ paths: type: array items: *4 examples: - default: *218 + default: *220 headers: Link: *47 x-github: @@ -131477,7 +131639,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *148 - - *236 + - *238 - *17 - *19 responses: @@ -131487,9 +131649,9 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: Link: *47 '422': *15 @@ -131520,9 +131682,9 @@ paths: application/json: schema: type: array - items: *842 + items: *844 examples: - default: *870 + default: *872 headers: Link: *47 x-github: @@ -131626,7 +131788,7 @@ paths: application/json: schema: *22 examples: - default: *391 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131711,7 +131873,7 @@ paths: type: array items: *75 examples: - default: *260 + default: *262 headers: Link: *47 x-github: @@ -131750,7 +131912,7 @@ paths: - docker - nuget - container - - *850 + - *852 - *148 - *19 - *17 @@ -131761,12 +131923,12 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *851 + default: *853 '403': *29 '401': *25 - '400': *852 + '400': *854 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131786,17 +131948,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *419 - - *420 + - *421 + - *422 - *148 responses: '200': description: Response content: application/json: - schema: *417 + schema: *419 examples: - default: *871 + default: *873 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131817,8 +131979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *419 - - *420 + - *421 + - *422 - *148 responses: '204': @@ -131851,8 +132013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *419 - - *420 + - *421 + - *422 - *148 - name: token description: package token @@ -131885,8 +132047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *419 - - *420 + - *421 + - *422 - *148 responses: '200': @@ -131895,7 +132057,7 @@ paths: application/json: schema: type: array - items: *421 + items: *423 examples: default: value: @@ -131953,16 +132115,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: - - *419 - - *420 + - *421 - *422 + - *424 - *148 responses: '200': description: Response content: application/json: - schema: *421 + schema: *423 examples: default: value: @@ -131997,10 +132159,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *419 - - *420 - - *148 + - *421 - *422 + - *148 + - *424 responses: '204': description: Response @@ -132032,10 +132194,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *419 - - *420 - - *148 + - *421 - *422 + - *148 + - *424 responses: '204': description: Response @@ -132076,9 +132238,9 @@ paths: application/json: schema: type: array - items: *433 + items: *435 examples: - default: *434 + default: *436 headers: Link: *47 '304': *37 @@ -132100,16 +132262,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *435 + - *437 - *148 responses: '200': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 headers: Link: *47 '304': *37 @@ -132131,7 +132293,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *435 + - *437 - *148 - *17 - *110 @@ -132143,9 +132305,9 @@ paths: application/json: schema: type: array - items: *439 + items: *441 examples: - default: *872 + default: *874 headers: Link: *47 '304': *37 @@ -132167,7 +132329,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *148 - - *435 + - *437 requestBody: required: true content: @@ -132205,7 +132367,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *873 + items: *875 required: - name - data_type @@ -132221,7 +132383,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *874 + iteration_configuration: *876 required: - name - data_type @@ -132243,20 +132405,20 @@ paths: value: name: Due date data_type: date - single_select_field: *875 - iteration_field: *876 + single_select_field: *877 + iteration_field: *878 responses: '201': description: Response content: application/json: - schema: *439 + schema: *441 examples: - text_field: *877 - number_field: *878 - date_field: *879 - single_select_field: *880 - iteration_field: *881 + text_field: *879 + number_field: *880 + date_field: *881 + single_select_field: *882 + iteration_field: *883 '304': *37 '403': *29 '401': *25 @@ -132277,17 +132439,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *435 - - *882 + - *437 + - *884 - *148 responses: '200': description: Response content: application/json: - schema: *439 + schema: *441 examples: - default: *883 + default: *885 headers: Link: *47 '304': *37 @@ -132310,7 +132472,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *435 + - *437 - *148 - *110 - *111 @@ -132343,9 +132505,9 @@ paths: application/json: schema: type: array - items: *443 + items: *445 examples: - default: *444 + default: *446 headers: Link: *47 '304': *37 @@ -132367,7 +132529,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *148 - - *435 + - *437 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -132437,22 +132599,22 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *442 + value: *444 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *442 + value: *444 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *442 + value: *444 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *442 + value: *444 '304': *37 '403': *29 '401': *25 @@ -132472,9 +132634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *435 + - *437 - *148 - - *445 + - *447 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -132494,9 +132656,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 headers: Link: *47 '304': *37 @@ -132517,9 +132679,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *435 + - *437 - *148 - - *445 + - *447 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -132589,13 +132751,13 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - text_field: *444 - number_field: *444 - date_field: *444 - single_select_field: *444 - iteration_field: *444 + text_field: *446 + number_field: *446 + date_field: *446 + single_select_field: *446 + iteration_field: *446 '401': *25 '403': *29 '404': *6 @@ -132615,9 +132777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *435 + - *437 - *148 - - *445 + - *447 responses: '204': description: Response @@ -132639,9 +132801,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *435 + - *437 - *148 - - *884 + - *886 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -132667,9 +132829,9 @@ paths: application/json: schema: type: array - items: *443 + items: *445 examples: - default: *444 + default: *446 headers: Link: *47 '304': *37 @@ -132707,7 +132869,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -132782,7 +132944,7 @@ paths: application/json: schema: type: array - items: *255 + items: *257 examples: default: value: @@ -132888,9 +133050,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -132920,9 +133082,9 @@ paths: application/json: schema: type: array - items: *855 + items: *857 examples: - default: *856 + default: *858 headers: Link: *47 x-github: @@ -132952,9 +133114,9 @@ paths: application/json: schema: type: array - items: *857 + items: *859 examples: - default: *885 + default: *887 headers: Link: *47 x-github: @@ -132979,7 +133141,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *148 - - *886 + - *888 - *112 - *17 - *19 @@ -132991,11 +133153,11 @@ paths: schema: anyOf: - type: array - items: *887 + items: *889 - type: array items: *80 examples: - default-response: *860 + default-response: *862 headers: Link: *47 x-github: @@ -133024,9 +133186,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *423 + default: *425 headers: Link: *47 x-github: @@ -133154,7 +133316,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &888 + enterprise: &890 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -133212,7 +133374,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &889 + installation: &891 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -133231,7 +133393,7 @@ x-webhooks: required: - id - node_id - organization: &890 + organization: &892 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -133291,13 +133453,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &891 + repository: &893 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &930 + properties: &932 id: description: Unique identifier of the repository example: 42 @@ -133317,8 +133479,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true organization: title: Simple User @@ -133992,7 +134154,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &931 + required: &933 - archive_url - assignees_url - blobs_url @@ -134143,10 +134305,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -134222,11 +134384,11 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - rule: &892 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + rule: &894 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) @@ -134449,11 +134611,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - rule: *892 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + rule: *894 sender: *4 required: - action @@ -134636,11 +134798,11 @@ x-webhooks: - everyone required: - from - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - rule: *892 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + rule: *894 sender: *4 required: - action @@ -134713,7 +134875,7 @@ x-webhooks: required: true content: application/json: - schema: &914 + schema: &916 title: Exemption request cancellation event type: object properties: @@ -134721,11 +134883,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - exemption_request: &893 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + exemption_request: &895 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -135029,7 +135191,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &894 + items: &896 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -135139,7 +135301,7 @@ x-webhooks: required: true content: application/json: - schema: &915 + schema: &917 title: Exemption request completed event type: object properties: @@ -135147,11 +135309,11 @@ x-webhooks: type: string enum: - completed - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - exemption_request: *893 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + exemption_request: *895 sender: *4 required: - action @@ -135223,7 +135385,7 @@ x-webhooks: required: true content: application/json: - schema: &912 + schema: &914 title: Exemption request created event type: object properties: @@ -135231,11 +135393,11 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - exemption_request: *893 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + exemption_request: *895 sender: *4 required: - action @@ -135307,7 +135469,7 @@ x-webhooks: required: true content: application/json: - schema: &916 + schema: &918 title: Exemption response dismissed event type: object properties: @@ -135315,12 +135477,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - exemption_request: *893 - exemption_response: *894 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + exemption_request: *895 + exemption_response: *896 sender: *4 required: - action @@ -135394,7 +135556,7 @@ x-webhooks: required: true content: application/json: - schema: &913 + schema: &915 title: Exemption response submitted event type: object properties: @@ -135402,12 +135564,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - exemption_request: *893 - exemption_response: *894 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + exemption_request: *895 + exemption_response: *896 sender: *4 required: - action @@ -135491,7 +135653,7 @@ x-webhooks: type: string enum: - completed - check_run: &896 + check_run: &898 title: CheckRun description: A check performed on the code of a given code change type: object @@ -135544,8 +135706,8 @@ x-webhooks: type: string pull_requests: type: array - items: *234 - repository: *290 + items: *236 + repository: *292 status: example: completed type: string @@ -135582,7 +135744,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *895 + deployment: *897 details_url: example: https://example.com type: string @@ -135632,7 +135794,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *234 + items: *236 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -135667,10 +135829,10 @@ x-webhooks: - output - app - pull_requests - installation: *889 - enterprise: *888 - organization: *890 - repository: *891 + installation: *891 + enterprise: *890 + organization: *892 + repository: *893 sender: *4 required: - check_run @@ -136061,11 +136223,11 @@ x-webhooks: type: string enum: - created - check_run: *896 - installation: *889 - enterprise: *888 - organization: *890 - repository: *891 + check_run: *898 + installation: *891 + enterprise: *890 + organization: *892 + repository: *893 sender: *4 required: - check_run @@ -136459,11 +136621,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *896 - installation: *889 - enterprise: *888 - organization: *890 - repository: *891 + check_run: *898 + installation: *891 + enterprise: *890 + organization: *892 + repository: *893 requested_action: description: The action requested by the user. type: object @@ -136866,11 +137028,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *896 - installation: *889 - enterprise: *888 - organization: *890 - repository: *891 + check_run: *898 + installation: *891 + enterprise: *890 + organization: *892 + repository: *893 sender: *4 required: - check_run @@ -137840,10 +138002,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -138537,10 +138699,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -139228,10 +139390,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -139397,7 +139559,7 @@ x-webhooks: required: - login - id - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -139542,20 +139704,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &897 + commit_oid: &899 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: *888 - installation: *889 - organization: *890 - ref: &898 + enterprise: *890 + installation: *891 + organization: *892 + ref: &900 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: *891 + repository: *893 sender: *4 required: - action @@ -139720,7 +139882,7 @@ x-webhooks: required: - login - id - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -139950,12 +140112,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *897 - enterprise: *888 - installation: *889 - organization: *890 - ref: *898 - repository: *891 + commit_oid: *899 + enterprise: *890 + installation: *891 + organization: *892 + ref: *900 + repository: *893 sender: *4 required: - action @@ -140050,7 +140212,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -140221,12 +140383,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *897 - enterprise: *888 - installation: *889 - organization: *890 - ref: *898 - repository: *891 + commit_oid: *899 + enterprise: *890 + installation: *891 + organization: *892 + ref: *900 + repository: *893 sender: *4 required: - action @@ -140392,7 +140554,7 @@ x-webhooks: required: - login - id - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -140558,12 +140720,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *897 - enterprise: *888 - installation: *889 - organization: *890 - ref: *898 - repository: *891 + commit_oid: *899 + enterprise: *890 + installation: *891 + organization: *892 + ref: *900 + repository: *893 sender: *4 required: - action @@ -140662,7 +140824,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -140837,16 +140999,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *891 + repository: *893 sender: *4 required: - action @@ -140943,7 +141105,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -141083,12 +141245,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *897 - enterprise: *888 - installation: *889 - organization: *890 - ref: *898 - repository: *891 + commit_oid: *899 + enterprise: *890 + installation: *891 + organization: *892 + ref: *900 + repository: *893 sender: *4 required: - action @@ -141254,7 +141416,7 @@ x-webhooks: required: - login - id - dismissed_comment: *567 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -141399,10 +141561,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -141657,10 +141819,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -141740,18 +141902,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *890 - pusher_type: &899 + organization: *892 + pusher_type: &901 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &900 + ref: &902 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -141761,7 +141923,7 @@ x-webhooks: enum: - tag - branch - repository: *891 + repository: *893 sender: *4 required: - ref @@ -141844,9 +142006,9 @@ x-webhooks: enum: - created definition: *161 - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 required: - action @@ -141931,9 +142093,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 required: - action @@ -142011,9 +142173,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *161 - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 required: - action @@ -142091,9 +142253,9 @@ x-webhooks: enum: - updated definition: *161 - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 required: - action @@ -142170,10 +142332,10 @@ x-webhooks: type: string enum: - updated - enterprise: *888 - installation: *889 - repository: *891 - organization: *890 + enterprise: *890 + installation: *891 + repository: *893 + organization: *892 sender: *4 new_property_values: type: array @@ -142258,18 +142420,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *888 - installation: *889 - organization: *890 - pusher_type: *899 - ref: *900 + enterprise: *890 + installation: *891 + organization: *892 + pusher_type: *901 + ref: *902 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *891 + repository: *893 sender: *4 required: - ref @@ -142349,11 +142511,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142433,11 +142595,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142518,11 +142680,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142603,11 +142765,11 @@ x-webhooks: type: string enum: - created - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142686,11 +142848,11 @@ x-webhooks: type: string enum: - dismissed - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142769,11 +142931,11 @@ x-webhooks: type: string enum: - fixed - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142853,11 +143015,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -142936,11 +143098,11 @@ x-webhooks: type: string enum: - reopened - alert: *631 - installation: *889 - organization: *890 - enterprise: *888 - repository: *891 + alert: *633 + installation: *891 + organization: *892 + enterprise: *890 + repository: *893 sender: *4 required: - action @@ -143017,9 +143179,9 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - key: &901 + enterprise: *890 + installation: *891 + key: &903 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -143055,8 +143217,8 @@ x-webhooks: - verified - created_at - read_only - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -143133,11 +143295,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - key: *901 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + key: *903 + organization: *892 + repository: *893 sender: *4 required: - action @@ -143693,12 +143855,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - workflow: &907 + workflow: &909 title: Workflow type: object nullable: true @@ -144439,15 +144601,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *902 - required: *903 + properties: *904 + required: *905 nullable: true pull_requests: type: array - items: *735 - repository: *891 - organization: *890 - installation: *889 + items: *737 + repository: *893 + organization: *892 + installation: *891 sender: *4 responses: '200': @@ -144518,7 +144680,7 @@ x-webhooks: type: string enum: - approved - approver: &904 + approver: &906 type: object properties: avatar_url: @@ -144561,11 +144723,11 @@ x-webhooks: type: string comment: type: string - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - reviewers: &905 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + reviewers: &907 type: array items: type: object @@ -144644,7 +144806,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &906 + workflow_job_run: &908 type: object properties: conclusion: @@ -145375,18 +145537,18 @@ x-webhooks: type: string enum: - rejected - approver: *904 + approver: *906 comment: type: string - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - reviewers: *905 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + reviewers: *907 sender: *4 since: type: string - workflow_job_run: *906 + workflow_job_run: *908 workflow_job_runs: type: array items: @@ -146090,13 +146252,13 @@ x-webhooks: type: string enum: - requested - enterprise: *888 + enterprise: *890 environment: type: string - installation: *889 - organization: *890 - repository: *891 - requestor: &917 + installation: *891 + organization: *892 + repository: *893 + requestor: &919 title: User type: object nullable: true @@ -147985,12 +148147,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - workflow: *907 + workflow: *909 workflow_run: title: Deployment Workflow Run type: object @@ -148670,7 +148832,7 @@ x-webhooks: type: string enum: - answered - answer: &910 + answer: &912 type: object properties: author_association: @@ -148827,11 +148989,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -148958,11 +149120,11 @@ x-webhooks: - from required: - category - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149045,11 +149207,11 @@ x-webhooks: type: string enum: - closed - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149131,7 +149293,7 @@ x-webhooks: type: string enum: - created - comment: &909 + comment: &911 type: object properties: author_association: @@ -149288,11 +149450,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149375,12 +149537,12 @@ x-webhooks: type: string enum: - deleted - comment: *909 - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + comment: *911 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149475,12 +149637,12 @@ x-webhooks: - from required: - body - comment: *909 - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + comment: *911 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149564,11 +149726,11 @@ x-webhooks: type: string enum: - created - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149650,11 +149812,11 @@ x-webhooks: type: string enum: - deleted - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149754,11 +149916,11 @@ x-webhooks: type: string required: - from - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149840,10 +150002,10 @@ x-webhooks: type: string enum: - labeled - discussion: *908 - enterprise: *888 - installation: *889 - label: &911 + discussion: *910 + enterprise: *890 + installation: *891 + label: &913 title: Label type: object properties: @@ -149875,8 +150037,8 @@ x-webhooks: - color - default - description - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -149959,11 +150121,11 @@ x-webhooks: type: string enum: - locked - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150045,11 +150207,11 @@ x-webhooks: type: string enum: - pinned - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150131,11 +150293,11 @@ x-webhooks: type: string enum: - reopened - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150220,16 +150382,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *908 - new_repository: *891 + new_discussion: *910 + new_repository: *893 required: - new_discussion - new_repository - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150312,10 +150474,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *908 - old_answer: *910 - organization: *890 - repository: *891 + discussion: *910 + old_answer: *912 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150397,12 +150559,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *908 - enterprise: *888 - installation: *889 - label: *911 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150485,11 +150647,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150571,11 +150733,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *908 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + discussion: *910 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -150644,7 +150806,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150707,7 +150869,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150770,7 +150932,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *916 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150833,7 +150995,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150896,7 +151058,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150962,7 +151124,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *916 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151028,7 +151190,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151094,7 +151256,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151160,7 +151322,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151226,7 +151388,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151291,7 +151453,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *916 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151356,7 +151518,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151421,7 +151583,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151486,7 +151648,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151552,7 +151714,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151619,7 +151781,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *888 + enterprise: *890 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -152279,9 +152441,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *889 - organization: *890 - repository: *891 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - forkee @@ -152427,9 +152589,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pages: description: The pages that were updated. type: array @@ -152466,7 +152628,7 @@ x-webhooks: - action - sha - html_url - repository: *891 + repository: *893 sender: *4 required: - pages @@ -152542,10 +152704,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories: &918 + organization: *892 + repositories: &920 description: An array of repository objects that the installation can access. type: array @@ -152571,8 +152733,8 @@ x-webhooks: - name - full_name - private - repository: *891 - requester: *917 + repository: *893 + requester: *919 sender: *4 required: - action @@ -152647,11 +152809,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories: *918 - repository: *891 + organization: *892 + repositories: *920 + repository: *893 requester: nullable: true sender: *4 @@ -152727,11 +152889,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories: *918 - repository: *891 + organization: *892 + repositories: *920 + repository: *893 requester: nullable: true sender: *4 @@ -152807,10 +152969,10 @@ x-webhooks: type: string enum: - added - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories_added: &919 + organization: *892 + repositories_added: &921 description: An array of repository objects, which were added to the installation. type: array @@ -152856,15 +153018,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *891 - repository_selection: &920 + repository: *893 + repository_selection: &922 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *917 + requester: *919 sender: *4 required: - action @@ -152943,10 +153105,10 @@ x-webhooks: type: string enum: - removed - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories_added: *919 + organization: *892 + repositories_added: *921 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -152973,9 +153135,9 @@ x-webhooks: - name - full_name - private - repository: *891 - repository_selection: *920 - requester: *917 + repository: *893 + repository_selection: *922 + requester: *919 sender: *4 required: - action @@ -153054,11 +153216,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories: *918 - repository: *891 + organization: *892 + repositories: *920 + repository: *893 requester: nullable: true sender: *4 @@ -153237,10 +153399,10 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 target_type: type: string @@ -153319,11 +153481,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *888 + enterprise: *890 installation: *22 - organization: *890 - repositories: *918 - repository: *891 + organization: *892 + repositories: *920 + repository: *893 requester: nullable: true sender: *4 @@ -153447,8 +153609,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *224 - required: *225 + properties: *226 + required: *227 reactions: title: Reactions type: object @@ -153497,8 +153659,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *710 - required: *711 + properties: *712 + required: *713 nullable: true user: title: User @@ -153583,8 +153745,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -154373,8 +154535,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154390,7 +154552,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -154723,8 +154885,8 @@ x-webhooks: - state - locked - assignee - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -154804,7 +154966,7 @@ x-webhooks: type: string enum: - deleted - comment: &921 + comment: &923 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -154961,8 +155123,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *710 - required: *711 + properties: *712 + required: *713 nullable: true required: - url @@ -154977,8 +155139,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -155763,8 +155925,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155780,7 +155942,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -156115,8 +156277,8 @@ x-webhooks: - state - locked - assignee - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -156196,7 +156358,7 @@ x-webhooks: type: string enum: - edited - changes: &950 + changes: &952 description: The changes to the comment. type: object properties: @@ -156208,9 +156370,9 @@ x-webhooks: type: string required: - from - comment: *921 - enterprise: *888 - installation: *889 + comment: *923 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156998,8 +157160,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157015,7 +157177,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -157348,8 +157510,8 @@ x-webhooks: - state - locked - assignee - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -157430,9 +157592,9 @@ x-webhooks: type: string enum: - pinned - comment: *921 - enterprise: *888 - installation: *889 + comment: *923 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158222,8 +158384,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158239,7 +158401,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -158574,8 +158736,8 @@ x-webhooks: - state - locked - assignee - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -158655,9 +158817,9 @@ x-webhooks: type: string enum: - unpinned - comment: *921 - enterprise: *888 - installation: *889 + comment: *923 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159447,8 +159609,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159464,7 +159626,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -159799,8 +159961,8 @@ x-webhooks: - state - locked - assignee - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -159883,15 +160045,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *229 + blocked_issue: *231 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *229 + blocking_issue: *231 blocking_issue_repo: *80 - installation: *889 - organization: *890 - repository: *891 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -159974,15 +160136,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *229 + blocked_issue: *231 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *229 + blocking_issue: *231 blocking_issue_repo: *80 - installation: *889 - organization: *890 - repository: *891 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -160064,15 +160226,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *229 + blocked_issue: *231 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *229 - installation: *889 - organization: *890 - repository: *891 + blocking_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -160155,15 +160317,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *229 + blocked_issue: *231 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *229 - installation: *889 - organization: *890 - repository: *891 + blocking_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -160243,10 +160405,10 @@ x-webhooks: type: string enum: - assigned - assignee: *917 - enterprise: *888 - installation: *889 - issue: &922 + assignee: *919 + enterprise: *890 + installation: *891 + issue: &924 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -161035,14 +161197,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161058,7 +161220,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -161159,8 +161321,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -161240,8 +161402,8 @@ x-webhooks: type: string enum: - closed - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -162035,14 +162197,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162058,7 +162220,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -162294,8 +162456,8 @@ x-webhooks: required: - state - closed_at - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -162374,8 +162536,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -163160,14 +163322,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163183,7 +163345,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -163283,8 +163445,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -163363,8 +163525,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -164171,14 +164333,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164194,7 +164356,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -164273,7 +164435,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &923 + milestone: &925 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164411,8 +164573,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -164511,8 +164673,8 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165301,14 +165463,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165321,7 +165483,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *403 title: description: Title of the issue type: string @@ -165425,9 +165587,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *911 - organization: *890 - repository: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -165507,9 +165669,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *888 - installation: *889 - issue: *922 + enterprise: *890 + installation: *891 + issue: *924 issue_field: type: object description: The issue field whose value was set or updated on the @@ -165618,8 +165780,8 @@ x-webhooks: - id required: - from - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -165699,9 +165861,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *888 - installation: *889 - issue: *922 + enterprise: *890 + installation: *891 + issue: *924 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -165759,8 +165921,8 @@ x-webhooks: nullable: true required: - id - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -165840,8 +166002,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166629,14 +166791,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166649,7 +166811,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *403 title: description: Title of the issue type: string @@ -166753,9 +166915,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *911 - organization: *890 - repository: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -166835,8 +166997,8 @@ x-webhooks: type: string enum: - locked - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167648,14 +167810,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167668,7 +167830,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *403 title: description: Title of the issue type: string @@ -167749,8 +167911,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -167829,8 +167991,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168636,14 +168798,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168659,7 +168821,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -168737,9 +168899,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *923 - organization: *890 - repository: *891 + milestone: *925 + organization: *892 + repository: *893 sender: *4 required: - action @@ -169602,11 +169764,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169634,8 +169796,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true user: title: User @@ -169707,7 +169869,7 @@ x-webhooks: required: - login - id - type: *401 + type: *403 required: - id - number @@ -170187,8 +170349,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170972,11 +171134,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170992,7 +171154,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -171005,8 +171167,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true user: title: User @@ -171100,8 +171262,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -171181,9 +171343,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *888 - installation: *889 - issue: &924 + enterprise: *890 + installation: *891 + issue: &926 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -171966,14 +172128,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171989,7 +172151,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -172089,8 +172251,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -172169,8 +172331,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172980,14 +173142,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173081,9 +173243,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *401 - organization: *890 - repository: *891 + type: *403 + organization: *892 + repository: *893 sender: *4 required: - action @@ -173949,14 +174111,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173972,7 +174134,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -174551,11 +174713,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *888 - installation: *889 - issue: *924 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *926 + organization: *892 + repository: *893 sender: *4 required: - action @@ -174635,12 +174797,12 @@ x-webhooks: type: string enum: - typed - enterprise: *888 - installation: *889 - issue: *922 - type: *401 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *924 + type: *403 + organization: *892 + repository: *893 sender: *4 required: - action @@ -174721,7 +174883,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &953 + assignee: &955 title: User type: object nullable: true @@ -174791,11 +174953,11 @@ x-webhooks: required: - login - id - enterprise: *888 - installation: *889 - issue: *922 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *924 + organization: *892 + repository: *893 sender: *4 required: - action @@ -174874,12 +175036,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *888 - installation: *889 - issue: *922 - label: *911 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *924 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -174959,8 +175121,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175770,14 +175932,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true - sub_issues_summary: *827 - issue_dependencies_summary: *828 + sub_issues_summary: *829 + issue_dependencies_summary: *830 issue_field_values: type: array - items: *694 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175793,7 +175955,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *403 updated_at: type: string format: date-time @@ -175871,8 +176033,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -175952,11 +176114,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *888 - installation: *889 - issue: *924 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *926 + organization: *892 + repository: *893 sender: *4 required: - action @@ -176035,12 +176197,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *888 - installation: *889 - issue: *922 - type: *401 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + issue: *924 + type: *403 + organization: *892 + repository: *893 sender: *4 required: - action @@ -176120,11 +176282,11 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - label: *911 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -176202,11 +176364,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - label: *911 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -176316,11 +176478,11 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - label: *911 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + label: *913 + organization: *892 + repository: *893 sender: *4 required: - action @@ -176402,9 +176564,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *888 - installation: *889 - marketplace_purchase: &925 + enterprise: *890 + installation: *891 + marketplace_purchase: &927 title: Marketplace Purchase type: object required: @@ -176487,8 +176649,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *890 - previous_marketplace_purchase: &926 + organization: *892 + previous_marketplace_purchase: &928 title: Marketplace Purchase type: object properties: @@ -176568,7 +176730,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *891 + repository: *893 sender: *4 required: - action @@ -176648,10 +176810,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *888 - installation: *889 - marketplace_purchase: *925 - organization: *890 + enterprise: *890 + installation: *891 + marketplace_purchase: *927 + organization: *892 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176734,7 +176896,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *891 + repository: *893 sender: *4 required: - action @@ -176816,10 +176978,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *888 - installation: *889 - marketplace_purchase: *925 - organization: *890 + enterprise: *890 + installation: *891 + marketplace_purchase: *927 + organization: *892 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176901,7 +177063,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *891 + repository: *893 sender: *4 required: - action @@ -176982,8 +177144,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 marketplace_purchase: title: Marketplace Purchase type: object @@ -177065,9 +177227,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *890 - previous_marketplace_purchase: *926 - repository: *891 + organization: *892 + previous_marketplace_purchase: *928 + repository: *893 sender: *4 required: - action @@ -177147,12 +177309,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *888 - installation: *889 - marketplace_purchase: *925 - organization: *890 - previous_marketplace_purchase: *926 - repository: *891 + enterprise: *890 + installation: *891 + marketplace_purchase: *927 + organization: *892 + previous_marketplace_purchase: *928 + repository: *893 sender: *4 required: - action @@ -177254,11 +177416,11 @@ x-webhooks: type: string required: - to - enterprise: *888 - installation: *889 - member: *917 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + member: *919 + organization: *892 + repository: *893 sender: *4 required: - action @@ -177358,11 +177520,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *888 - installation: *889 - member: *917 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + member: *919 + organization: *892 + repository: *893 sender: *4 required: - action @@ -177441,11 +177603,11 @@ x-webhooks: type: string enum: - removed - enterprise: *888 - installation: *889 - member: *917 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + member: *919 + organization: *892 + repository: *893 sender: *4 required: - action @@ -177523,11 +177685,11 @@ x-webhooks: type: string enum: - added - enterprise: *888 - installation: *889 - member: *917 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + member: *919 + organization: *892 + repository: *893 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177603,7 +177765,7 @@ x-webhooks: required: - login - id - team: &927 + team: &929 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -177826,11 +177988,11 @@ x-webhooks: type: string enum: - removed - enterprise: *888 - installation: *889 - member: *917 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + member: *919 + organization: *892 + repository: *893 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177907,7 +178069,7 @@ x-webhooks: required: - login - id - team: *927 + team: *929 required: - action - scope @@ -177989,8 +178151,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *889 - merge_group: &929 + installation: *891 + merge_group: &931 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -178009,15 +178171,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *928 + head_commit: *930 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178103,10 +178265,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *889 - merge_group: *929 - organization: *890 - repository: *891 + installation: *891 + merge_group: *931 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178179,7 +178341,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 + enterprise: *890 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -178288,16 +178450,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *889 - organization: *890 + installation: *891 + organization: *892 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *930 - required: *931 + properties: *932 + required: *933 nullable: true sender: *4 required: @@ -178378,11 +178540,11 @@ x-webhooks: type: string enum: - closed - enterprise: *888 - installation: *889 - milestone: *923 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + milestone: *925 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178461,9 +178623,9 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - milestone: &932 + enterprise: *890 + installation: *891 + milestone: &934 title: Milestone description: A collection of related issues and pull requests. type: object @@ -178600,8 +178762,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178680,11 +178842,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - milestone: *923 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + milestone: *925 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178794,11 +178956,11 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - milestone: *923 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + milestone: *925 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178878,11 +179040,11 @@ x-webhooks: type: string enum: - opened - enterprise: *888 - installation: *889 - milestone: *932 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + milestone: *934 + organization: *892 + repository: *893 sender: *4 required: - action @@ -178961,11 +179123,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *917 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + blocked_user: *919 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -179044,11 +179206,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *917 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + blocked_user: *919 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -179124,7 +179286,7 @@ x-webhooks: enum: - created definition: *156 - enterprise: *888 + enterprise: *890 sender: *4 required: - action @@ -179204,8 +179366,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 sender: *4 required: - action @@ -179278,8 +179440,8 @@ x-webhooks: enum: - updated definition: *156 - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 sender: *4 required: - action @@ -179351,9 +179513,9 @@ x-webhooks: type: string enum: - updated - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 new_property_values: type: array @@ -179441,9 +179603,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - membership: &933 + enterprise: *890 + installation: *891 + membership: &935 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -179550,8 +179712,8 @@ x-webhooks: - role - organization_url - user - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -179629,11 +179791,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *888 - installation: *889 - membership: *933 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + membership: *935 + organization: *892 + repository: *893 sender: *4 required: - action @@ -179712,8 +179874,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -179829,10 +179991,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 - user: *917 + user: *919 required: - action - invitation @@ -179910,11 +180072,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *888 - installation: *889 - membership: *933 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + membership: *935 + organization: *892 + repository: *893 sender: *4 required: - action @@ -180001,11 +180163,11 @@ x-webhooks: properties: from: type: string - enterprise: *888 - installation: *889 - membership: *933 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + membership: *935 + organization: *892 + repository: *893 sender: *4 required: - action @@ -180083,9 +180245,9 @@ x-webhooks: type: string enum: - published - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 package: description: Information about the package. type: object @@ -180584,7 +180746,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &934 + items: &936 title: Ruby Gems metadata type: object properties: @@ -180679,7 +180841,7 @@ x-webhooks: - owner - package_version - registry - repository: *891 + repository: *893 sender: *4 required: - action @@ -180756,9 +180918,9 @@ x-webhooks: type: string enum: - updated - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 package: description: Information about the package. type: object @@ -181111,7 +181273,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *934 + items: *936 source_url: type: string format: uri @@ -181181,7 +181343,7 @@ x-webhooks: - owner - package_version - registry - repository: *891 + repository: *893 sender: *4 required: - action @@ -181357,12 +181519,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *888 + enterprise: *890 id: type: integer - installation: *889 - organization: *890 - repository: *891 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - id @@ -181439,7 +181601,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &935 + personal_access_token_request: &937 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -181585,10 +181747,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *888 - organization: *890 + enterprise: *890 + organization: *892 sender: *4 - installation: *889 + installation: *891 required: - action - personal_access_token_request @@ -181665,11 +181827,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *935 - enterprise: *888 - organization: *890 + personal_access_token_request: *937 + enterprise: *890 + organization: *892 sender: *4 - installation: *889 + installation: *891 required: - action - personal_access_token_request @@ -181745,11 +181907,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *935 - enterprise: *888 - organization: *890 + personal_access_token_request: *937 + enterprise: *890 + organization: *892 sender: *4 - installation: *889 + installation: *891 required: - action - personal_access_token_request @@ -181824,11 +181986,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *935 - organization: *890 - enterprise: *888 + personal_access_token_request: *937 + organization: *892 + enterprise: *890 sender: *4 - installation: *889 + installation: *891 required: - action - personal_access_token_request @@ -181933,7 +182095,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *936 + last_response: *938 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -181965,8 +182127,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 zen: description: Random string of GitHub zen. @@ -182211,10 +182373,10 @@ x-webhooks: - from required: - note - enterprise: *888 - installation: *889 - organization: *890 - project_card: &937 + enterprise: *890 + installation: *891 + organization: *892 + project_card: &939 title: Project Card type: object properties: @@ -182333,7 +182495,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *891 + repository: *893 sender: *4 required: - action @@ -182414,11 +182576,11 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - project_card: *937 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project_card: *939 + repository: *893 sender: *4 required: - action @@ -182498,9 +182660,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 project_card: title: Project Card type: object @@ -182628,8 +182790,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *930 - required: *931 + properties: *932 + required: *933 nullable: true sender: *4 required: @@ -182723,11 +182885,11 @@ x-webhooks: - from required: - note - enterprise: *888 - installation: *889 - organization: *890 - project_card: *937 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project_card: *939 + repository: *893 sender: *4 required: - action @@ -182821,9 +182983,9 @@ x-webhooks: - from required: - column_id - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 project_card: allOf: - title: Project Card @@ -183013,7 +183175,7 @@ x-webhooks: type: string required: - after_id - repository: *891 + repository: *893 sender: *4 required: - action @@ -183093,10 +183255,10 @@ x-webhooks: type: string enum: - closed - enterprise: *888 - installation: *889 - organization: *890 - project: &939 + enterprise: *890 + installation: *891 + organization: *892 + project: &941 title: Project type: object properties: @@ -183220,7 +183382,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *891 + repository: *893 sender: *4 required: - action @@ -183300,10 +183462,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - project_column: &938 + enterprise: *890 + installation: *891 + organization: *892 + project_column: &940 title: Project Column type: object properties: @@ -183342,7 +183504,7 @@ x-webhooks: - name - created_at - updated_at - repository: *891 + repository: *893 sender: *4 required: - action @@ -183421,18 +183583,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - project_column: *938 + enterprise: *890 + installation: *891 + organization: *892 + project_column: *940 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *930 - required: *931 + properties: *932 + required: *933 nullable: true sender: *4 required: @@ -183522,11 +183684,11 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - organization: *890 - project_column: *938 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project_column: *940 + repository: *893 sender: *4 required: - action @@ -183606,11 +183768,11 @@ x-webhooks: type: string enum: - moved - enterprise: *888 - installation: *889 - organization: *890 - project_column: *938 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project_column: *940 + repository: *893 sender: *4 required: - action @@ -183690,11 +183852,11 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - project: *939 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project: *941 + repository: *893 sender: *4 required: - action @@ -183774,18 +183936,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - project: *939 + enterprise: *890 + installation: *891 + organization: *892 + project: *941 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *930 - required: *931 + properties: *932 + required: *933 nullable: true sender: *4 required: @@ -183887,11 +184049,11 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - organization: *890 - project: *939 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project: *941 + repository: *893 sender: *4 required: - action @@ -183970,11 +184132,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *888 - installation: *889 - organization: *890 - project: *939 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + project: *941 + repository: *893 sender: *4 required: - action @@ -184055,9 +184217,9 @@ x-webhooks: type: string enum: - closed - installation: *889 - organization: *890 - projects_v2: *433 + installation: *891 + organization: *892 + projects_v2: *435 sender: *4 required: - action @@ -184138,9 +184300,9 @@ x-webhooks: type: string enum: - created - installation: *889 - organization: *890 - projects_v2: *433 + installation: *891 + organization: *892 + projects_v2: *435 sender: *4 required: - action @@ -184221,9 +184383,9 @@ x-webhooks: type: string enum: - deleted - installation: *889 - organization: *890 - projects_v2: *433 + installation: *891 + organization: *892 + projects_v2: *435 sender: *4 required: - action @@ -184340,9 +184502,9 @@ x-webhooks: type: string to: type: string - installation: *889 - organization: *890 - projects_v2: *433 + installation: *891 + organization: *892 + projects_v2: *435 sender: *4 required: - action @@ -184425,7 +184587,7 @@ x-webhooks: type: string enum: - archived - changes: &943 + changes: &945 type: object properties: archived_at: @@ -184439,9 +184601,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *889 - organization: *890 - projects_v2_item: &940 + installation: *891 + organization: *892 + projects_v2_item: &942 title: Projects v2 Item description: An item belonging to a project type: object @@ -184459,7 +184621,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *440 + content_type: *442 creator: *4 created_at: type: string @@ -184576,9 +184738,9 @@ x-webhooks: nullable: true to: type: string - installation: *889 - organization: *890 - projects_v2_item: *940 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -184660,9 +184822,9 @@ x-webhooks: type: string enum: - created - installation: *889 - organization: *890 - projects_v2_item: *940 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -184743,9 +184905,9 @@ x-webhooks: type: string enum: - deleted - installation: *889 - organization: *890 - projects_v2_item: *940 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -184851,7 +185013,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &941 + - &943 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -184873,7 +185035,7 @@ x-webhooks: required: - id - name - - &942 + - &944 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -184907,8 +185069,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *941 - - *942 + - *943 + - *944 required: - field_value - type: object @@ -184924,9 +185086,9 @@ x-webhooks: nullable: true required: - body - installation: *889 - organization: *890 - projects_v2_item: *940 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -185021,9 +185183,9 @@ x-webhooks: to: type: string nullable: true - installation: *889 - organization: *890 - projects_v2_item: *940 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -185106,10 +185268,10 @@ x-webhooks: type: string enum: - restored - changes: *943 - installation: *889 - organization: *890 - projects_v2_item: *940 + changes: *945 + installation: *891 + organization: *892 + projects_v2_item: *942 sender: *4 required: - action @@ -185191,9 +185353,9 @@ x-webhooks: type: string enum: - reopened - installation: *889 - organization: *890 - projects_v2: *433 + installation: *891 + organization: *892 + projects_v2: *435 sender: *4 required: - action @@ -185274,14 +185436,14 @@ x-webhooks: type: string enum: - created - installation: *889 - organization: *890 - projects_v2_status_update: &946 + installation: *891 + organization: *892 + projects_v2_status_update: &948 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *944 - required: *945 + properties: *946 + required: *947 sender: *4 required: - action @@ -185362,9 +185524,9 @@ x-webhooks: type: string enum: - deleted - installation: *889 - organization: *890 - projects_v2_status_update: *946 + installation: *891 + organization: *892 + projects_v2_status_update: *948 sender: *4 required: - action @@ -185500,9 +185662,9 @@ x-webhooks: type: string format: date nullable: true - installation: *889 - organization: *890 - projects_v2_status_update: *946 + installation: *891 + organization: *892 + projects_v2_status_update: *948 sender: *4 required: - action @@ -185573,10 +185735,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - repository @@ -185653,13 +185815,13 @@ x-webhooks: type: string enum: - assigned - assignee: *917 - enterprise: *888 - installation: *889 - number: &947 + assignee: *919 + enterprise: *890 + installation: *891 + number: &949 description: The pull request number. type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -187964,7 +188126,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -188046,11 +188208,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -190350,7 +190512,7 @@ x-webhooks: - draft reason: type: string - repository: *891 + repository: *893 sender: *4 required: - action @@ -190432,11 +190594,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -192736,7 +192898,7 @@ x-webhooks: - draft reason: type: string - repository: *891 + repository: *893 sender: *4 required: - action @@ -192818,13 +192980,13 @@ x-webhooks: type: string enum: - closed - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: &948 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: &950 allOf: - - *735 + - *737 - type: object properties: allow_auto_merge: @@ -192886,7 +193048,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *891 + repository: *893 sender: *4 required: - action @@ -192967,12 +193129,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: *948 - repository: *891 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: *950 + repository: *893 sender: *4 required: - action @@ -193052,11 +193214,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *888 - milestone: *717 - number: *947 - organization: *890 - pull_request: &949 + enterprise: *890 + milestone: *719 + number: *949 + organization: *892 + pull_request: &951 title: Pull Request type: object properties: @@ -195341,7 +195503,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -195420,11 +195582,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -197728,7 +197890,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *891 + repository: *893 sender: *4 required: - action @@ -197852,12 +198014,12 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: *948 - repository: *891 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: *950 + repository: *893 sender: *4 required: - action @@ -197937,11 +198099,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -200230,7 +200392,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -200310,11 +200472,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *888 - installation: *889 - label: *911 - number: *947 - organization: *890 + enterprise: *890 + installation: *891 + label: *913 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -202618,7 +202780,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -202699,10 +202861,10 @@ x-webhooks: type: string enum: - locked - enterprise: *888 - installation: *889 - number: *947 - organization: *890 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -205004,7 +205166,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -205084,12 +205246,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *888 - milestone: *717 - number: *947 - organization: *890 - pull_request: *949 - repository: *891 + enterprise: *890 + milestone: *719 + number: *949 + organization: *892 + pull_request: *951 + repository: *893 sender: *4 required: - action @@ -205168,12 +205330,12 @@ x-webhooks: type: string enum: - opened - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: *948 - repository: *891 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: *950 + repository: *893 sender: *4 required: - action @@ -205254,12 +205416,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: *948 - repository: *891 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: *950 + repository: *893 sender: *4 required: - action @@ -205339,12 +205501,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *888 - installation: *889 - number: *947 - organization: *890 - pull_request: *948 - repository: *891 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 + pull_request: *950 + repository: *893 sender: *4 required: - action @@ -205710,9 +205872,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: type: object properties: @@ -207904,7 +208066,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *891 + repository: *893 sender: *4 required: - action @@ -207984,7 +208146,7 @@ x-webhooks: type: string enum: - deleted - comment: &951 + comment: &953 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. @@ -208269,9 +208431,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: type: object properties: @@ -210451,7 +210613,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *891 + repository: *893 sender: *4 required: - action @@ -210531,11 +210693,11 @@ x-webhooks: type: string enum: - edited - changes: *950 - comment: *951 - enterprise: *888 - installation: *889 - organization: *890 + changes: *952 + comment: *953 + enterprise: *890 + installation: *891 + organization: *892 pull_request: type: object properties: @@ -212718,7 +212880,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *891 + repository: *893 sender: *4 required: - action @@ -212799,9 +212961,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: title: Simple Pull Request type: object @@ -214996,7 +215158,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *891 + repository: *893 review: description: The review that was affected. type: object @@ -215243,9 +215405,9 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: title: Simple Pull Request type: object @@ -217299,8 +217461,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *891 - review: &952 + repository: *893 + review: &954 description: The review that was affected. type: object properties: @@ -217533,12 +217695,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: description: The pull request number. type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -219843,7 +220005,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 requested_reviewer: title: User type: object @@ -219927,12 +220089,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: description: The pull request number. type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -222244,7 +222406,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 requested_team: title: Team description: Groups of organization members that gives permissions @@ -222436,12 +222598,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: description: The pull request number. type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -224748,7 +224910,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 requested_reviewer: title: User type: object @@ -224833,12 +224995,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *888 - installation: *889 + enterprise: *890 + installation: *891 number: description: The pull request number. type: integer - organization: *890 + organization: *892 pull_request: title: Pull Request type: object @@ -227136,7 +227298,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 requested_team: title: Team description: Groups of organization members that gives permissions @@ -227317,9 +227479,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: title: Simple Pull Request type: object @@ -229516,8 +229678,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *891 - review: *952 + repository: *893 + review: *954 sender: *4 required: - action @@ -229597,9 +229759,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: title: Simple Pull Request type: object @@ -231691,7 +231853,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *891 + repository: *893 sender: *4 thread: type: object @@ -232078,9 +232240,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 pull_request: title: Simple Pull Request type: object @@ -234158,7 +234320,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *891 + repository: *893 sender: *4 thread: type: object @@ -234548,10 +234710,10 @@ x-webhooks: type: string before: type: string - enterprise: *888 - installation: *889 - number: *947 - organization: *890 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -236844,7 +237006,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -236926,11 +237088,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *953 - enterprise: *888 - installation: *889 - number: *947 - organization: *890 + assignee: *955 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -239235,7 +239397,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -239314,11 +239476,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *888 - installation: *889 - label: *911 - number: *947 - organization: *890 + enterprise: *890 + installation: *891 + label: *913 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -241613,7 +241775,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -241694,10 +241856,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *888 - installation: *889 - number: *947 - organization: *890 + enterprise: *890 + installation: *891 + number: *949 + organization: *892 pull_request: title: Pull Request type: object @@ -243984,7 +244146,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *891 + repository: *893 sender: *4 required: - action @@ -244184,7 +244346,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *888 + enterprise: *890 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -244276,8 +244438,8 @@ x-webhooks: - url - author - committer - installation: *889 - organization: *890 + installation: *891 + organization: *892 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -244863,9 +245025,9 @@ x-webhooks: type: string enum: - published - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 registry_package: type: object properties: @@ -245311,7 +245473,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *934 + items: *936 summary: type: string tag_name: @@ -245365,7 +245527,7 @@ x-webhooks: - owner - package_version - registry - repository: *891 + repository: *893 sender: *4 required: - action @@ -245443,9 +245605,9 @@ x-webhooks: type: string enum: - updated - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 registry_package: type: object properties: @@ -245753,7 +245915,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *934 + items: *936 summary: type: string tag_name: @@ -245802,7 +245964,7 @@ x-webhooks: - owner - package_version - registry - repository: *891 + repository: *893 sender: *4 required: - action @@ -245879,10 +246041,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - release: &954 + enterprise: *890 + installation: *891 + organization: *892 + release: &956 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -246200,7 +246362,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *891 + repository: *893 sender: *4 required: - action @@ -246277,11 +246439,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - release: *954 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + release: *956 + repository: *893 sender: *4 required: - action @@ -246398,11 +246560,11 @@ x-webhooks: type: boolean required: - to - enterprise: *888 - installation: *889 - organization: *890 - release: *954 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + release: *956 + repository: *893 sender: *4 required: - action @@ -246480,9 +246642,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -246804,7 +246966,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *891 + repository: *893 sender: *4 required: - action @@ -246880,10 +247042,10 @@ x-webhooks: type: string enum: - published - enterprise: *888 - installation: *889 - organization: *890 - release: &955 + enterprise: *890 + installation: *891 + organization: *892 + release: &957 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -247202,7 +247364,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *891 + repository: *893 sender: *4 required: - action @@ -247278,11 +247440,11 @@ x-webhooks: type: string enum: - released - enterprise: *888 - installation: *889 - organization: *890 - release: *954 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + release: *956 + repository: *893 sender: *4 required: - action @@ -247358,11 +247520,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *888 - installation: *889 - organization: *890 - release: *955 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + release: *957 + repository: *893 sender: *4 required: - action @@ -247438,11 +247600,11 @@ x-webhooks: type: string enum: - published - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - repository_advisory: *788 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + repository_advisory: *790 sender: *4 required: - action @@ -247518,11 +247680,11 @@ x-webhooks: type: string enum: - reported - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - repository_advisory: *788 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + repository_advisory: *790 sender: *4 required: - action @@ -247598,10 +247760,10 @@ x-webhooks: type: string enum: - archived - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -247678,10 +247840,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -247759,10 +247921,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -247846,10 +248008,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -247961,10 +248123,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -248036,10 +248198,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 status: type: string @@ -248120,10 +248282,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -248200,10 +248362,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -248297,10 +248459,10 @@ x-webhooks: - name required: - repository - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -248380,10 +248542,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 repository_ruleset: *195 sender: *4 required: @@ -248462,10 +248624,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 repository_ruleset: *195 sender: *4 required: @@ -248544,10 +248706,10 @@ x-webhooks: type: string enum: - edited - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 repository_ruleset: *195 changes: type: object @@ -248609,16 +248771,16 @@ x-webhooks: properties: added: type: array - items: *755 + items: *757 deleted: type: array - items: *755 + items: *757 updated: type: array items: type: object properties: - rule: *755 + rule: *757 changes: type: object properties: @@ -248852,10 +249014,10 @@ x-webhooks: - from required: - owner - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -248933,10 +249095,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249014,7 +249176,7 @@ x-webhooks: type: string enum: - create - alert: &956 + alert: &958 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -249136,10 +249298,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249345,10 +249507,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249426,11 +249588,11 @@ x-webhooks: type: string enum: - reopen - alert: *956 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *958 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249629,10 +249791,10 @@ x-webhooks: enum: - fixed - open - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249710,7 +249872,7 @@ x-webhooks: type: string enum: - assigned - alert: &957 + alert: &959 type: object properties: number: *131 @@ -249853,10 +250015,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -249934,11 +250096,11 @@ x-webhooks: type: string enum: - created - alert: *957 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250019,11 +250181,11 @@ x-webhooks: type: string enum: - created - alert: *957 - installation: *889 - location: *958 - organization: *890 - repository: *891 + alert: *959 + installation: *891 + location: *960 + organization: *892 + repository: *893 sender: *4 required: - location @@ -250261,11 +250423,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *957 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250343,11 +250505,11 @@ x-webhooks: type: string enum: - reopened - alert: *957 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250425,11 +250587,11 @@ x-webhooks: type: string enum: - resolved - alert: *957 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250507,12 +250669,12 @@ x-webhooks: type: string enum: - unassigned - alert: *957 + alert: *959 assignee: *4 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250590,11 +250752,11 @@ x-webhooks: type: string enum: - validated - alert: *957 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + alert: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -250720,10 +250882,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *891 - enterprise: *888 - installation: *889 - organization: *890 + repository: *893 + enterprise: *890 + installation: *891 + organization: *892 sender: *4 required: - action @@ -250801,11 +250963,11 @@ x-webhooks: type: string enum: - published - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - security_advisory: &959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + security_advisory: &961 description: The details of the security advisory, including summary, description, and severity. type: object @@ -250988,11 +251150,11 @@ x-webhooks: type: string enum: - updated - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 - security_advisory: *959 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 + security_advisory: *961 sender: *4 required: - action @@ -251065,10 +251227,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -251252,11 +251414,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *450 - enterprise: *888 - installation: *889 - organization: *890 - repository: *497 + security_and_analysis: *452 + enterprise: *890 + installation: *891 + organization: *892 + repository: *499 sender: *4 required: - changes @@ -251334,12 +251496,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: &960 + sponsorship: &962 type: object properties: created_at: @@ -251640,12 +251802,12 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: *960 + sponsorship: *962 required: - action - sponsorship @@ -251733,12 +251895,12 @@ x-webhooks: type: string required: - from - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: *960 + sponsorship: *962 required: - action - changes @@ -251815,17 +251977,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &961 + effective_date: &963 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: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: *960 + sponsorship: *962 required: - action - sponsorship @@ -251899,7 +252061,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &962 + changes: &964 type: object properties: tier: @@ -251943,13 +252105,13 @@ x-webhooks: - from required: - tier - effective_date: *961 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + effective_date: *963 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: *960 + sponsorship: *962 required: - action - changes @@ -252026,13 +252188,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *962 - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + changes: *964 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - sponsorship: *960 + sponsorship: *962 required: - action - changes @@ -252106,10 +252268,10 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252192,10 +252354,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252615,15 +252777,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *888 + enterprise: *890 id: description: The unique identifier of the status. type: integer - installation: *889 + installation: *891 name: type: string - organization: *890 - repository: *891 + organization: *892 + repository: *893 sender: *4 sha: description: The Commit SHA. @@ -252732,15 +252894,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *229 + parent_issue: *231 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *229 - installation: *889 - organization: *890 - repository: *891 + sub_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -252823,15 +252985,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *229 + parent_issue: *231 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *229 - installation: *889 - organization: *890 - repository: *891 + sub_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -252914,15 +253076,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *229 + sub_issue: *231 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *229 - installation: *889 - organization: *890 - repository: *891 + parent_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -253005,15 +253167,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *229 + sub_issue: *231 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *229 - installation: *889 - organization: *890 - repository: *891 + parent_issue: *231 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -253089,12 +253251,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 - team: &963 + team: &965 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -253317,9 +253479,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 repository: title: Repository description: A git repository @@ -253777,7 +253939,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *963 + team: *965 required: - action - team @@ -253853,9 +254015,9 @@ x-webhooks: type: string enum: - created - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 repository: title: Repository description: A git repository @@ -254313,7 +254475,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *963 + team: *965 required: - action - team @@ -254390,9 +254552,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 repository: title: Repository description: A git repository @@ -254850,7 +255012,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *963 + team: *965 required: - action - team @@ -254994,9 +255156,9 @@ x-webhooks: - from required: - permissions - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 repository: title: Repository description: A git repository @@ -255454,7 +255616,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *963 + team: *965 required: - action - changes @@ -255532,9 +255694,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *888 - installation: *889 - organization: *890 + enterprise: *890 + installation: *891 + organization: *892 repository: title: Repository description: A git repository @@ -255992,7 +256154,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *963 + team: *965 required: - action - team @@ -256068,10 +256230,10 @@ x-webhooks: type: string enum: - started - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 required: - action @@ -256144,16 +256306,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *888 + enterprise: *890 inputs: type: object nullable: true additionalProperties: true - installation: *889 - organization: *890 + installation: *891 + organization: *892 ref: type: string - repository: *891 + repository: *893 sender: *4 workflow: type: string @@ -256235,10 +256397,10 @@ x-webhooks: type: string enum: - completed - enterprise: *888 - installation: *889 - organization: *890 - repository: *891 + enterprise: *890 + installation: *891 + organization: *892 + repository: *893 sender: *4 workflow_job: allOf: @@ -256475,7 +256637,7 @@ x-webhooks: type: string required: - conclusion - deployment: *638 + deployment: *640 required: - action - repository @@ -256554,10 +256716,10 @@ x-webhooks: type: string enum: {"code":"deadline_exceeded","msg":"operation timed out"}