diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index a483af07a2..162037b697 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -12157,98 +12157,11 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully created." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "organization", - "repository", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/create-budget" }, "examples": { "create-organization-budget": { - "value": { - "message": "Budget successfully created.", - "budget": { - "$ref": "#/components/responses/budget" - } - } + "$ref": "#/components/examples/create-budget" } } } @@ -12484,91 +12397,7 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully updated." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/update-budget" }, "examples": { "update-budget": { @@ -123497,6 +123326,115 @@ "budgets" ] }, + "create-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the create operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center", + "multi_user_customer", + "user" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "message", + "budget" + ] + }, "get-budget": { "type": "object", "properties": { @@ -123606,6 +123544,113 @@ "budget_entity_name" ] }, + "update-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the update operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "budget", + "message" + ] + }, "delete-budget": { "type": "object", "properties": { @@ -132854,6 +132899,27 @@ "type" ] }, + "repository-rule-params-dismissal-restriction": { + "title": "DismissalRestriction", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "type": "object", + "properties": { + "allowed_actors": { + "type": "array", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "items": { + "$ref": "#/components/schemas/repository-rule-params-actor" + } + }, + "enabled": { + "type": "boolean", + "description": "Whether to restrict review dismissal to specific actors." + } + }, + "required": [ + "enabled" + ] + }, "repository-rule-params-reviewer": { "title": "Reviewer", "description": "A required reviewing team", @@ -310821,6 +310887,24 @@ "total_count": 2 } }, + "create-budget": { + "value": { + "message": "Budget successfully created.", + "budget": { + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] + } + } + } + }, "get-budget": { "value": { "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", @@ -310848,7 +310932,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index b883ba3e13..93d04928d6 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -8907,74 +8907,10 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully created. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - organization - - repository - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/create-budget" examples: create-organization-budget: - value: - message: Budget successfully created. - budget: - "$ref": "#/components/responses/budget" + "$ref": "#/components/examples/create-budget" '400': "$ref": "#/components/responses/bad_request" '401': @@ -9132,69 +9068,7 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully updated. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/update-budget" examples: update-budget: "$ref": "#/components/examples/update-budget" @@ -89816,6 +89690,83 @@ components: description: Total number of budgets matching the query required: - budgets + create-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the create operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - message + - budget get-budget: type: object properties: @@ -89895,6 +89846,81 @@ components: - budget_alerting - budget_scope - budget_entity_name + update-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the update operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - budget + - message delete-budget: type: object properties: @@ -96921,6 +96947,23 @@ components: required: - id - type + repository-rule-params-dismissal-restriction: + title: DismissalRestriction + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + type: object + properties: + allowed_actors: + type: array + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + items: + "$ref": "#/components/schemas/repository-rule-params-actor" + enabled: + type: boolean + description: Whether to restrict review dismissal to specific actors. + required: + - enabled repository-rule-params-reviewer: title: Reviewer description: A required reviewing team @@ -229511,6 +229554,20 @@ components: consumed_amount: 42.0 has_next_page: false total_count: 2 + create-budget: + value: + message: Budget successfully created. + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] get-budget: value: id: 2066deda-923f-43f9-88d2-62395a28c0cdd @@ -229534,7 +229591,7 @@ components: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 463c98ef4a..e0cfe82d14 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -12157,98 +12157,11 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully created." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "organization", - "repository", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/create-budget" }, "examples": { "create-organization-budget": { - "value": { - "message": "Budget successfully created.", - "budget": { - "$ref": "#/components/responses/budget" - } - } + "$ref": "#/components/examples/create-budget" } } } @@ -12484,91 +12397,7 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully updated." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/update-budget" }, "examples": { "update-budget": { @@ -122940,6 +122769,115 @@ "budgets" ] }, + "create-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the create operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center", + "multi_user_customer", + "user" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "message", + "budget" + ] + }, "get-budget": { "type": "object", "properties": { @@ -123049,6 +122987,113 @@ "budget_entity_name" ] }, + "update-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the update operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "budget", + "message" + ] + }, "delete-budget": { "type": "object", "properties": { @@ -132257,6 +132302,27 @@ "type" ] }, + "repository-rule-params-dismissal-restriction": { + "title": "DismissalRestriction", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "type": "object", + "properties": { + "allowed_actors": { + "type": "array", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "items": { + "$ref": "#/components/schemas/repository-rule-params-actor" + } + }, + "enabled": { + "type": "boolean", + "description": "Whether to restrict review dismissal to specific actors." + } + }, + "required": [ + "enabled" + ] + }, "repository-rule-params-reviewer": { "title": "Reviewer", "description": "A required reviewing team", @@ -309981,6 +310047,24 @@ "total_count": 2 } }, + "create-budget": { + "value": { + "message": "Budget successfully created.", + "budget": { + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] + } + } + } + }, "get-budget": { "value": { "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", @@ -310008,7 +310092,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 597843109c..a949297f3b 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -8907,74 +8907,10 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully created. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - organization - - repository - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/create-budget" examples: create-organization-budget: - value: - message: Budget successfully created. - budget: - "$ref": "#/components/responses/budget" + "$ref": "#/components/examples/create-budget" '400': "$ref": "#/components/responses/bad_request" '401': @@ -9132,69 +9068,7 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully updated. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/update-budget" examples: update-budget: "$ref": "#/components/examples/update-budget" @@ -89403,6 +89277,83 @@ components: description: Total number of budgets matching the query required: - budgets + create-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the create operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - message + - budget get-budget: type: object properties: @@ -89482,6 +89433,81 @@ components: - budget_alerting - budget_scope - budget_entity_name + update-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the update operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - budget + - message delete-budget: type: object properties: @@ -96482,6 +96508,23 @@ components: required: - id - type + repository-rule-params-dismissal-restriction: + title: DismissalRestriction + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + type: object + properties: + allowed_actors: + type: array + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + items: + "$ref": "#/components/schemas/repository-rule-params-actor" + enabled: + type: boolean + description: Whether to restrict review dismissal to specific actors. + required: + - enabled repository-rule-params-reviewer: title: Reviewer description: A required reviewing team @@ -228817,6 +228860,20 @@ components: consumed_amount: 42.0 has_next_page: false total_count: 2 + create-budget: + value: + message: Budget successfully created. + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] get-budget: value: id: 2066deda-923f-43f9-88d2-62395a28c0cdd @@ -228840,7 +228897,7 @@ components: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index cac521aeaa..d96cb48b25 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -12171,98 +12171,11 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully created." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "organization", - "repository", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/create-budget" }, "examples": { "create-organization-budget": { - "value": { - "message": "Budget successfully created.", - "budget": { - "$ref": "#/components/responses/budget" - } - } + "$ref": "#/components/examples/create-budget" } } } @@ -12498,91 +12411,7 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "message": { - "type": "string", - "examples": [ - "Budget successfully updated." - ] - }, - "budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, - "budget_scope": { - "type": "string", - "description": "The scope of the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "default": "" - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" - } - } - } - } + "$ref": "#/components/schemas/update-budget" }, "examples": { "update-budget": { @@ -124237,6 +124066,115 @@ "budgets" ] }, + "create-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the create operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center", + "multi_user_customer", + "user" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "message", + "budget" + ] + }, "get-budget": { "type": "object", "properties": { @@ -124346,6 +124284,113 @@ "budget_entity_name" ] }, + "update-budget": { + "type": "object", + "properties": { + "message": { + "type": "string", + "description": "A message indicating the result of the update operation" + }, + "budget": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the budget." + }, + "budget_scope": { + "type": "string", + "description": "The type of scope for the budget", + "enum": [ + "enterprise", + "organization", + "repository", + "cost_center" + ], + "examples": [ + "enterprise" + ] + }, + "budget_entity_name": { + "type": "string", + "description": "The name of the entity to apply the budget to", + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] + }, + "budget_type": { + "description": "The type of pricing for the budget", + "oneOf": [ + { + "type": "string", + "enum": [ + "ProductPricing" + ] + }, + { + "type": "string", + "enum": [ + "SkuPricing" + ] + } + ], + "examples": [ + "ProductPricing" + ] + }, + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } + } + } + } + }, + "required": [ + "budget", + "message" + ] + }, "delete-budget": { "type": "object", "properties": { @@ -133728,6 +133773,27 @@ "type" ] }, + "repository-rule-params-dismissal-restriction": { + "title": "DismissalRestriction", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "type": "object", + "properties": { + "allowed_actors": { + "type": "array", + "description": "Specify people, teams, or apps allowed to dismiss pull request reviews.", + "items": { + "$ref": "#/components/schemas/repository-rule-params-actor" + } + }, + "enabled": { + "type": "boolean", + "description": "Whether to restrict review dismissal to specific actors." + } + }, + "required": [ + "enabled" + ] + }, "repository-rule-params-reviewer": { "title": "Reviewer", "description": "A required reviewing team", @@ -312745,6 +312811,24 @@ "total_count": 2 } }, + "create-budget": { + "value": { + "message": "Budget successfully created.", + "budget": { + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] + } + } + } + }, "get-budget": { "value": { "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", @@ -312772,7 +312856,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index c05ed8d95b..b87530c366 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -8915,74 +8915,10 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully created. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - organization - - repository - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/create-budget" examples: create-organization-budget: - value: - message: Budget successfully created. - budget: - "$ref": "#/components/responses/budget" + "$ref": "#/components/examples/create-budget" '400': "$ref": "#/components/responses/bad_request" '401': @@ -9140,69 +9076,7 @@ paths: content: application/json: schema: - type: object - properties: - message: - type: string - examples: - - Budget successfully updated. - budget: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts - budget_scope: - type: string - description: The scope of the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - budget_entity_name: - type: string - description: The name of the entity to apply the budget to - default: '' - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + "$ref": "#/components/schemas/update-budget" examples: update-budget: "$ref": "#/components/examples/update-budget" @@ -90300,6 +90174,83 @@ components: description: Total number of budgets matching the query required: - budgets + create-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the create operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - message + - budget get-budget: type: object properties: @@ -90379,6 +90330,81 @@ components: - budget_alerting - budget_scope - budget_entity_name + update-budget: + type: object + properties: + message: + type: string + description: A message indicating the result of the update operation + budget: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based products, + this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - budget + - message delete-budget: type: object properties: @@ -97506,6 +97532,23 @@ components: required: - id - type + repository-rule-params-dismissal-restriction: + title: DismissalRestriction + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + type: object + properties: + allowed_actors: + type: array + description: Specify people, teams, or apps allowed to dismiss pull request + reviews. + items: + "$ref": "#/components/schemas/repository-rule-params-actor" + enabled: + type: boolean + description: Whether to restrict review dismissal to specific actors. + required: + - enabled repository-rule-params-reviewer: title: Reviewer description: A required reviewing team @@ -230755,6 +230798,20 @@ components: consumed_amount: 42.0 has_next_page: false total_count: 2 + create-budget: + value: + message: Budget successfully created. + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] get-budget: value: id: 2066deda-923f-43f9-88d2-62395a28c0cdd @@ -230778,7 +230835,7 @@ components: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 842b2113ca..14bc20def0 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -88410,9 +88410,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully created." - ] + "description": "A message indicating the result of the create operation" }, "budget": { "type": "object", @@ -88421,49 +88419,49 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ + "enterprise", "organization", "repository", + "cost_center", "multi_user_customer", "user" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -88480,154 +88478,57 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "message", + "budget" + ] }, "examples": { "create-organization-budget": { "value": { "message": "Budget successfully created.", "budget": { - "description": "Response when updating a budget", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_scope": { - "type": "string", - "description": "The type of scope for the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ], - "examples": [ - "enterprise" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "examples": [ - "octocat/hello-world" - ] - }, - "user": { - "type": "string", - "description": "The user login when the budget is scoped to a single user (`user` scope).", - "examples": [ - "octocat" - ] - }, - "budget_amount": { - "type": "integer", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded", - "examples": [ - true - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or sku to apply the budget to.", - "examples": [ - "actions_linux" - ] - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ], - "examples": [ - "ProductPricing" - ] - }, - "budget_alerting": { - "type": "object", - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget", - "examples": [ - true - ] - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts", - "examples": [ - "mona", - "lisa" - ] - } - } - } - }, - "required": [ - "id", - "budget_amount", - "prevent_further_usage", - "budget_product_sku", - "budget_type", - "budget_alerting", - "budget_scope", - "budget_entity_name" - ] - }, - "examples": { - "default": { - "value": { - "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", - "budget_type": "ProductPricing", - "budget_product_sku": "actions_linux", - "budget_scope": "repository", - "budget_entity_name": "example-repo-name", - "budget_amount": 0.0, - "prevent_further_usage": true, - "budget_alerting": { - "will_alert": true, - "alert_recipients": [ - "mona", - "lisa" - ] - } - } - } - } - } + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] } } } @@ -89387,9 +89288,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully updated." - ] + "description": "A message indicating the result of the update operation" }, "budget": { "type": "object", @@ -89398,51 +89297,47 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ "enterprise", "organization", "repository", - "cost_center", - "multi_user_customer", - "user" + "cost_center" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -89459,15 +89354,41 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "budget", + "message" + ] }, "examples": { "update-budget": { @@ -89479,7 +89400,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 56f0b68425..f81ab9852a 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -914,7 +914,7 @@ paths: - subscriptions_url - type - url - type: &330 + type: &329 type: string description: The type of credit the user is receiving. enum: @@ -1047,7 +1047,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &126 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1080,7 +1080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &653 + - &652 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4196,7 +4196,7 @@ paths: schema: type: integer default: 30 - - &220 + - &219 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 @@ -4205,7 +4205,7 @@ paths: required: false schema: type: string - - &221 + - &220 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4225,7 +4225,7 @@ paths: application/json: schema: type: array - items: &222 + items: &221 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4321,7 +4321,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &222 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4384,7 +4384,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &125 + schema: &124 title: Validation Error description: Validation Error type: object @@ -4456,7 +4456,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &223 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4591,7 +4591,7 @@ paths: - request - response examples: - default: &225 + default: &224 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -10169,7 +10169,7 @@ paths: required: true content: application/json: - schema: &138 + schema: &137 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -10881,7 +10881,7 @@ paths: description: Response content: application/json: - schema: &192 + schema: &191 type: array description: A list of default code security configurations items: @@ -10897,7 +10897,7 @@ paths: default configuration: *47 examples: - default: &193 + default: &192 value: - default_for_new_repos: public configuration: @@ -11359,7 +11359,7 @@ paths: default: value: default_for_new_repos: all - configuration: &191 + configuration: &190 value: id: 1325 target_type: organization @@ -11449,7 +11449,7 @@ paths: application/json: schema: type: array - items: &194 + items: &193 type: object description: Repositories associated with a code security configuration and attachment status @@ -11794,7 +11794,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &195 + repository: &194 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -12336,7 +12336,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &203 + - &202 name: classification in: query description: |- @@ -12345,7 +12345,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &204 + - &203 name: state in: query description: |- @@ -12354,7 +12354,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &205 + - &204 name: severity in: query description: |- @@ -12363,7 +12363,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &206 + - &205 name: ecosystem in: query description: |- @@ -12372,14 +12372,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &207 + - &206 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 - - &208 + - &207 name: epss_percentage in: query description: |- @@ -12391,7 +12391,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 - - &488 + - &487 name: has in: query description: |- @@ -12405,7 +12405,7 @@ paths: type: string enum: - patch - - &209 + - &208 name: assignee in: query description: |- @@ -12414,7 +12414,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &210 + - &209 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12424,7 +12424,7 @@ paths: enum: - development - runtime - - &211 + - &210 name: sort in: query description: |- @@ -12450,11 +12450,11 @@ paths: application/json: schema: type: array - items: &212 + items: &211 type: object description: A Dependabot alert. properties: - number: &181 + number: &180 type: integer description: The security alert number. readOnly: true @@ -12521,7 +12521,7 @@ paths: - transitive - inconclusive - - security_advisory: &489 + security_advisory: &488 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12735,29 +12735,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *64 - url: &184 + url: &183 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &185 + html_url: &184 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &182 + created_at: &181 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: &183 + updated_at: &182 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: &187 + dismissed_at: &186 type: - string - 'null' @@ -12788,7 +12788,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &186 + fixed_at: &185 type: - string - 'null' @@ -12796,7 +12796,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &490 + auto_dismissed_at: &489 type: - string - 'null' @@ -12804,7 +12804,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &491 + dismissal_request: &490 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12867,7 +12867,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &212 value: - number: 2 state: dismissed @@ -13252,7 +13252,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &213 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13278,7 +13278,7 @@ paths: - *65 additionalProperties: false examples: - default: &215 + default: &214 value: default_level: public accessible_repositories: @@ -14523,7 +14523,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &742 title: Discussion description: A Discussion in a repository. type: object @@ -15024,7 +15024,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &281 title: Milestone description: A collection of related issues and pull requests. @@ -15196,7 +15196,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &245 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15309,7 +15309,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &664 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -15393,7 +15393,7 @@ paths: pin: anyOf: - type: 'null' - - &561 + - &560 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15420,7 +15420,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &665 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -15439,7 +15439,7 @@ paths: - total_blocking issue_field_values: type: array - items: &545 + items: &544 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16220,7 +16220,7 @@ paths: type: string release: allOf: - - &593 + - &592 title: Release description: A release. type: object @@ -16302,7 +16302,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &593 title: Release Asset description: Data related to a release. type: object @@ -16905,7 +16905,7 @@ paths: url: type: string format: uri - user: &671 + user: &670 title: Public User description: Public User type: object @@ -18807,7 +18807,7 @@ paths: - closed - all default: open - - &249 + - &248 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18858,7 +18858,7 @@ paths: type: array items: *82 examples: - default: &250 + default: &249 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20270,14 +20270,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &341 + - &340 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &342 + - &341 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20339,7 +20339,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &345 + '301': &344 description: Moved permanently content: application/json: @@ -20361,7 +20361,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &568 name: all description: If `true`, show notifications marked as read. in: query @@ -20369,7 +20369,7 @@ paths: schema: type: boolean default: false - - &570 + - &569 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20379,7 +20379,7 @@ paths: type: boolean default: false - *87 - - &571 + - &570 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: @@ -20411,7 +20411,7 @@ paths: properties: id: type: string - repository: &156 + repository: &155 title: Minimal Repository description: Minimal Repository type: object @@ -20761,7 +20761,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &296 type: - object - 'null' @@ -20972,7 +20972,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &571 value: - id: '1' repository: @@ -21698,7 +21698,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization parameters: - *74 - - &117 + - &116 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, @@ -21707,7 +21707,7 @@ paths: required: false schema: type: integer - - &118 + - &117 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 @@ -21716,7 +21716,7 @@ paths: required: false schema: type: integer - - &119 + - &118 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 @@ -21725,21 +21725,21 @@ paths: required: false schema: type: integer - - &120 + - &119 name: user description: The user name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &121 + - &120 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &122 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -22206,51 +22206,48 @@ paths: properties: message: type: string - examples: - - Budget successfully created. + description: A message indicating the result of the create operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: + - enterprise - organization - repository + - cost_center - multi_user_customer - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -22260,118 +22257,43 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - message + - budget examples: create-organization-budget: value: message: Budget successfully created. - budget: &115 - description: Response when updating a budget - content: - application/json: - schema: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_scope: - type: string - description: The type of scope for the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - examples: - - enterprise - budget_entity_name: - type: string - description: The name of the entity to apply the budget - to - examples: - - octocat/hello-world - user: - type: string - description: The user login when the budget is scoped - to a single user (`user` scope). - examples: - - octocat - budget_amount: - type: integer - description: The budget amount in whole dollars. For - license-based products, this represents the number - of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending - once the budget is exceeded - examples: - - true - budget_product_sku: - type: string - description: A single product or sku to apply the - budget to. - examples: - - actions_linux - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - examples: - - ProductPricing - budget_alerting: - type: object - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this - budget - examples: - - true - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will - receive alerts - examples: - - mona - - lisa - required: - - id - - budget_amount - - prevent_further_usage - - budget_product_sku - - budget_type - - budget_alerting - - budget_scope - - budget_entity_name - examples: - default: - value: - id: 2066deda-923f-43f9-88d2-62395a28c0cdd - budget_type: ProductPricing - budget_product_sku: actions_linux - budget_scope: repository - budget_entity_name: example-repo-name - budget_amount: 0.0 - prevent_further_usage: true - budget_alerting: - will_alert: true - alert_recipients: - - mona - - lisa + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] '400': *14 '401': *23 '403': @@ -22423,7 +22345,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *74 - - &116 + - &115 name: budget_id description: The ID corresponding to the budget. in: path @@ -22431,7 +22353,105 @@ paths: schema: type: string responses: - '200': *115 + '200': + description: Response when updating a budget + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - octocat/hello-world + user: + type: string + description: The user login when the budget is scoped to a single + user (`user` scope). + examples: + - octocat + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - id + - budget_amount + - prevent_further_usage + - budget_product_sku + - budget_type + - budget_alerting + - budget_scope + - budget_entity_name + examples: + default: + value: + id: 2066deda-923f-43f9-88d2-62395a28c0cdd + budget_type: ProductPricing + budget_product_sku: actions_linux + budget_scope: repository + budget_entity_name: example-repo-name + budget_amount: 0.0 + prevent_further_usage: true + budget_alerting: + will_alert: true + alert_recipients: + - mona + - lisa '400': *14 '404': *6 '403': *27 @@ -22454,7 +22474,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 requestBody: required: true content: @@ -22527,52 +22547,46 @@ paths: properties: message: type: string - examples: - - Budget successfully updated. + description: A message indicating the result of the update operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: - enterprise - organization - repository - cost_center - - multi_user_customer - - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -22582,10 +22596,28 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - budget + - message examples: update-budget: value: @@ -22596,7 +22628,7 @@ paths: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true @@ -22649,7 +22681,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 responses: '200': description: Response when deleting a budget @@ -22697,12 +22729,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *74 + - *116 - *117 - *118 - *119 - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -22834,8 +22866,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *74 - - *117 - - &721 + - *116 + - &720 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 @@ -22844,7 +22876,7 @@ paths: required: false schema: type: integer - - *119 + - *118 responses: '200': description: Billing usage report response for an organization @@ -22944,18 +22976,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *74 + - *116 - *117 - *118 - - *119 - - &722 + - &721 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *122 - - &723 + - *121 + - &722 name: sku description: The SKU to query for usage. in: query @@ -23098,7 +23130,7 @@ paths: description: Response content: application/json: - schema: &123 + schema: &122 title: Organization Full description: Organization Full type: object @@ -23493,7 +23525,7 @@ paths: - updated_at - archived_at examples: - default-response: &124 + default-response: &123 value: login: github id: 1 @@ -23810,17 +23842,17 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *124 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: + - *124 - *125 - - *126 '409': *52 x-github: githubCloudOnly: false @@ -23934,7 +23966,7 @@ paths: type: integer repository_cache_usages: type: array - items: &352 + items: &351 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24010,7 +24042,7 @@ paths: type: integer runners: type: array - items: &127 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -24073,7 +24105,7 @@ paths: - size_gb - display_name - source - machine_size_details: &135 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -24182,7 +24214,7 @@ paths: - public_ip_enabled - platform examples: - default: &155 + default: &154 value: total_count: 2 runners: @@ -24320,9 +24352,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: &136 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -24379,7 +24411,7 @@ paths: type: integer images: type: array - items: &128 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -24438,7 +24470,7 @@ paths: - latest_version - state examples: - default: &130 + default: &129 value: total_count: 2 image_versions: @@ -24470,7 +24502,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *74 - - &129 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -24482,7 +24514,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *127 examples: default: value: @@ -24513,7 +24545,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *74 - - *129 + - *128 responses: '204': description: Response @@ -24536,7 +24568,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: - - *129 + - *128 - *74 responses: '200': @@ -24553,7 +24585,7 @@ paths: type: integer image_versions: type: array - items: &131 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -24591,7 +24623,7 @@ paths: - created_on - state_details examples: - default: *130 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24612,8 +24644,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: - *74 - - *129 - - &132 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -24626,7 +24658,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *130 examples: default: value: @@ -24653,8 +24685,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *74 - - *129 - - *132 + - *128 + - *131 responses: '204': description: Response @@ -24691,7 +24723,7 @@ paths: type: integer images: type: array - items: &133 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -24731,7 +24763,7 @@ paths: - display_name - source examples: - default: &134 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -24771,9 +24803,9 @@ paths: type: integer images: type: array - items: *133 + items: *132 examples: - default: *134 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24861,7 +24893,7 @@ paths: type: integer machine_specs: type: array - items: *135 + items: *134 examples: default: value: @@ -24931,7 +24963,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *74 - - &137 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -24943,9 +24975,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 headers: Link: *66 x-github: @@ -24966,7 +24998,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 requestBody: required: true content: @@ -25033,9 +25065,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25052,15 +25084,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 responses: '202': description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25118,7 +25150,7 @@ paths: required: true content: application/json: - schema: *138 + schema: *137 examples: default: *44 responses: @@ -25211,7 +25243,7 @@ paths: required: - include_claim_keys examples: - default: &139 + default: &138 value: include_claim_keys: - repo @@ -25256,13 +25288,13 @@ paths: format. type: boolean examples: - default: *139 + default: *138 responses: '201': description: Empty response content: application/json: - schema: &165 + schema: &164 title: Empty Object description: An object without any properties. type: object @@ -25301,7 +25333,7 @@ paths: schema: type: object properties: - enabled_repositories: &140 + enabled_repositories: &139 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -25314,7 +25346,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: &141 + allowed_actions: &140 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -25322,12 +25354,12 @@ paths: - all - local_only - selected - selected_actions_url: &357 + selected_actions_url: &356 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: &142 + sha_pinning_required: &141 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -25369,9 +25401,9 @@ paths: schema: type: object properties: - enabled_repositories: *140 - allowed_actions: *141 - sha_pinning_required: *142 + enabled_repositories: *139 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled_repositories examples: @@ -25405,7 +25437,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &360 type: object properties: days: @@ -25447,7 +25479,7 @@ paths: required: true content: application/json: - schema: &362 + schema: &361 type: object properties: days: @@ -25490,7 +25522,7 @@ paths: description: Response content: application/json: - schema: &143 + schema: &142 type: object properties: approval_policy: @@ -25504,7 +25536,7 @@ paths: required: - approval_policy examples: - default: &363 + default: &362 value: approval_policy: first_time_contributors '404': *6 @@ -25535,7 +25567,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -25563,7 +25595,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &363 type: object required: - run_workflows_from_fork_pull_requests @@ -25589,7 +25621,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &144 + default: &143 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -25617,7 +25649,7 @@ paths: required: true content: application/json: - schema: &365 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -25640,7 +25672,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -25690,7 +25722,7 @@ paths: type: array items: *78 examples: - default: &148 + default: &147 value: total_count: 1 repositories: @@ -25875,7 +25907,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - &145 + - &144 name: repository_id description: The unique identifier of the repository. in: path @@ -25904,7 +25936,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -25933,7 +25965,7 @@ paths: description: Response content: application/json: - schema: &146 + schema: &145 type: object properties: github_owned_allowed: @@ -25955,7 +25987,7 @@ paths: items: type: string examples: - default: &147 + default: &146 value: github_owned_allowed: true verified_allowed: false @@ -25988,9 +26020,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26122,7 +26154,7 @@ paths: type: array items: *78 examples: - default: *148 + default: *147 '403': *27 '404': *6 x-github: @@ -26191,7 +26223,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -26218,7 +26250,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -26252,17 +26284,17 @@ paths: description: Response content: application/json: - schema: &366 + schema: &365 type: object properties: - default_workflow_permissions: &149 + default_workflow_permissions: &148 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &150 + can_approve_pull_request_reviews: &149 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -26270,7 +26302,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &151 + default: &150 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -26303,13 +26335,13 @@ paths: required: false content: application/json: - schema: &367 + schema: &366 type: object properties: - default_workflow_permissions: *149 - can_approve_pull_request_reviews: *150 + default_workflow_permissions: *148 + can_approve_pull_request_reviews: *149 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26354,7 +26386,7 @@ paths: type: number runner_groups: type: array - items: &152 + items: &151 type: object properties: id: @@ -26544,9 +26576,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: &154 + default: &153 value: id: 2 name: octo-runner-group @@ -26582,7 +26614,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - &153 + - &152 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -26594,7 +26626,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -26631,7 +26663,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -26687,9 +26719,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: *154 + default: *153 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26709,7 +26741,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *74 - - *153 + - *152 responses: '204': description: Response @@ -26733,7 +26765,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -26751,9 +26783,9 @@ paths: type: number runners: type: array - items: *127 + items: *126 examples: - default: *155 + default: *154 headers: Link: *66 x-github: @@ -26776,7 +26808,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: - *74 - - *153 + - *152 - *19 - *17 responses: @@ -26794,9 +26826,9 @@ paths: type: number repositories: type: array - items: *156 + items: *155 examples: - default: &202 + default: &201 value: total_count: 1 repositories: @@ -27049,7 +27081,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: - *74 - - *153 + - *152 requestBody: required: true content: @@ -27094,8 +27126,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -27118,8 +27150,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -27143,7 +27175,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -27161,7 +27193,7 @@ paths: type: number runners: type: array - items: &158 + items: &157 title: Self hosted runners description: A self hosted runner type: object @@ -27195,7 +27227,7 @@ paths: type: boolean labels: type: array - items: &161 + items: &160 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -27234,7 +27266,7 @@ paths: - busy - labels examples: - default: &159 + default: &158 value: total_count: 2 runners: @@ -27296,7 +27328,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -27341,8 +27373,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: - *74 - - *153 - - &157 + - *152 + - &156 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -27371,8 +27403,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: - *74 - - *153 - - *157 + - *152 + - *156 responses: '204': description: Response @@ -27420,9 +27452,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -27454,7 +27486,7 @@ paths: application/json: schema: type: array - items: &368 + items: &367 title: Runner Application description: Runner Application type: object @@ -27479,7 +27511,7 @@ paths: - download_url - filename examples: - default: &369 + default: &368 value: - os: osx architecture: x64 @@ -27565,7 +27597,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &370 + '201': &369 description: Response content: application/json: @@ -27575,7 +27607,7 @@ paths: - runner - encoded_jit_config properties: - runner: *158 + runner: *157 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -27638,7 +27670,7 @@ paths: description: Response content: application/json: - schema: &160 + schema: &159 title: Authentication Token description: Authentication Token type: object @@ -27680,7 +27712,7 @@ paths: - token - expires_at examples: - default: &371 + default: &370 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27717,9 +27749,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: &372 + default: &371 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27745,15 +27777,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: &373 + default: &372 value: id: 23 name: MBP @@ -27796,7 +27828,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *74 - - *157 + - *156 responses: '204': description: Response @@ -27823,9 +27855,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: - '200': &162 + '200': &161 description: Response content: application/json: @@ -27839,7 +27871,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -27879,7 +27911,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -27903,7 +27935,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -27928,7 +27960,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -27953,7 +27985,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -27978,9 +28010,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: - *74 - - *157 + - *156 responses: - '200': &374 + '200': &373 description: Response content: application/json: @@ -27994,7 +28026,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -28036,8 +28068,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: - *74 - - *157 - - &375 + - *156 + - &374 name: name description: The name of a self-hosted runner's custom label. in: path @@ -28045,7 +28077,7 @@ paths: schema: type: string responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -28088,7 +28120,7 @@ paths: type: integer secrets: type: array - items: &163 + items: &162 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -28122,7 +28154,7 @@ paths: - updated_at - visibility examples: - default: &169 + default: &168 value: total_count: 3 secrets: @@ -28169,7 +28201,7 @@ paths: description: Response content: application/json: - schema: &170 + schema: &169 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28204,7 +28236,7 @@ paths: - key_id - key examples: - default: &171 + default: &170 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28230,7 +28262,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *74 - - &164 + - &163 name: secret_name description: The name of the secret. in: path @@ -28242,9 +28274,9 @@ paths: description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: &172 + default: &171 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28273,7 +28305,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28330,7 +28362,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28357,7 +28389,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -28384,7 +28416,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -28402,9 +28434,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: &168 + default: &167 value: total_count: 1 repositories: @@ -28497,7 +28529,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28550,7 +28582,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28584,7 +28616,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28617,7 +28649,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *74 - - &173 + - &172 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)." @@ -28641,7 +28673,7 @@ paths: type: integer variables: type: array - items: &166 + items: &165 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -28689,7 +28721,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &173 value: total_count: 3 variables: @@ -28779,7 +28811,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28805,7 +28837,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *74 - - &167 + - &166 name: name description: The name of the variable. in: path @@ -28817,9 +28849,9 @@ paths: description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: &175 + default: &174 value: name: USERNAME value: octocat @@ -28848,7 +28880,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -28911,7 +28943,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -28938,7 +28970,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -28956,9 +28988,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28985,7 +29017,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29035,7 +29067,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29070,7 +29102,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29122,9 +29154,9 @@ paths: type: integer secrets: type: array - items: *163 + items: *162 examples: - default: *169 + default: *168 headers: Link: *66 x-github: @@ -29155,9 +29187,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29180,15 +29212,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: *172 + default: *171 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29211,7 +29243,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -29268,7 +29300,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29295,7 +29327,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -29322,7 +29354,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -29340,9 +29372,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29366,7 +29398,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -29419,7 +29451,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29453,7 +29485,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29487,7 +29519,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *74 - - *173 + - *172 - *19 responses: '200': @@ -29504,9 +29536,9 @@ paths: type: integer variables: type: array - items: *166 + items: *165 examples: - default: *174 + default: *173 headers: Link: *66 x-github: @@ -29577,7 +29609,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29603,15 +29635,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: *175 + default: *174 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29633,7 +29665,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29696,7 +29728,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -29723,7 +29755,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -29741,9 +29773,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -29770,7 +29802,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29820,7 +29852,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29855,7 +29887,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -30022,7 +30054,7 @@ paths: type: integer deployment_records: type: array - items: &176 + items: &175 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -30069,7 +30101,7 @@ paths: required: - total_count examples: - default: &177 + default: &176 value: total_count: 1 deployment_records: @@ -30249,11 +30281,11 @@ paths: type: integer deployment_records: type: array - items: *176 + items: *175 required: - total_count examples: - default: *177 + default: *176 '403': description: Forbidden content: @@ -30505,9 +30537,9 @@ paths: - 3 deployment_records: type: array - items: *176 + items: *175 examples: - default: *177 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30637,12 +30669,12 @@ paths: required: - subject_digests examples: - default: &702 + default: &701 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &703 + withPredicateType: &702 value: subject_digests: - sha256:abc123 @@ -30701,7 +30733,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &704 + default: &703 value: attestations_subject_digests: - sha256:abc: @@ -31052,7 +31084,7 @@ paths: initiator: type: string examples: - default: &401 + default: &400 value: attestations: - bundle: @@ -31271,7 +31303,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &178 + schema: &177 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -31297,7 +31329,7 @@ paths: application/json: schema: type: array - items: &179 + items: &178 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -31328,7 +31360,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &201 + items: &200 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -31405,7 +31437,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &260 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -31541,7 +31573,7 @@ paths: - string - 'null' format: date-time - state: *178 + state: *177 contact_link: description: The contact link of the campaign. type: @@ -31764,9 +31796,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: &180 + default: &179 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -31849,9 +31881,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '404': *6 '422': description: Unprocessable Entity @@ -31929,7 +31961,7 @@ paths: - string - 'null' format: uri - state: *178 + state: *177 examples: default: value: @@ -31939,9 +31971,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '400': description: Bad Request content: @@ -32008,17 +32040,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *74 - - &425 + - &424 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: &188 + schema: &187 type: string description: The name of the tool used to generate the code scanning analysis. - - &426 + - &425 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 @@ -32026,7 +32058,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &189 + schema: &188 type: - string - 'null' @@ -32042,7 +32074,7 @@ paths: be returned. in: query required: false - schema: &428 + schema: &427 type: string description: State of a code scanning alert. enum: @@ -32065,7 +32097,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &428 type: string description: Severity of a code scanning alert. enum: @@ -32094,18 +32126,18 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: &430 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: &429 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &190 + state: &189 type: - string - 'null' @@ -32115,13 +32147,13 @@ paths: - dismissed - fixed - - fixed_at: *186 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: &431 + dismissed_at: *186 + dismissed_reason: &430 type: - string - 'null' @@ -32132,14 +32164,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &432 + dismissed_comment: &431 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &433 + rule: &432 type: object properties: id: @@ -32200,43 +32232,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &434 + tool: &433 type: object properties: - name: *188 + name: *187 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *189 - most_recent_instance: &435 + guid: *188 + most_recent_instance: &434 type: object properties: - ref: &427 + ref: &426 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &445 + analysis_key: &444 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: &446 + environment: &445 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: &447 + category: &446 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: *190 + state: *189 commit_sha: type: string message: @@ -32250,7 +32282,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: &448 + location: &447 type: object description: Describe a region within a file for the alert. properties: @@ -32271,7 +32303,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: &449 + items: &448 type: - string - 'null' @@ -32909,7 +32941,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32937,9 +32969,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *191 examples: - default: *193 + default: *192 '304': *35 '403': *27 '404': *6 @@ -33028,7 +33060,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 '304': *35 '403': *27 '404': *6 @@ -33473,7 +33505,7 @@ paths: default: value: default_for_new_repos: all - configuration: *191 + configuration: *190 '403': *27 '404': *6 x-github: @@ -33526,13 +33558,13 @@ paths: application/json: schema: type: array - items: *194 + items: *193 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *195 + repository: *194 '403': *27 '404': *6 x-github: @@ -33572,7 +33604,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &250 type: object title: Codespace description: A codespace. @@ -33603,11 +33635,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *156 + repository: *155 machine: anyOf: - type: 'null' - - &461 + - &460 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -33894,7 +33926,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &251 value: total_count: 3 codespaces: @@ -34518,7 +34550,7 @@ paths: type: integer secrets: type: array - items: &196 + items: &195 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -34559,7 +34591,7 @@ paths: - updated_at - visibility examples: - default: &462 + default: &461 value: total_count: 2 secrets: @@ -34597,7 +34629,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &462 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34632,7 +34664,7 @@ paths: - key_id - key examples: - default: &464 + default: &463 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34656,15 +34688,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *196 + schema: *195 examples: - default: &466 + default: &465 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34692,7 +34724,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -34747,7 +34779,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -34774,7 +34806,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -34800,7 +34832,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -34818,9 +34850,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '404': *6 x-github: githubCloudOnly: false @@ -34843,7 +34875,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -34894,7 +34926,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -34928,7 +34960,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -34998,7 +35030,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &197 + items: &196 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -35395,9 +35427,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &198 + default: &197 summary: Example response for an organization copilot space value: id: 84 @@ -35502,9 +35534,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 x-github: @@ -35633,9 +35665,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 '422': *15 @@ -35718,7 +35750,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &199 + items: &198 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -35943,7 +35975,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -36073,7 +36105,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -36224,7 +36256,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &200 + items: &199 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -36368,7 +36400,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36384,7 +36416,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36439,7 +36471,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36508,7 +36540,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36750,7 +36782,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &253 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -36768,7 +36800,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *201 + - *200 - *67 type: - 'null' @@ -37381,12 +37413,12 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 required: - total_count - repositories examples: - default: *202 + default: *201 '500': *53 '401': *23 '403': *27 @@ -37472,7 +37504,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -37506,7 +37538,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -37721,7 +37753,7 @@ paths: application/json: schema: type: array - items: &334 + items: &333 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -38036,7 +38068,7 @@ paths: - date additionalProperties: true examples: - default: &335 + default: &334 value: - date: '2024-06-24' total_active_users: 24 @@ -38138,7 +38170,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &336 + '422': &335 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -38357,12 +38389,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *74 + - *202 - *203 - *204 - *205 - *206 - *207 - - *208 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -38392,7 +38424,7 @@ paths: enum: - patch - deployment - - *209 + - *208 - name: runtime_risk in: query description: |- @@ -38401,8 +38433,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *209 - *210 - - *211 - *60 - *45 - *46 @@ -38414,9 +38446,9 @@ paths: application/json: schema: type: array - items: *212 + items: *211 examples: - default: *213 + default: *212 '304': *35 '400': *14 '403': *27 @@ -38465,9 +38497,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *213 examples: - default: *215 + default: *214 '403': *27 '404': *6 x-github: @@ -38631,7 +38663,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &215 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38710,7 +38742,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &493 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38729,7 +38761,7 @@ paths: - key_id - key examples: - default: &495 + default: &494 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38753,13 +38785,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *216 + schema: *215 examples: default: value: @@ -38788,7 +38820,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -38845,7 +38877,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -38870,7 +38902,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -38895,7 +38927,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -38913,9 +38945,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38937,7 +38969,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -38988,7 +39020,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -39020,7 +39052,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -39058,7 +39090,7 @@ paths: application/json: schema: type: array - items: &263 + items: &262 title: Package description: A software package type: object @@ -39111,7 +39143,7 @@ paths: repository: anyOf: - type: 'null' - - *156 + - *155 created_at: type: string format: date-time @@ -39129,7 +39161,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &263 value: - id: 197 name: hello_docker @@ -39299,7 +39331,7 @@ paths: application/json: schema: type: array - items: &240 + items: &239 title: Organization Invitation description: Organization Invitation type: object @@ -39353,7 +39385,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &240 value: - id: 1 login: monalisa @@ -39420,7 +39452,7 @@ paths: application/json: schema: type: array - items: &217 + items: &216 title: Org Hook description: Org Hook type: object @@ -39605,9 +39637,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: &218 + default: &217 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39655,7 +39687,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *74 - - &219 + - &218 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. @@ -39668,9 +39700,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: *218 + default: *217 '404': *6 x-github: githubCloudOnly: false @@ -39698,7 +39730,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -39744,7 +39776,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: default: value: @@ -39786,7 +39818,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -39814,7 +39846,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 responses: '200': description: Response @@ -39845,7 +39877,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -39896,10 +39928,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -39907,9 +39939,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -39935,16 +39967,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -39970,7 +40002,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '202': *37 @@ -40000,7 +40032,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -40023,7 +40055,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *74 - - &230 + - &229 name: actor_type in: path description: The type of the actor @@ -40036,14 +40068,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &230 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &225 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`.' @@ -40051,7 +40083,7 @@ paths: required: true schema: type: string - - &227 + - &226 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) @@ -40146,12 +40178,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *74 + - *225 - *226 - - *227 - *19 - *17 - *60 - - &236 + - &235 name: sort description: The property to sort the results by. in: query @@ -40230,14 +40262,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *74 + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: &228 + schema: &227 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40253,7 +40285,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &228 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40274,23 +40306,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *74 - - &232 + - &231 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -40309,18 +40341,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *74 + - *225 - *226 - - *227 + - *229 - *230 - - *231 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -40338,9 +40370,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *74 + - *225 - *226 - - *227 - - &233 + - &232 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40353,7 +40385,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &233 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40369,7 +40401,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &234 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40406,18 +40438,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40435,19 +40467,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *74 + - *229 - *230 - - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40465,13 +40497,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - *19 - *17 - *60 - - *236 + - *235 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40555,7 +40587,7 @@ paths: application/json: schema: *20 examples: - default: &532 + default: &531 value: id: 1 account: @@ -40721,12 +40753,12 @@ paths: application/json: schema: anyOf: - - &238 + - &237 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &236 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40754,7 +40786,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &238 value: limit: collaborators_only origin: organization @@ -40783,13 +40815,13 @@ paths: required: true content: application/json: - schema: &533 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *236 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40814,9 +40846,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *239 + default: *238 '422': *15 x-github: githubCloudOnly: false @@ -40892,9 +40924,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 '404': *6 @@ -40971,7 +41003,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *239 examples: default: value: @@ -41026,7 +41058,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *74 - - &242 + - &241 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41057,7 +41089,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *74 - - *242 + - *241 - *17 - *19 responses: @@ -41067,9 +41099,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: &262 + default: &261 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41112,7 +41144,7 @@ paths: application/json: schema: type: array - items: &243 + items: &242 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -41355,9 +41387,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: &244 + default: &243 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41413,7 +41445,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *74 - - &245 + - &244 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41523,9 +41555,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: *244 + default: *243 '404': *6 '422': *7 x-github: @@ -41550,7 +41582,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *74 - - *245 + - *244 responses: '204': *59 '404': *6 @@ -41580,7 +41612,7 @@ paths: application/json: schema: type: array - items: *246 + items: *245 examples: default: value: @@ -41668,9 +41700,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: &247 + default: &246 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41703,7 +41735,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *74 - - &248 + - &247 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41759,9 +41791,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: *247 + default: *246 '404': *6 '422': *7 x-github: @@ -41786,7 +41818,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *74 - - *248 + - *247 responses: '204': description: Response @@ -41849,7 +41881,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: type description: Can be the name of an issue type. in: query @@ -41880,7 +41912,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -42039,9 +42071,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -42068,7 +42100,7 @@ paths: parameters: - *74 - *70 - - &253 + - &252 name: codespace_name in: path required: true @@ -42103,15 +42135,15 @@ paths: parameters: - *74 - *70 - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: &460 + default: &459 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42291,7 +42323,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *253 examples: default: value: @@ -42367,7 +42399,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &254 title: Org Membership description: Org Membership type: object @@ -42436,7 +42468,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &255 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42537,9 +42569,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *255 '422': *15 '403': *27 x-github: @@ -42611,7 +42643,7 @@ paths: application/json: schema: type: array - items: &257 + items: &256 title: Migration description: A migration. type: object @@ -42949,7 +42981,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -43128,7 +43160,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *74 - - &258 + - &257 name: migration_id description: The unique identifier of the migration. in: path @@ -43156,7 +43188,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -43326,7 +43358,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '302': description: Response @@ -43348,7 +43380,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '204': description: Response @@ -43372,8 +43404,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *74 - - *258 - - &685 + - *257 + - &684 name: repo_name description: repo_name parameter in: path @@ -43401,7 +43433,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *74 - - *258 + - *257 - *17 - *19 responses: @@ -43411,9 +43443,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: &269 + default: &268 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43568,7 +43600,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &259 title: Organization Role description: Organization roles type: object @@ -43745,7 +43777,7 @@ paths: parameters: - *74 - *76 - - &259 + - &258 name: role_id description: The unique identifier of the role. in: path @@ -43782,7 +43814,7 @@ paths: parameters: - *74 - *76 - - *259 + - *258 responses: '204': description: Response @@ -43835,7 +43867,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -43867,7 +43899,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -43896,13 +43928,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *74 - - *259 + - *258 responses: '200': description: Response content: application/json: - schema: *260 + schema: *259 examples: default: value: @@ -43953,7 +43985,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -44032,7 +44064,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 type: description: The ownership type of the team type: string @@ -44065,7 +44097,7 @@ paths: - type - parent examples: - default: *262 + default: *261 headers: Link: *66 '404': @@ -44095,7 +44127,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -44124,7 +44156,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *260 name: type: - string @@ -44434,7 +44466,7 @@ paths: - nuget - container - *74 - - &686 + - &685 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44470,12 +44502,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *264 + default: *263 '403': *27 '401': *23 - '400': &688 + '400': &687 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44497,7 +44529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &264 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 @@ -44515,7 +44547,7 @@ paths: - docker - nuget - container - - &266 + - &265 name: package_name description: The name of the package. in: path @@ -44528,7 +44560,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *262 examples: default: value: @@ -44580,8 +44612,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 responses: '204': @@ -44614,8 +44646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - name: token description: package token @@ -44648,8 +44680,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: + - *264 - *265 - - *266 - *74 - *19 - *17 @@ -44670,7 +44702,7 @@ paths: application/json: schema: type: array - items: &267 + items: &266 title: Package Version description: A version of a software package type: object @@ -44805,10 +44837,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - &268 + - &267 name: package_version_id description: Unique identifier of the package version. in: path @@ -44820,7 +44852,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -44856,10 +44888,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -44891,10 +44923,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -44924,7 +44956,7 @@ paths: - *74 - *17 - *19 - - &270 + - &269 name: sort description: The property by which to sort the results. in: query @@ -44935,7 +44967,7 @@ paths: - created_at default: created_at - *60 - - &271 + - &270 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -44947,7 +44979,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &272 + - &271 name: repository description: The name of the repository to use to filter the results. in: query @@ -44956,7 +44988,7 @@ paths: type: string examples: - Hello-World - - &273 + - &272 name: permission description: The permission to use to filter the results. in: query @@ -44965,7 +44997,7 @@ paths: type: string examples: - issues_read - - &274 + - &273 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) @@ -44975,7 +45007,7 @@ paths: schema: type: string format: date-time - - &275 + - &274 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) @@ -44985,7 +45017,7 @@ paths: schema: type: string format: date-time - - &276 + - &275 name: token_id description: The ID of the token in: query @@ -45302,9 +45334,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -45330,14 +45362,14 @@ paths: - *74 - *17 - *19 - - *270 + - *269 - *60 + - *270 - *271 - *272 - *273 - *274 - *275 - - *276 responses: '500': *53 '422': *15 @@ -45619,9 +45651,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -45663,7 +45695,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &276 title: Organization private registry description: Private registry configuration for an organization type: object @@ -46180,7 +46212,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &277 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46272,15 +46304,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *276 examples: - default: *278 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -46303,7 +46335,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -46492,7 +46524,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -46532,7 +46564,7 @@ paths: application/json: schema: type: array - items: &279 + items: &278 title: Projects v2 Project description: A projects v2 project type: object @@ -46606,7 +46638,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &771 + - &770 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46691,7 +46723,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &279 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46794,7 +46826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &280 name: project_number description: The project's number. in: path @@ -46807,9 +46839,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -46832,7 +46864,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -46866,7 +46898,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &285 title: Projects v2 Item description: An item belonging to a project type: object @@ -46880,7 +46912,7 @@ paths: content: oneOf: - *82 - - &475 + - &474 title: Pull Request Simple description: Pull Request Simple type: object @@ -47000,7 +47032,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -47049,7 +47081,7 @@ paths: items: *4 requested_teams: type: array - items: *201 + items: *200 head: type: object properties: @@ -47093,7 +47125,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &282 title: Link description: Hypermedia Link type: object @@ -47102,13 +47134,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -47119,7 +47151,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: &579 + auto_merge: &578 title: Auto merge description: The status of auto merging a pull request. type: @@ -47221,7 +47253,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &284 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47265,7 +47297,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &286 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47339,7 +47371,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *280 - *74 - *17 - *45 @@ -47351,7 +47383,7 @@ paths: application/json: schema: type: array - items: &284 + items: &283 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47504,7 +47536,7 @@ paths: - updated_at - project_url examples: - default: &708 + default: &707 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47634,7 +47666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *280 - *74 requestBody: required: true @@ -47681,7 +47713,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &709 + items: &708 type: object properties: name: @@ -47718,7 +47750,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &710 + iteration_configuration: &709 type: object description: The configuration for iteration fields. properties: @@ -47768,7 +47800,7 @@ paths: value: name: Due date data_type: date - single_select_field: &711 + single_select_field: &710 summary: Create a single select field value: name: Priority @@ -47795,7 +47827,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &712 + iteration_field: &711 summary: Create an iteration field value: name: Sprint @@ -47819,9 +47851,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *283 examples: - text_field: &713 + text_field: &712 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47830,7 +47862,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: &714 + number_field: &713 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47839,7 +47871,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: &715 + date_field: &714 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47848,7 +47880,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: &716 + single_select_field: &715 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47882,7 +47914,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &717 + iteration_field: &716 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47927,8 +47959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &718 + - *280 + - &717 name: field_id description: The unique identifier of the field. in: path @@ -47941,9 +47973,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: &719 + default: &718 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47999,7 +48031,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - 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) @@ -48032,7 +48064,7 @@ paths: application/json: schema: type: array - items: &288 + items: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -48049,7 +48081,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *284 content: type: - object @@ -48099,7 +48131,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &288 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -48797,7 +48829,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -48867,22 +48899,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -48902,9 +48934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - - &290 + - &289 name: item_id description: The unique identifier of the project item. in: path @@ -48930,9 +48962,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -48953,9 +48985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -49028,13 +49060,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -49054,9 +49086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 responses: '204': description: Response @@ -49080,7 +49112,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true content: @@ -49154,7 +49186,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &699 + schema: &698 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49258,7 +49290,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &290 value: id: 1 number: 1 @@ -49304,10 +49336,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -49335,9 +49367,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *280 - *74 - - &720 + - &719 name: view_number description: The number that identifies the project view. in: path @@ -49369,9 +49401,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -49404,7 +49436,7 @@ paths: application/json: schema: type: array - items: &292 + items: &291 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49482,7 +49514,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &292 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49542,7 +49574,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *291 minItems: 1 maxItems: 100 required: @@ -49572,9 +49604,9 @@ paths: application/json: schema: type: array - items: *292 + items: *291 examples: - default: *293 + default: *292 '403': *27 '404': *6 x-github: @@ -49596,7 +49628,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *74 - - &294 + - &293 name: custom_property_name description: The custom property name in: path @@ -49608,9 +49640,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: &295 + default: &294 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49645,7 +49677,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 requestBody: required: true content: @@ -49725,9 +49757,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: *295 + default: *294 '403': *27 '404': *6 x-github: @@ -49751,7 +49783,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 responses: '204': *59 '403': *27 @@ -49815,7 +49847,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &295 title: Custom Property Value description: Custom property name and associated value type: object @@ -49905,7 +49937,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - repository_names - properties @@ -50095,9 +50127,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -50300,7 +50332,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &343 title: Full Repository description: Full Repository type: object @@ -50778,7 +50810,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &480 + code_of_conduct: &479 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -50808,7 +50840,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *296 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -50892,7 +50924,7 @@ paths: - network_count - subscribers_count examples: - default: &346 + default: &345 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51413,7 +51445,7 @@ paths: - *74 - *17 - *19 - - &601 + - &600 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51432,7 +51464,7 @@ paths: application/json: schema: type: array - items: &324 + items: &323 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51467,7 +51499,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &299 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51480,7 +51512,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &300 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -51552,7 +51584,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &297 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -51576,7 +51608,7 @@ paths: match. items: type: string - - &302 + - &301 title: Organization ruleset conditions type: object description: |- @@ -51590,7 +51622,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -51624,7 +51656,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -51646,7 +51678,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -51659,7 +51691,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &298 title: Repository ruleset property targeting definition type: object @@ -51692,7 +51724,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *298 required: - repository_property type: @@ -51700,12 +51732,12 @@ paths: - object rules: type: array - items: &602 + items: &601 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &302 title: creation description: Only allow users with bypass permission to create matching refs. @@ -51717,7 +51749,7 @@ paths: type: string enum: - creation - - &304 + - &303 title: update description: Only allow users with bypass permission to update matching refs. @@ -51738,7 +51770,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &304 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -51750,7 +51782,7 @@ paths: type: string enum: - deletion - - &306 + - &305 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -51762,7 +51794,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &599 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51840,7 +51872,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &306 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -51864,7 +51896,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &307 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -51876,7 +51908,7 @@ paths: type: string enum: - required_signatures - - &309 + - &308 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -51982,7 +52014,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &309 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -52030,7 +52062,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &310 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -52042,7 +52074,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &311 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -52079,7 +52111,7 @@ paths: required: - operator - pattern - - &313 + - &312 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -52116,7 +52148,7 @@ paths: required: - operator - pattern - - &314 + - &313 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -52153,7 +52185,7 @@ paths: required: - operator - pattern - - &315 + - &314 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -52190,7 +52222,7 @@ paths: required: - operator - pattern - - &316 + - &315 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -52227,7 +52259,7 @@ paths: required: - operator - pattern - - &321 + - &320 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -52277,7 +52309,7 @@ paths: - repository_id required: - workflows - - &322 + - &321 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -52338,7 +52370,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &322 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -52364,7 +52396,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &317 + - &316 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52389,7 +52421,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &317 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52413,7 +52445,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &318 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52436,7 +52468,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &319 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -52534,20 +52566,21 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &325 title: Repository Rule type: object description: A repository rule. oneOf: + - *302 - *303 - *304 - *305 @@ -52568,7 +52601,6 @@ paths: - *320 - *321 - *322 - - *323 required: - name - enforcement @@ -52606,9 +52638,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &325 + default: &324 value: id: 21 name: super cool ruleset @@ -52664,7 +52696,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *74 - - &603 + - &602 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 @@ -52679,7 +52711,7 @@ paths: in: query schema: type: string - - &604 + - &603 name: time_period description: |- The time period to filter by. @@ -52695,14 +52727,14 @@ paths: - week - month default: day - - &605 + - &604 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 - - &606 + - &605 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52715,7 +52747,7 @@ paths: - bypass - all default: all - - &607 + - &606 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. @@ -52738,7 +52770,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &607 title: Rule Suites description: Response type: array @@ -52794,7 +52826,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &609 + default: &608 value: - id: 21 actor_id: 12 @@ -52838,7 +52870,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &610 + - &609 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52854,7 +52886,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &610 title: Rule Suite description: Response type: object @@ -52961,7 +52993,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &612 + default: &611 value: id: 21 actor_id: 12 @@ -53034,9 +53066,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '500': *53 put: @@ -53080,16 +53112,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *325 examples: default: value: @@ -53124,9 +53156,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '422': *15 '500': *53 @@ -53184,7 +53216,7 @@ paths: application/json: schema: type: array - items: &327 + items: &326 title: Ruleset version type: object description: The historical version of a ruleset @@ -53208,7 +53240,7 @@ paths: type: string format: date-time examples: - default: &614 + default: &613 value: - version_id: 3 actor: @@ -53261,9 +53293,9 @@ paths: description: Response content: application/json: - schema: &615 + schema: &614 allOf: - - *327 + - *326 - type: object required: - state @@ -53333,7 +53365,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &616 + - &615 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53344,7 +53376,7 @@ paths: enum: - open - resolved - - &617 + - &616 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53354,7 +53386,7 @@ paths: required: false schema: type: string - - &618 + - &617 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53365,7 +53397,7 @@ paths: required: false schema: type: string - - &619 + - &618 name: exclude_providers in: query description: |- @@ -53376,7 +53408,7 @@ paths: required: false schema: type: string - - &620 + - &619 name: providers in: query description: |- @@ -53387,7 +53419,7 @@ paths: required: false schema: type: string - - &621 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53396,7 +53428,7 @@ paths: required: false schema: type: string - - &622 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53415,7 +53447,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &623 + - &622 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. @@ -53430,7 +53462,7 @@ paths: - *60 - *19 - *17 - - &624 + - &623 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 @@ -53440,7 +53472,7 @@ paths: required: false schema: type: string - - &625 + - &624 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 @@ -53450,7 +53482,7 @@ paths: required: false schema: type: string - - &626 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53459,7 +53491,7 @@ paths: required: false schema: type: string - - &627 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53468,7 +53500,7 @@ paths: schema: type: boolean default: false - - &628 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53477,7 +53509,7 @@ paths: schema: type: boolean default: false - - &629 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53486,7 +53518,7 @@ paths: schema: type: boolean default: false - - &630 + - &629 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53507,27 +53539,27 @@ paths: items: type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &631 + state: &630 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: &632 + resolution: &631 type: - string - 'null' @@ -53646,14 +53678,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &633 + - &632 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &635 + - &634 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53717,7 +53749,7 @@ paths: - blob_url - commit_sha - commit_url - - &636 + - &635 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. @@ -53778,7 +53810,7 @@ paths: - page_url - commit_sha - commit_url - - &637 + - &636 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53800,7 +53832,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &638 + - &637 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53822,7 +53854,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &639 + - &638 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53844,7 +53876,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &640 + - &639 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53859,7 +53891,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &641 + - &640 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53874,7 +53906,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &642 + - &641 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53889,7 +53921,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &643 + - &642 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. @@ -53911,7 +53943,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &644 + - &643 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. @@ -53933,7 +53965,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &645 + - &644 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. @@ -53955,7 +53987,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &646 + - &645 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. @@ -53977,7 +54009,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &647 + - &646 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 @@ -54238,7 +54270,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &329 + pattern_config_version: &328 type: - string - 'null' @@ -54248,7 +54280,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &328 + items: &327 type: object properties: token_type: @@ -54317,7 +54349,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *328 + items: *327 examples: default: value: @@ -54374,7 +54406,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *328 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -54400,7 +54432,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *328 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -54498,7 +54530,7 @@ paths: application/json: schema: type: array - items: &651 + items: &650 description: A repository security advisory. type: object properties: @@ -54742,7 +54774,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 credits_detailed: type: - array @@ -54753,7 +54785,7 @@ paths: type: object properties: user: *4 - type: *330 + type: *329 state: type: string description: The state of the user's acceptance of the @@ -54779,7 +54811,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *201 + items: *200 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -54817,7 +54849,7 @@ paths: - private_fork additionalProperties: false examples: - default: &652 + default: &651 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55204,7 +55236,7 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: default: value: @@ -55424,9 +55456,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55495,7 +55527,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -55518,7 +55550,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -55559,7 +55591,7 @@ paths: type: integer network_configurations: type: array - items: &331 + items: &330 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -55712,9 +55744,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: &332 + default: &331 value: id: 123456789ABCDEF name: My network configuration @@ -55743,7 +55775,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - &333 + - &332 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -55755,9 +55787,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 headers: Link: *66 x-github: @@ -55779,7 +55811,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *333 + - *332 requestBody: required: true content: @@ -55832,9 +55864,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55854,7 +55886,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *74 - - *333 + - *332 responses: '204': description: Response @@ -55999,13 +56031,13 @@ paths: application/json: schema: type: array - items: *334 + items: *333 examples: - default: *335 + default: *334 '500': *53 '403': *27 '404': *6 - '422': *336 + '422': *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56045,9 +56077,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '403': *27 @@ -56141,7 +56173,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &336 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -56215,7 +56247,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 members_count: type: integer examples: @@ -56540,7 +56572,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &337 value: id: 1 node_id: MDQ6VGVhbTE= @@ -56617,9 +56649,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -56704,16 +56736,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -56743,7 +56775,7 @@ paths: responses: '204': description: Response - '422': &339 + '422': &338 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -56777,12 +56809,12 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 - '422': *339 + '422': *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56864,7 +56896,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &339 title: Team Membership description: Team Membership type: object @@ -56892,7 +56924,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &667 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56955,9 +56987,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: &668 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57031,9 +57063,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -57064,14 +57096,14 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &669 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -57714,8 +57746,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 requestBody: required: false content: @@ -57762,8 +57794,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '204': description: Response @@ -57798,9 +57830,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: &670 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -57954,7 +57986,7 @@ paths: resources: type: object properties: - core: &343 + core: &342 title: Rate Limit type: object properties: @@ -57971,21 +58003,21 @@ paths: - remaining - reset - used - graphql: *343 - search: *343 - code_search: *343 - source_import: *343 - integration_manifest: *343 - code_scanning_upload: *343 - actions_runner_registration: *343 - scim: *343 - dependency_snapshots: *343 - dependency_sbom: *343 - code_scanning_autofix: *343 + graphql: *342 + search: *342 + code_search: *342 + source_import: *342 + integration_manifest: *342 + code_scanning_upload: *342 + actions_runner_registration: *342 + scim: *342 + dependency_snapshots: *342 + dependency_sbom: *342 + code_scanning_autofix: *342 required: - core - search - rate: *343 + rate: *342 required: - rate - resources @@ -58090,14 +58122,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *344 + schema: *343 examples: default-response: summary: Default response @@ -58602,7 +58634,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58620,8 +58652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -58920,10 +58952,10 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 - '307': &347 + default: *345 + '307': &346 description: Temporary Redirect content: application/json: @@ -58952,8 +58984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -58975,7 +59007,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *347 + '307': *346 '404': *6 '409': *52 x-github: @@ -58999,11 +59031,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &379 + - &378 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -59026,7 +59058,7 @@ paths: type: integer artifacts: type: array - items: &348 + items: &347 title: Artifact description: An artifact type: object @@ -59121,7 +59153,7 @@ paths: - expires_at - updated_at examples: - default: &380 + default: &379 value: total_count: 2 artifacts: @@ -59182,9 +59214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: + - *340 - *341 - - *342 - - &349 + - &348 name: artifact_id description: The unique identifier of the artifact. in: path @@ -59196,7 +59228,7 @@ paths: description: Response content: application/json: - schema: *348 + schema: *347 examples: default: value: @@ -59234,9 +59266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 responses: '204': description: Response @@ -59260,9 +59292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 - name: archive_format in: path required: true @@ -59272,11 +59304,11 @@ paths: '302': description: Response headers: - Location: &497 + Location: &496 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': &536 + '410': &535 description: Gone content: application/json: @@ -59301,14 +59333,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &349 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -59342,13 +59374,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *349 examples: selected_actions: *40 responses: @@ -59377,14 +59409,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &351 + schema: &350 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -59418,13 +59450,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *351 + schema: *350 examples: selected_actions: *42 responses: @@ -59455,14 +59487,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *352 + schema: *351 examples: default: value: @@ -59488,11 +59520,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &353 + - &352 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 @@ -59526,7 +59558,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &353 title: Repository actions caches description: Repository actions caches type: object @@ -59576,7 +59608,7 @@ paths: - total_count - actions_caches examples: - default: &355 + default: &354 value: total_count: 1 actions_caches: @@ -59608,23 +59640,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: + - *340 - *341 - - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *353 + - *352 responses: '200': description: Response content: application/json: - schema: *354 + schema: *353 examples: - default: *355 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59644,8 +59676,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: + - *340 - *341 - - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59674,8 +59706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *46 responses: @@ -59758,8 +59790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: + - *340 - *341 - - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -59915,9 +59947,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - &356 + - &355 name: job_id description: The unique identifier of the job. in: path @@ -59929,7 +59961,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &382 title: Job description: Information of a job execution in a workflow run type: object @@ -60276,9 +60308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 responses: '302': description: Response @@ -60306,9 +60338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 requestBody: required: false content: @@ -60335,7 +60367,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -60359,8 +60391,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: + - *340 - *341 - - *342 responses: '200': description: Status response @@ -60419,8 +60451,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -60459,7 +60491,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -60488,8 +60520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -60507,7 +60539,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &384 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -60528,7 +60560,7 @@ paths: - created_at - updated_at examples: - default: &386 + default: &385 value: total_count: 2 secrets: @@ -60561,9 +60593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -60580,7 +60612,7 @@ paths: type: integer variables: type: array - items: &387 + items: &386 title: Actions Variable type: object properties: @@ -60614,7 +60646,7 @@ paths: - created_at - updated_at examples: - default: &388 + default: &387 value: total_count: 2 variables: @@ -60647,8 +60679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -60657,12 +60689,12 @@ paths: schema: type: object properties: - enabled: &358 + enabled: &357 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *141 - selected_actions_url: *357 - sha_pinning_required: *142 + allowed_actions: *140 + selected_actions_url: *356 + sha_pinning_required: *141 required: - enabled examples: @@ -60690,8 +60722,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -60702,9 +60734,9 @@ paths: schema: type: object properties: - enabled: *358 - allowed_actions: *141 - sha_pinning_required: *142 + enabled: *357 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled examples: @@ -60734,14 +60766,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &359 + schema: &358 type: object properties: access_level: @@ -60758,7 +60790,7 @@ paths: required: - access_level examples: - default: &360 + default: &359 value: access_level: organization x-github: @@ -60782,15 +60814,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *359 + schema: *358 examples: - default: *360 + default: *359 responses: '204': description: Response @@ -60814,14 +60846,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *361 + schema: *360 examples: default: value: @@ -60845,8 +60877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Empty response for successful settings update @@ -60856,7 +60888,7 @@ paths: required: true content: application/json: - schema: *362 + schema: *361 examples: default: summary: Set retention days @@ -60880,16 +60912,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *143 + schema: *142 examples: - default: *363 + default: *362 '404': *6 x-github: enabledForGitHubApps: true @@ -60908,8 +60940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -60919,7 +60951,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -60943,16 +60975,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *364 + schema: *363 examples: - default: *144 + default: *143 '403': *27 '404': *6 x-github: @@ -60972,15 +61004,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *365 + schema: *364 examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -61004,16 +61036,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *146 + schema: *145 examples: - default: *147 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61032,8 +61064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -61041,9 +61073,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61065,16 +61097,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *366 + schema: *365 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61095,8 +61127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Success response @@ -61107,9 +61139,9 @@ paths: required: true content: application/json: - schema: *367 + schema: *366 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61136,8 +61168,8 @@ paths: in: query schema: type: string + - *340 - *341 - - *342 - *17 - *19 responses: @@ -61155,9 +61187,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -61181,8 +61213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -61190,9 +61222,9 @@ paths: application/json: schema: type: array - items: *368 + items: *367 examples: - default: *369 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61214,8 +61246,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -61258,7 +61290,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *370 + '201': *369 '404': *6 '422': *7 '409': *52 @@ -61289,16 +61321,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *371 + default: *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61326,16 +61358,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *372 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61357,17 +61389,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: *373 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61388,9 +61420,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '204': description: Response @@ -61416,11 +61448,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *162 + '200': *161 '404': *6 x-github: githubCloudOnly: false @@ -61442,9 +61474,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -61468,7 +61500,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61492,9 +61524,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -61519,7 +61551,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61543,11 +61575,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *374 + '200': *373 '404': *6 x-github: githubCloudOnly: false @@ -61574,12 +61606,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: + - *340 - *341 - - *342 - - *157 - - *375 + - *156 + - *374 responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61605,9 +61637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: + - *340 - *341 - - *342 - - &391 + - &390 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. @@ -61615,7 +61647,7 @@ paths: required: false schema: type: string - - &392 + - &391 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61623,7 +61655,7 @@ paths: required: false schema: type: string - - &393 + - &392 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61632,7 +61664,7 @@ paths: required: false schema: type: string - - &394 + - &393 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 @@ -61659,7 +61691,7 @@ paths: - pending - *17 - *19 - - &395 + - &394 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)." @@ -61668,7 +61700,7 @@ paths: schema: type: string format: date-time - - &376 + - &375 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61677,13 +61709,13 @@ paths: schema: type: boolean default: false - - &396 + - &395 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &397 + - &396 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61706,7 +61738,7 @@ paths: type: integer workflow_runs: type: array - items: &377 + items: &376 title: Workflow Run description: An invocation of a workflow type: object @@ -61884,7 +61916,7 @@ paths: head_commit: anyOf: - type: 'null' - - &421 + - &420 title: Simple Commit description: A commit. type: object @@ -61958,8 +61990,8 @@ paths: - timestamp - author - committer - repository: *156 - head_repository: *156 + repository: *155 + head_repository: *155 head_repository_id: type: integer examples: @@ -61999,7 +62031,7 @@ paths: - workflow_url - pull_requests examples: - default: &398 + default: &397 value: total_count: 1 workflow_runs: @@ -62235,24 +62267,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: + - *340 - *341 - - *342 - - &378 + - &377 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: &381 + default: &380 value: id: 30433642 name: Build @@ -62493,9 +62525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -62518,9 +62550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -62648,15 +62680,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: + - *340 - *341 - - *342 - - *378 + - *377 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -62683,12 +62715,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *19 - - *379 + - *378 - *60 responses: '200': @@ -62705,9 +62737,9 @@ paths: type: integer artifacts: type: array - items: *348 + items: *347 examples: - default: *380 + default: *379 headers: Link: *66 x-github: @@ -62731,25 +62763,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - &382 + - *377 + - &381 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: *381 + default: *380 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62772,10 +62804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 - *17 - *19 responses: @@ -62793,9 +62825,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: &384 + default: &383 value: total_count: 1 jobs: @@ -62908,10 +62940,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 responses: '302': description: Response @@ -62939,15 +62971,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -62987,9 +63019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *45 - *46 @@ -63166,9 +63198,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: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -63235,15 +63267,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63270,9 +63302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - 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 @@ -63302,9 +63334,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: *384 + default: *383 headers: Link: *66 x-github: @@ -63329,9 +63361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '302': description: Response @@ -63358,9 +63390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -63387,9 +63419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -63458,7 +63490,7 @@ paths: items: type: object properties: - type: &504 + type: &503 type: string description: The type of reviewer. enum: @@ -63469,7 +63501,7 @@ paths: reviewer: anyOf: - *4 - - *201 + - *200 required: - environment - wait_timer @@ -63544,9 +63576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -63596,7 +63628,7 @@ paths: application/json: schema: type: array - items: &499 + items: &498 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -63708,7 +63740,7 @@ paths: - created_at - updated_at examples: - default: &500 + default: &499 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63764,9 +63796,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -63788,7 +63820,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63811,9 +63843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -63835,7 +63867,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63867,9 +63899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -64006,8 +64038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64025,9 +64057,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -64052,16 +64084,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64083,17 +64115,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: &399 + default: &398 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -64119,9 +64151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -64152,7 +64184,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64178,9 +64210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -64205,9 +64237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -64224,9 +64256,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -64249,8 +64281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -64277,7 +64309,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64302,17 +64334,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: &400 + default: &399 value: name: USERNAME value: octocat @@ -64338,9 +64370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -64382,9 +64414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -64409,8 +64441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64428,7 +64460,7 @@ paths: type: integer workflows: type: array - items: &389 + items: &388 title: Workflow description: A GitHub Actions workflow type: object @@ -64546,9 +64578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: + - *340 - *341 - - *342 - - &390 + - &389 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -64563,7 +64595,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *388 examples: default: value: @@ -64596,9 +64628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -64623,9 +64655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -64712,9 +64744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -64741,19 +64773,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: + - *340 - *341 - - *342 + - *389 - *390 - *391 - *392 - *393 - - *394 - *17 - *19 + - *394 + - *375 - *395 - - *376 - *396 - - *397 responses: '200': description: Response @@ -64769,9 +64801,9 @@ paths: type: integer workflow_runs: type: array - items: *377 + items: *376 examples: - default: *398 + default: *397 headers: Link: *66 x-github: @@ -64803,9 +64835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '200': description: Response @@ -64866,8 +64898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: + - *340 - *341 - - *342 - *60 - *17 - *45 @@ -65040,8 +65072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65059,9 +65091,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -65085,9 +65117,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -65104,9 +65136,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -65131,8 +65163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65150,9 +65182,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -65177,16 +65209,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65208,17 +65240,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65240,9 +65272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -65273,7 +65305,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -65299,9 +65331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -65326,9 +65358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -65345,9 +65377,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -65370,8 +65402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -65398,7 +65430,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -65423,17 +65455,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65454,9 +65486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -65498,9 +65530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -65521,8 +65553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65559,8 +65591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: + - *340 - *341 - - *342 - name: assignee in: path required: true @@ -65596,8 +65628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -65707,8 +65739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: + - *340 - *341 - - *342 - *17 - *45 - *46 @@ -65765,7 +65797,7 @@ paths: initiator: type: string examples: - default: *401 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65785,8 +65817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -65794,7 +65826,7 @@ paths: application/json: schema: type: array - items: &402 + items: &401 title: Autolink reference description: An autolink reference. type: object @@ -65853,8 +65885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -65893,9 +65925,9 @@ paths: description: response content: application/json: - schema: *402 + schema: *401 examples: - default: &403 + default: &402 value: id: 1 key_prefix: TICKET- @@ -65926,9 +65958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: + - *340 - *341 - - *342 - - &404 + - &403 name: autolink_id description: The unique identifier of the autolink. in: path @@ -65940,9 +65972,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *401 examples: - default: *403 + default: *402 '404': *6 x-github: githubCloudOnly: false @@ -65962,9 +65994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: + - *340 - *341 - - *342 - - *404 + - *403 responses: '204': description: Response @@ -65988,8 +66020,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: + - *340 - *341 - - *342 responses: '200': description: Response if Dependabot is enabled @@ -66039,8 +66071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -66061,8 +66093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -66082,8 +66114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: + - *340 - *341 - - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -66121,7 +66153,7 @@ paths: - url protected: type: boolean - protection: &406 + protection: &405 title: Branch Protection description: Branch Protection type: object @@ -66164,7 +66196,7 @@ paths: required: - contexts - checks - enforce_admins: &409 + enforce_admins: &408 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -66181,7 +66213,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &411 + required_pull_request_reviews: &410 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -66203,7 +66235,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *201 + items: *200 apps: description: The list of apps with review dismissal access. @@ -66235,7 +66267,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *201 + items: *200 apps: description: The list of apps allowed to bypass pull request requirements. @@ -66265,7 +66297,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &408 + restrictions: &407 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -66328,7 +66360,7 @@ paths: type: string teams: type: array - items: *201 + items: *200 apps: type: array items: @@ -66558,9 +66590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: + - *340 - *341 - - *342 - - &407 + - &406 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). @@ -66574,14 +66606,14 @@ paths: description: Response content: application/json: - schema: &417 + schema: &416 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &471 + commit: &470 title: Commit description: Commit type: object @@ -66620,7 +66652,7 @@ paths: author: anyOf: - type: 'null' - - &405 + - &404 title: Git User description: Metaproperties for Git author/committer information. @@ -66642,7 +66674,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 message: type: string examples: @@ -66666,7 +66698,7 @@ paths: required: - sha - url - verification: &522 + verification: &521 title: Verification type: object properties: @@ -66702,14 +66734,14 @@ paths: author: oneOf: - *4 - - *165 + - *164 type: - 'null' - object committer: oneOf: - *4 - - *165 + - *164 type: - 'null' - object @@ -66746,7 +66778,7 @@ paths: type: integer files: type: array - items: &482 + items: &481 title: Diff Entry description: Diff Entry type: object @@ -66842,7 +66874,7 @@ paths: - self protected: type: boolean - protection: *406 + protection: *405 protection_url: type: string format: uri @@ -66951,7 +66983,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *345 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -66973,15 +67005,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *406 + schema: *405 examples: default: value: @@ -67175,9 +67207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -67437,7 +67469,7 @@ paths: url: type: string format: uri - required_status_checks: &414 + required_status_checks: &413 title: Status Check Policy description: Status Check Policy type: object @@ -67518,7 +67550,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -67536,7 +67568,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -67596,7 +67628,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *408 + restrictions: *407 required_conversation_resolution: type: object properties: @@ -67708,9 +67740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67735,17 +67767,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &410 + default: &409 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -67767,17 +67799,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *410 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67796,9 +67828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67823,17 +67855,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: &412 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -67929,9 +67961,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68029,9 +68061,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: *412 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -68052,9 +68084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68081,17 +68113,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &413 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -68114,17 +68146,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *413 + default: *412 '404': *6 x-github: githubCloudOnly: false @@ -68144,9 +68176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68171,17 +68203,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: &415 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -68207,9 +68239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68261,9 +68293,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: *415 + default: *414 '404': *6 '422': *15 x-github: @@ -68285,9 +68317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68311,9 +68343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68347,9 +68379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68416,9 +68448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68482,9 +68514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -68550,15 +68582,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *408 + schema: *407 examples: default: value: @@ -68649,9 +68681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68674,9 +68706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68686,7 +68718,7 @@ paths: type: array items: *5 examples: - default: &416 + default: &415 value: - id: 1 slug: octoapp @@ -68743,9 +68775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68779,7 +68811,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68800,9 +68832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68836,7 +68868,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68857,9 +68889,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68893,7 +68925,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68915,9 +68947,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68925,9 +68957,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '404': *6 x-github: githubCloudOnly: false @@ -68947,9 +68979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68985,9 +69017,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69008,9 +69040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -69046,9 +69078,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69069,9 +69101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -69106,9 +69138,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69130,9 +69162,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -69166,9 +69198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69226,9 +69258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69286,9 +69318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69348,9 +69380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69372,7 +69404,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *416 examples: default: value: @@ -69488,8 +69520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -69768,7 +69800,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &417 title: CheckRun description: A check performed on the code of a given code change type: object @@ -69904,7 +69936,7 @@ paths: check. type: array items: *85 - deployment: &732 + deployment: &731 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -70191,9 +70223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: + - *340 - *341 - - *342 - - &419 + - &418 name: check_run_id description: The unique identifier of the check run. in: path @@ -70205,9 +70237,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: &420 + default: &419 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -70307,9 +70339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 requestBody: required: true content: @@ -70549,9 +70581,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: *420 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70571,9 +70603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: + - *340 - *341 - - *342 - - *419 + - *418 - *17 - *19 responses: @@ -70683,15 +70715,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -70729,8 +70761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -70752,7 +70784,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &422 + schema: &421 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -70839,7 +70871,7 @@ paths: anyOf: - type: 'null' - *5 - repository: *156 + repository: *155 created_at: type: - string @@ -70850,7 +70882,7 @@ paths: - string - 'null' format: date-time - head_commit: *421 + head_commit: *420 latest_check_runs_count: type: integer check_runs_url: @@ -70878,7 +70910,7 @@ paths: - check_runs_url - pull_requests examples: - default: &423 + default: &422 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -71169,9 +71201,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71190,8 +71222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -71252,7 +71284,7 @@ paths: required: - app_id - setting - repository: *156 + repository: *155 examples: default: value: @@ -71500,9 +71532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: + - *340 - *341 - - *342 - - &424 + - &423 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -71514,9 +71546,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71539,17 +71571,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 - - &477 + - *423 + - &476 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &478 + - &477 name: status description: Returns check runs with the specified `status`. in: query @@ -71588,9 +71620,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: &479 + default: &478 value: total_count: 1 check_runs: @@ -71692,15 +71724,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 + - *423 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -71723,8 +71755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -71822,8 +71854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -71886,7 +71918,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -71953,21 +71985,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - &443 + - &442 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: *427 - - &444 + schema: *426 + - &443 name: pr description: The number of the pull request for the results you want to list. in: query @@ -71992,13 +72024,13 @@ paths: be returned. in: query required: false - schema: *428 + schema: *427 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *429 + schema: *428 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -72017,24 +72049,24 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 - rule: *433 - tool: *434 - most_recent_instance: *435 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 + rule: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -72157,7 +72189,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &436 + '403': &435 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -72184,9 +72216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - &437 + - &436 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -72194,30 +72226,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: &438 + schema: &437 type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 rule: type: object properties: @@ -72279,8 +72311,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *434 - most_recent_instance: *435 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -72376,7 +72408,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72396,9 +72428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -72413,8 +72445,8 @@ paths: enum: - open - dismissed - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_reason: *430 + dismissed_comment: *431 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -72442,7 +72474,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *437 examples: default: value: @@ -72518,7 +72550,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &442 + '403': &441 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -72545,15 +72577,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: Response content: application/json: - schema: &439 + schema: &438 type: object properties: status: @@ -72580,13 +72612,13 @@ paths: - description - started_at examples: - default: &440 + default: &439 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &441 + '400': &440 description: Bad Request content: application/json: @@ -72597,7 +72629,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72622,29 +72654,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: OK content: application/json: - schema: *439 + schema: *438 examples: - default: *440 + default: *439 '202': description: Accepted content: application/json: - schema: *439 + schema: *438 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *441 + '400': *440 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -72676,9 +72708,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: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: false content: @@ -72724,8 +72756,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *441 - '403': *442 + '400': *440 + '403': *441 '404': *6 '422': description: Unprocessable Entity @@ -72749,13 +72781,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 + - *442 - *443 - - *444 responses: '200': description: Response @@ -72766,10 +72798,10 @@ paths: items: type: object properties: - ref: *427 - analysis_key: *445 - environment: *446 - category: *447 + ref: *426 + analysis_key: *444 + environment: *445 + category: *446 state: type: - string @@ -72786,7 +72818,7 @@ paths: properties: text: type: string - location: *448 + location: *447 html_url: type: string classifications: @@ -72794,7 +72826,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: *449 + items: *448 examples: default: value: @@ -72831,7 +72863,7 @@ paths: end_column: 50 classifications: - source - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72865,25 +72897,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - *444 + - *443 - 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: *427 + schema: *426 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &450 + schema: &449 type: string description: An identifier for the upload. examples: @@ -72905,23 +72937,23 @@ paths: application/json: schema: type: array - items: &451 + items: &450 type: object properties: - ref: *427 - commit_sha: &459 + ref: *426 + commit_sha: &458 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: *445 + analysis_key: *444 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *447 + category: *446 error: type: string examples: @@ -72946,8 +72978,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *450 - tool: *434 + sarif_id: *449 + tool: *433 deletable: type: boolean warning: @@ -73009,7 +73041,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73045,8 +73077,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73059,7 +73091,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *450 examples: response: summary: application/json response @@ -73113,7 +73145,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *436 + '403': *435 '404': *6 '422': description: Response if analysis could not be processed @@ -73200,8 +73232,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73257,7 +73289,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': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -73279,8 +73311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -73288,7 +73320,7 @@ paths: application/json: schema: type: array - items: &452 + items: &451 title: CodeQL Database description: A CodeQL database. type: object @@ -73400,7 +73432,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73429,8 +73461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -73442,7 +73474,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *451 examples: default: value: @@ -73474,9 +73506,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': &486 + '302': &485 description: Found - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73498,8 +73530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -73509,7 +73541,7 @@ paths: responses: '204': description: Response - '403': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -73537,8 +73569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -73547,7 +73579,7 @@ paths: type: object additionalProperties: false properties: - language: &453 + language: &452 type: string description: The language targeted by the CodeQL query enum: @@ -73627,7 +73659,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &457 + schema: &456 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -73637,7 +73669,7 @@ paths: description: The ID of the variant analysis. controller_repo: *65 actor: *4 - query_language: *453 + query_language: *452 query_pack_url: type: string description: The download url for the query pack. @@ -73685,7 +73717,7 @@ paths: items: type: object properties: - repository: &454 + repository: &453 title: Repository Identifier description: Repository Identifier type: object @@ -73727,7 +73759,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &458 + analysis_status: &457 type: string description: The new status of the CodeQL variant analysis repository task. @@ -73759,7 +73791,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &455 + access_mismatch_repos: &454 type: object properties: repository_count: @@ -73774,7 +73806,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: *454 + items: *453 required: - repository_count - repositories @@ -73797,8 +73829,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *455 - over_limit_repos: *455 + no_codeql_db_repos: *454 + over_limit_repos: *454 required: - access_mismatch_repos - not_found_repos @@ -73814,7 +73846,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &456 + value: &455 summary: Default response value: id: 1 @@ -73960,10 +73992,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *456 + value: *455 repository_lists: summary: Response for a successful variant analysis submission - value: *456 + value: *455 '404': *6 '422': description: Unable to process variant analysis submission @@ -73991,8 +74023,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: + - *340 - *341 - - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -74004,9 +74036,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *456 examples: - default: *456 + default: *455 '404': *6 '503': *114 x-github: @@ -74029,7 +74061,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: - - *341 + - *340 - name: repo in: path description: The name of the controller repository. @@ -74064,7 +74096,7 @@ paths: type: object properties: repository: *65 - analysis_status: *458 + analysis_status: *457 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -74189,8 +74221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -74283,7 +74315,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -74304,8 +74336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -74374,7 +74406,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -74399,7 +74431,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *442 + '403': *441 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -74470,8 +74502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -74479,7 +74511,7 @@ paths: schema: type: object properties: - commit_sha: *459 + commit_sha: *458 ref: type: string description: |- @@ -74539,7 +74571,7 @@ paths: schema: type: object properties: - id: *450 + id: *449 url: type: string description: The REST API URL for checking the status of the upload. @@ -74553,7 +74585,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': *442 + '403': *441 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -74576,8 +74608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: + - *340 - *341 - - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -74625,7 +74657,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': *436 + '403': *435 '404': description: Not Found if the sarif id does not match any upload '503': *114 @@ -74650,8 +74682,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -74732,8 +74764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: + - *340 - *341 - - *342 - 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 @@ -74861,8 +74893,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -74878,7 +74910,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: default: value: @@ -75176,8 +75208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -75241,17 +75273,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '400': *14 '401': *23 '403': *27 @@ -75280,8 +75312,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -75345,8 +75377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: + - *340 - *341 - - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -75383,9 +75415,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: &676 + default: &675 value: total_count: 2 machines: @@ -75425,8 +75457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: + - *340 - *341 - - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -75513,8 +75545,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: + - *340 - *341 - - *342 - 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 @@ -75583,8 +75615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -75602,7 +75634,7 @@ paths: type: integer secrets: type: array - items: &465 + items: &464 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -75623,7 +75655,7 @@ paths: - created_at - updated_at examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -75646,16 +75678,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *463 + schema: *462 examples: - default: *464 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -75675,17 +75707,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *465 + schema: *464 examples: - default: *466 + default: *465 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75705,9 +75737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -75735,7 +75767,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -75759,9 +75791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -75789,8 +75821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: + - *340 - *341 - - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -75828,7 +75860,7 @@ paths: application/json: schema: type: array - items: &467 + items: &466 title: Collaborator description: Collaborator type: object @@ -76021,8 +76053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -76069,8 +76101,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 requestBody: required: false @@ -76097,7 +76129,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &535 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -76109,7 +76141,7 @@ paths: format: int64 examples: - 42 - repository: *156 + repository: *155 invitee: anyOf: - type: 'null' @@ -76285,7 +76317,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *125 + schema: *124 '403': *27 x-github: triggersNotification: true @@ -76325,8 +76357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -76358,8 +76390,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: + - *340 - *341 - - *342 - *70 responses: '200': @@ -76380,7 +76412,7 @@ paths: user: anyOf: - type: 'null' - - *467 + - *466 required: - permission - role_name @@ -76434,8 +76466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -76445,7 +76477,7 @@ paths: application/json: schema: type: array - items: &468 + items: &467 title: Commit Comment description: Commit Comment type: object @@ -76503,7 +76535,7 @@ paths: - created_at - updated_at examples: - default: &473 + default: &472 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76562,17 +76594,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: &474 + default: &473 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76629,8 +76661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -76653,7 +76685,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: default: value: @@ -76704,8 +76736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -76727,8 +76759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76755,7 +76787,7 @@ paths: application/json: schema: type: array - items: &469 + items: &468 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -76799,7 +76831,7 @@ paths: - content - created_at examples: - default: &538 + default: &537 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76844,8 +76876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -76878,9 +76910,9 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: &470 + default: &469 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76909,9 +76941,9 @@ paths: description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -76933,10 +76965,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - &539 + - &538 name: reaction_id description: The unique identifier of the reaction. in: path @@ -76991,8 +77023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: + - *340 - *341 - - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -77048,9 +77080,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: &586 + default: &585 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77144,9 +77176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: + - *340 - *341 - - *342 - - &472 + - &471 name: commit_sha description: The SHA of the commit. in: path @@ -77218,9 +77250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -77230,9 +77262,9 @@ paths: application/json: schema: type: array - items: *468 + items: *467 examples: - default: *473 + default: *472 headers: Link: *66 x-github: @@ -77260,9 +77292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: + - *340 - *341 - - *342 - - *472 + - *471 requestBody: required: true content: @@ -77297,9 +77329,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: *474 + default: *473 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77327,9 +77359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -77339,9 +77371,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: &578 + default: &577 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -77878,11 +77910,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: + - *340 - *341 - - *342 - *19 - *17 - - &476 + - &475 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)" @@ -77897,9 +77929,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *470 examples: - default: &566 + default: &565 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77987,7 +78019,7 @@ paths: schema: type: string examples: - default: &483 + default: &482 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -78000,7 +78032,7 @@ paths: schema: type: string examples: - default: &484 + default: &483 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -78053,11 +78085,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: + - *340 - *341 - - *342 + - *475 - *476 - *477 - - *478 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -78091,9 +78123,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: *479 + default: *478 headers: Link: *66 x-github: @@ -78118,9 +78150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -78128,7 +78160,7 @@ paths: schema: type: integer example: 1 - - *477 + - *476 - *17 - *19 responses: @@ -78146,7 +78178,7 @@ paths: type: integer check_suites: type: array - items: *422 + items: *421 examples: default: value: @@ -78346,9 +78378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -78419,7 +78451,7 @@ paths: type: string total_count: type: integer - repository: *156 + repository: *155 commit_url: type: string format: uri @@ -78550,9 +78582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -78562,7 +78594,7 @@ paths: application/json: schema: type: array - items: &656 + items: &655 title: Status description: The status of a commit. type: object @@ -78643,7 +78675,7 @@ paths: site_admin: false headers: Link: *66 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78671,8 +78703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -78705,11 +78737,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *480 + - *479 code_of_conduct_file: anyOf: - type: 'null' - - &481 + - &480 title: Community Health File type: object properties: @@ -78729,19 +78761,19 @@ paths: contributing: anyOf: - type: 'null' - - *481 + - *480 readme: anyOf: - type: 'null' - - *481 + - *480 issue_template: anyOf: - type: 'null' - - *481 + - *480 pull_request_template: anyOf: - type: 'null' - - *481 + - *480 required: - code_of_conduct - code_of_conduct_file @@ -78870,8 +78902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: + - *340 - *341 - - *342 - *19 - *17 - name: basehead @@ -78919,8 +78951,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *471 - merge_base_commit: *471 + base_commit: *470 + merge_base_commit: *470 status: type: string enum: @@ -78944,10 +78976,10 @@ paths: - 6 commits: type: array - items: *471 + items: *470 files: type: array - items: *482 + items: *481 required: - url - html_url @@ -79193,12 +79225,12 @@ paths: schema: type: string examples: - default: *483 + default: *482 application/vnd.github.patch: schema: type: string examples: - default: *484 + default: *483 '404': *6 '500': *53 '503': *114 @@ -79243,8 +79275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -79414,7 +79446,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &485 + response-if-content-is-a-file-github-object: &484 summary: Response if content is a file value: type: file @@ -79551,7 +79583,7 @@ paths: - size - type - url - - &591 + - &590 title: Content File description: Content File type: object @@ -79769,7 +79801,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *485 + response-if-content-is-a-file: *484 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -79838,7 +79870,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *486 + '302': *485 '304': *35 x-github: githubCloudOnly: false @@ -79861,8 +79893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -79957,7 +79989,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &486 title: File Commit description: File Commit type: object @@ -80113,7 +80145,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: example-for-creating-a-file: value: @@ -80167,7 +80199,7 @@ paths: schema: oneOf: - *3 - - &517 + - &516 description: Repository rule violation was detected type: object properties: @@ -80188,7 +80220,7 @@ paths: items: type: object properties: - placeholder_id: &648 + placeholder_id: &647 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -80220,8 +80252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -80282,7 +80314,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: default: value: @@ -80337,8 +80369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: + - *340 - *341 - - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -80468,8 +80500,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -80602,24 +80634,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *202 - *203 - *204 - *205 - *206 - - *207 - 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 + - *207 + - *487 - *208 - - *488 - *209 - *210 - - *211 - *60 - *45 - *46 @@ -80631,11 +80663,11 @@ paths: application/json: schema: type: array - items: &492 + items: &491 type: object description: A Dependabot alert. properties: - number: *181 + number: *180 state: type: string description: The state of the Dependabot alert. @@ -80682,13 +80714,13 @@ paths: - transitive - inconclusive - - security_advisory: *489 + security_advisory: *488 security_vulnerability: *64 - url: *184 - html_url: *185 - created_at: *182 - updated_at: *183 - dismissed_at: *187 + url: *183 + html_url: *184 + created_at: *181 + updated_at: *182 + dismissed_at: *186 dismissed_by: anyOf: - type: 'null' @@ -80712,9 +80744,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *186 - auto_dismissed_at: *490 - dismissal_request: *491 + fixed_at: *185 + auto_dismissed_at: *489 + dismissal_request: *490 assignees: type: array description: The users assigned to this alert. @@ -80969,9 +81001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - &493 + - &492 name: alert_number in: path description: |- @@ -80980,13 +81012,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -81118,9 +81150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - *493 + - *492 requestBody: required: true content: @@ -81176,7 +81208,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -81306,8 +81338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -81325,7 +81357,7 @@ paths: type: integer secrets: type: array - items: &496 + items: &495 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -81379,16 +81411,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *494 + schema: *493 examples: - default: *495 + default: *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81408,15 +81440,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *496 + schema: *495 examples: default: value: @@ -81442,9 +81474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -81472,7 +81504,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -81496,9 +81528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -81520,8 +81552,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: + - *340 - *341 - - *342 - 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 @@ -81698,8 +81730,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -81958,8 +81990,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: + - *340 - *341 - - *342 - name: sbom_uuid in: path required: true @@ -81970,7 +82002,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *497 + Location: *496 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -81991,8 +82023,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: + - *340 - *341 - - *342 responses: '201': description: Response @@ -82030,8 +82062,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -82114,7 +82146,7 @@ paths: - version - url additionalProperties: false - metadata: &498 + metadata: &497 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -82153,7 +82185,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *498 + metadata: *497 resolved: type: object description: A collection of resolved package dependencies. @@ -82167,7 +82199,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *498 + metadata: *497 relationship: type: string description: A notation of whether a dependency is requested @@ -82300,8 +82332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: + - *340 - *341 - - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -82342,9 +82374,9 @@ paths: application/json: schema: type: array - items: *499 + items: *498 examples: - default: *500 + default: *499 headers: Link: *66 x-github: @@ -82410,8 +82442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -82493,7 +82525,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: simple-example: summary: Simple example @@ -82566,9 +82598,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: + - *340 - *341 - - *342 - - &501 + - &500 name: deployment_id description: deployment_id parameter in: path @@ -82580,7 +82612,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: default: value: @@ -82645,9 +82677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: + - *340 - *341 - - *342 - - *501 + - *500 responses: '204': description: Response @@ -82669,9 +82701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: + - *340 - *341 - - *342 - - *501 + - *500 - *17 - *19 responses: @@ -82681,7 +82713,7 @@ paths: application/json: schema: type: array - items: &502 + items: &501 title: Deployment Status description: The status of a deployment. type: object @@ -82845,9 +82877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 requestBody: required: true content: @@ -82922,9 +82954,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: &503 + default: &502 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -82980,9 +83012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 - name: status_id in: path required: true @@ -82993,9 +83025,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: *503 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -83020,8 +83052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -83078,8 +83110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -83097,7 +83129,7 @@ paths: - 5 environments: type: array - items: &505 + items: &504 title: Environment description: Details of a deployment environment type: object @@ -83159,7 +83191,7 @@ paths: type: string examples: - wait_timer - wait_timer: &507 + wait_timer: &506 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -83201,11 +83233,11 @@ paths: items: type: object properties: - type: *504 + type: *503 reviewer: anyOf: - *4 - - *201 + - *200 required: - id - node_id @@ -83228,7 +83260,7 @@ paths: - id - node_id - type - deployment_branch_policy: &508 + deployment_branch_policy: &507 type: - object - 'null' @@ -83345,9 +83377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: + - *340 - *341 - - *342 - - &506 + - &505 name: environment_name in: path required: true @@ -83360,9 +83392,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: &509 + default: &508 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -83446,9 +83478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: false content: @@ -83458,7 +83490,7 @@ paths: - object - 'null' properties: - wait_timer: *507 + wait_timer: *506 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -83477,14 +83509,14 @@ paths: items: type: object properties: - type: *504 + type: *503 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *508 + deployment_branch_policy: *507 additionalProperties: false examples: default: @@ -83504,9 +83536,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: *509 + default: *508 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -83530,9 +83562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '204': description: Default response @@ -83557,9 +83589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -83578,7 +83610,7 @@ paths: - 2 branch_policies: type: array - items: &510 + items: &509 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -83639,9 +83671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -83689,9 +83721,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - example-wildcard: &511 + example-wildcard: &510 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -83733,10 +83765,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - &512 + - *505 + - &511 name: branch_policy_id in: path required: true @@ -83748,9 +83780,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83769,10 +83801,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 requestBody: required: true content: @@ -83801,9 +83833,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83822,10 +83854,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 responses: '204': description: Response @@ -83850,9 +83882,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 + - *340 responses: '200': description: List of deployment protection rules @@ -83869,7 +83901,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &513 + items: &512 title: Deployment protection rule description: Deployment protection rule type: object @@ -83891,7 +83923,7 @@ paths: for the environment. examples: - true - app: &514 + app: &513 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -83994,9 +84026,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: - - *506 - - *342 + - *505 - *341 + - *340 requestBody: content: application/json: @@ -84017,9 +84049,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *513 + schema: *512 examples: - default: &515 + default: &514 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -84054,9 +84086,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: - - *506 - - *342 + - *505 - *341 + - *340 - *19 - *17 responses: @@ -84076,7 +84108,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *514 + items: *513 examples: default: value: @@ -84111,10 +84143,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: + - *340 - *341 - - *342 - - *506 - - &516 + - *505 + - &515 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -84126,9 +84158,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *512 examples: - default: *515 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84149,10 +84181,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 - - *516 + - *340 + - *515 responses: '204': description: Response @@ -84178,9 +84210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -84198,9 +84230,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -84225,17 +84257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84257,18 +84289,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84290,10 +84322,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 requestBody: required: true content: @@ -84324,7 +84356,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -84350,10 +84382,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '204': description: Default response @@ -84378,10 +84410,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: + - *340 - *341 - - *342 - - *506 - - *173 + - *505 + - *172 - *19 responses: '200': @@ -84398,9 +84430,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -84423,9 +84455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -84452,7 +84484,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -84477,18 +84509,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 - - *167 + - *505 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84509,10 +84541,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 requestBody: required: true content: @@ -84554,10 +84586,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 responses: '204': description: Response @@ -84579,8 +84611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -84648,8 +84680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: + - *340 - *341 - - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -84671,7 +84703,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -84808,8 +84840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -84842,9 +84874,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -84865,8 +84897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -84925,8 +84957,8 @@ paths: application/json: schema: oneOf: - - *125 - - *517 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84951,8 +84983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: + - *340 - *341 - - *342 - name: file_sha in: path required: true @@ -85052,8 +85084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85162,7 +85194,7 @@ paths: description: Response content: application/json: - schema: &518 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -85389,15 +85421,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: + - *340 - *341 - - *342 - - *472 + - *471 responses: '200': description: Response content: application/json: - schema: *518 + schema: *517 examples: default: value: @@ -85453,9 +85485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: + - *340 - *341 - - *342 - - &519 + - &518 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. @@ -85472,7 +85504,7 @@ paths: application/json: schema: type: array - items: &520 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -85548,17 +85580,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '200': description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: &521 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -85587,8 +85619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85617,9 +85649,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -85645,9 +85677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 requestBody: required: true content: @@ -85676,9 +85708,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 '422': *15 '409': *52 x-github: @@ -85696,9 +85728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '204': description: Response @@ -85753,8 +85785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85821,7 +85853,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -85877,7 +85909,7 @@ paths: - sha - type - url - verification: *522 + verification: *521 required: - sha - url @@ -85887,7 +85919,7 @@ paths: - tag - message examples: - default: &524 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -85960,8 +85992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: + - *340 - *341 - - *342 - name: tag_sha in: path required: true @@ -85972,9 +86004,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *522 examples: - default: *524 + default: *523 '404': *6 '409': *52 x-github: @@ -85998,8 +86030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -86073,7 +86105,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -86175,8 +86207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: + - *340 - *341 - - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -86199,7 +86231,7 @@ paths: description: Response content: application/json: - schema: *525 + schema: *524 examples: default-response: summary: Default response @@ -86257,8 +86289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -86302,8 +86334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -86313,7 +86345,7 @@ paths: application/json: schema: type: array - items: &526 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -86376,7 +86408,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &763 + last_response: &762 title: Hook Response type: object properties: @@ -86453,8 +86485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -86507,9 +86539,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: &527 + default: &526 value: type: Repository id: 12345678 @@ -86557,17 +86589,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -86587,9 +86619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: true content: @@ -86634,9 +86666,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '422': *15 '404': *6 x-github: @@ -86657,9 +86689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86683,9 +86715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response @@ -86712,9 +86744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: false content: @@ -86758,12 +86790,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -86771,9 +86803,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -86792,18 +86824,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -86822,9 +86854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '202': *37 @@ -86847,9 +86879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86874,9 +86906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86899,8 +86931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response if immutable releases are enabled @@ -86948,8 +86980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -86969,8 +87001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -87027,14 +87059,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &528 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -87141,7 +87173,7 @@ paths: - html_url - authors_url examples: - default: &531 + default: &530 value: vcs: subversion use_lfs: true @@ -87157,7 +87189,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': &529 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -87186,8 +87218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -87235,7 +87267,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: default: value: @@ -87260,7 +87292,7 @@ paths: type: string '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87288,8 +87320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -87341,7 +87373,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: example-1: summary: Example 1 @@ -87389,7 +87421,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87412,12 +87444,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: + - *340 - *341 - - *342 responses: '204': description: Response - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87443,9 +87475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: + - *340 - *341 - - *342 - - &697 + - &696 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87459,7 +87491,7 @@ paths: application/json: schema: type: array - items: &530 + items: &529 title: Porter Author description: Porter Author type: object @@ -87513,7 +87545,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87538,8 +87570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: + - *340 - *341 - - *342 - name: author_id in: path required: true @@ -87569,7 +87601,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *529 examples: default: value: @@ -87582,7 +87614,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87606,8 +87638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87648,7 +87680,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87676,8 +87708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -87704,11 +87736,11 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: - default: *531 + default: *530 '422': *15 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87731,8 +87763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87740,8 +87772,8 @@ paths: application/json: schema: *20 examples: - default: *532 - '301': *345 + default: *531 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -87761,8 +87793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87770,12 +87802,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: &534 + default: &533 value: limit: collaborators_only origin: repository @@ -87800,13 +87832,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *533 + schema: *532 examples: default: summary: Example request body @@ -87818,9 +87850,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *534 + default: *533 '409': description: Response x-github: @@ -87842,8 +87874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -87866,8 +87898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -87877,9 +87909,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: &690 + default: &689 value: - id: 1 repository: @@ -88010,9 +88042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 requestBody: required: false content: @@ -88041,7 +88073,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *534 examples: default: value: @@ -88172,9 +88204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 responses: '204': description: Response @@ -88205,8 +88237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: + - *340 - *341 - - *342 - 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 @@ -88268,7 +88300,7 @@ paths: required: false schema: type: string - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -88293,7 +88325,7 @@ paths: type: array items: *82 examples: - default: &544 + default: &543 value: - id: 1 node_id: MDU6SXNzdWUx @@ -88442,7 +88474,7 @@ paths: state_reason: completed headers: Link: *66 - '301': *345 + '301': *344 '422': *15 '404': *6 x-github: @@ -88471,8 +88503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -88585,7 +88617,7 @@ paths: application/json: schema: *82 examples: - default: &541 + default: &540 value: id: 1 node_id: MDU6SXNzdWUx @@ -88742,7 +88774,7 @@ paths: '422': *15 '503': *114 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -88770,8 +88802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *104 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -88794,7 +88826,7 @@ paths: type: array items: *83 examples: - default: &543 + default: &542 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88852,8 +88884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -88862,7 +88894,7 @@ paths: application/json: schema: *83 examples: - default: &537 + default: &536 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88917,8 +88949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -88943,7 +88975,7 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -88961,8 +88993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -88991,8 +89023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -89055,7 +89087,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -89072,8 +89104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -89081,7 +89113,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '503': *114 x-github: githubCloudOnly: false @@ -89099,8 +89131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -89127,9 +89159,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -89150,8 +89182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -89184,16 +89216,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -89215,10 +89247,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -89238,8 +89270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -89249,7 +89281,7 @@ paths: application/json: schema: type: array - items: &540 + items: &539 title: Issue Event description: Issue Event type: object @@ -89329,7 +89361,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *201 + requested_team: *200 dismissed_review: title: Issue Event Dismissed Review type: object @@ -89589,8 +89621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: + - *340 - *341 - - *342 - name: event_id in: path required: true @@ -89601,7 +89633,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *539 examples: default: value: @@ -89794,7 +89826,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *536 + '410': *535 '403': *27 x-github: githubCloudOnly: false @@ -89828,9 +89860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: + - *340 - *341 - - *342 - - &542 + - &541 name: issue_number description: The number that identifies the issue. in: path @@ -89846,7 +89878,7 @@ paths: examples: default: summary: Issue - value: *541 + value: *540 pinned_comment: summary: Issue with pinned comment value: @@ -90045,9 +90077,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 '304': *35 x-github: githubCloudOnly: false @@ -90072,9 +90104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -90215,13 +90247,13 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '422': *15 '503': *114 '403': *27 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90239,9 +90271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -90269,7 +90301,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90285,9 +90317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: content: application/json: @@ -90314,7 +90346,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90336,9 +90368,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: + - *340 - *341 - - *342 - - *542 + - *541 - name: assignee in: path required: true @@ -90378,9 +90410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *87 - *17 - *19 @@ -90393,11 +90425,11 @@ paths: type: array items: *83 examples: - default: *543 + default: *542 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90426,9 +90458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -90452,14 +90484,14 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -90487,9 +90519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90501,12 +90533,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90534,9 +90566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -90560,15 +90592,15 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *345 + '301': *344 '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -90599,9 +90631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -90615,13 +90647,13 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -90647,9 +90679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90661,12 +90693,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90683,9 +90715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90699,7 +90731,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &548 + - &547 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -90748,7 +90780,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &548 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -90876,7 +90908,7 @@ paths: - performed_via_github_app - assignee - assigner - - &550 + - &549 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -90922,7 +90954,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &550 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -90968,7 +91000,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &551 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91017,7 +91049,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &552 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91046,7 +91078,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -91059,7 +91091,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &553 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91088,7 +91120,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -91101,7 +91133,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &554 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91157,7 +91189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &555 title: Locked Issue Event description: Locked Issue Event type: object @@ -91202,7 +91234,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &556 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -91263,7 +91295,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &557 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -91324,7 +91356,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &558 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -91385,7 +91417,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &559 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -91478,7 +91510,7 @@ paths: color: red headers: Link: *66 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91495,9 +91527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91507,9 +91539,9 @@ paths: application/json: schema: type: array - items: *545 + items: *544 examples: - default: &546 + default: &545 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -91533,9 +91565,9 @@ paths: value: '2025-12-25' headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91564,9 +91596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91632,9 +91664,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -91670,9 +91702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91739,9 +91771,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -91772,10 +91804,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: + - *340 - *341 - - *342 - - *542 - - *245 + - *541 + - *244 responses: '204': description: Issue field value deleted successfully @@ -91800,9 +91832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91814,7 +91846,7 @@ paths: type: array items: *81 examples: - default: &547 + default: &546 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91832,9 +91864,9 @@ paths: default: false headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91850,9 +91882,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -91897,10 +91929,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -91917,9 +91949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -91981,10 +92013,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -92001,15 +92033,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92028,9 +92060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: name in: path required: true @@ -92054,9 +92086,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92076,9 +92108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -92107,7 +92139,7 @@ paths: '204': description: Response '403': *27 - '410': *536 + '410': *535 '404': *6 '422': *15 x-github: @@ -92125,9 +92157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response @@ -92157,9 +92189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '200': description: Response @@ -92167,10 +92199,10 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92187,9 +92219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - 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. @@ -92215,13 +92247,13 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92239,9 +92271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92273,16 +92305,16 @@ paths: description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -92304,10 +92336,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: + - *340 - *341 - - *342 - - *542 - - *539 + - *541 + - *538 responses: '204': description: Response @@ -92336,9 +92368,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92362,7 +92394,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -92395,9 +92427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -92409,11 +92441,11 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92441,9 +92473,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92472,14 +92504,14 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -92499,9 +92531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92534,7 +92566,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '403': *27 '404': *6 '422': *7 @@ -92556,9 +92588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -92573,6 +92605,7 @@ paths: description: Timeline Event type: object anyOf: + - *547 - *548 - *549 - *550 @@ -92585,7 +92618,6 @@ paths: - *557 - *558 - *559 - - *560 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -92642,7 +92674,7 @@ paths: pin: anyOf: - type: 'null' - - *561 + - *560 required: - event - actor @@ -92918,7 +92950,7 @@ paths: type: string comments: type: array - items: &580 + items: &579 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93159,7 +93191,7 @@ paths: type: string comments: type: array - items: *468 + items: *467 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -93434,7 +93466,7 @@ paths: headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93451,8 +93483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -93462,7 +93494,7 @@ paths: application/json: schema: type: array - items: &562 + items: &561 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -93530,8 +93562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93567,9 +93599,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: &563 + default: &562 value: id: 1 key: ssh-rsa AAA... @@ -93603,9 +93635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: + - *340 - *341 - - *342 - - &564 + - &563 name: key_id description: The unique identifier of the key. in: path @@ -93617,9 +93649,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: *563 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -93637,9 +93669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: + - *340 - *341 - - *342 - - *564 + - *563 responses: '204': description: Response @@ -93659,8 +93691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -93672,7 +93704,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 '404': *6 @@ -93693,8 +93725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93732,7 +93764,7 @@ paths: application/json: schema: *81 examples: - default: &565 + default: &564 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -93764,8 +93796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93778,7 +93810,7 @@ paths: application/json: schema: *81 examples: - default: *565 + default: *564 '404': *6 x-github: githubCloudOnly: false @@ -93795,8 +93827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93861,8 +93893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93888,8 +93920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -93928,9 +93960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: + - *340 - *341 - - *342 - - *443 + - *442 responses: '200': description: Response @@ -94077,8 +94109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94143,8 +94175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94178,9 +94210,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *471 + schema: *470 examples: - default: *566 + default: *565 '204': description: Response when already merged '404': @@ -94205,8 +94237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: + - *340 - *341 - - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94247,7 +94279,7 @@ paths: application/json: schema: type: array - items: *282 + items: *281 examples: default: value: @@ -94303,8 +94335,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94344,9 +94376,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: &567 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -94405,9 +94437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: + - *340 - *341 - - *342 - - &568 + - &567 name: milestone_number description: The number that identifies the milestone. in: path @@ -94419,9 +94451,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 '404': *6 x-github: githubCloudOnly: false @@ -94438,9 +94470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 requestBody: required: false content: @@ -94478,9 +94510,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94496,9 +94528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 responses: '204': description: Response @@ -94519,9 +94551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 - *17 - *19 responses: @@ -94533,7 +94565,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 x-github: @@ -94552,12 +94584,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: + - *340 - *341 - - *342 + - *568 - *569 - - *570 - *87 - - *571 + - *570 - *17 - *19 responses: @@ -94569,7 +94601,7 @@ paths: type: array items: *107 examples: - default: *572 + default: *571 headers: Link: *66 x-github: @@ -94593,8 +94625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -94652,14 +94684,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &573 + schema: &572 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -94803,7 +94835,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &573 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -94844,8 +94876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94900,9 +94932,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *572 examples: - default: *574 + default: *573 '422': *15 '409': *52 x-github: @@ -94925,8 +94957,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95026,8 +95058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -95053,8 +95085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -95064,7 +95096,7 @@ paths: application/json: schema: type: array - items: &575 + items: &574 title: Page Build description: Page Build type: object @@ -95156,8 +95188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: + - *340 - *341 - - *342 responses: '201': description: Response @@ -95204,16 +95236,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: &576 + default: &575 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95261,8 +95293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: + - *340 - *341 - - *342 - name: build_id in: path required: true @@ -95273,9 +95305,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: *576 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95295,8 +95327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95404,9 +95436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - &577 + - &576 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -95464,9 +95496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - *577 + - *576 responses: '204': *59 '404': *6 @@ -95493,8 +95525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -95762,7 +95794,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -95789,8 +95821,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: + - *340 - *341 - - *342 responses: '200': description: Private vulnerability reporting status @@ -95827,8 +95859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -95849,8 +95881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -95872,8 +95904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -95881,7 +95913,7 @@ paths: application/json: schema: type: array - items: *296 + items: *295 examples: default: value: @@ -95912,8 +95944,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95925,7 +95957,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - properties examples: @@ -95975,8 +96007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: + - *340 - *341 - - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96036,9 +96068,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: *578 + default: *577 headers: Link: *66 '304': *35 @@ -96070,8 +96102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -96138,7 +96170,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &581 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -96267,7 +96299,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -96316,7 +96348,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *260 head: type: object properties: @@ -96354,14 +96386,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *282 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -96372,7 +96404,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: *579 + auto_merge: *578 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -96474,7 +96506,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97001,8 +97033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: + - *340 - *341 - - *342 - name: sort in: query required: false @@ -97031,9 +97063,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: &585 + default: &584 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97110,17 +97142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: &581 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97195,8 +97227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -97219,9 +97251,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: *581 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97237,8 +97269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -97260,8 +97292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -97288,9 +97320,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -97311,8 +97343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -97345,16 +97377,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -97376,10 +97408,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -97422,9 +97454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: + - *340 - *341 - - *342 - - &584 + - &583 name: pull_number description: The number that identifies the pull request. in: path @@ -97437,9 +97469,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '304': *35 '404': *6 '406': @@ -97474,9 +97506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -97518,9 +97550,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '422': *15 '403': *27 x-github: @@ -97542,9 +97574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -97605,17 +97637,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -97645,9 +97677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *104 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -97668,9 +97700,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: *585 + default: *584 headers: Link: *66 x-github: @@ -97703,9 +97735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -97811,7 +97843,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: example-for-a-multi-line-comment: value: @@ -97899,9 +97931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *96 requestBody: required: true @@ -97924,7 +97956,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: default: value: @@ -98010,9 +98042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -98022,9 +98054,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: *586 + default: *585 headers: Link: *66 x-github: @@ -98054,9 +98086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -98066,7 +98098,7 @@ paths: application/json: schema: type: array - items: *482 + items: *481 examples: default: value: @@ -98104,9 +98136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '204': description: Response if pull request has been merged @@ -98129,9 +98161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -98243,9 +98275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '200': description: Response @@ -98261,7 +98293,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 required: - users - teams @@ -98320,9 +98352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -98359,7 +98391,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -98895,9 +98927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -98931,7 +98963,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -99436,9 +99468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -99448,7 +99480,7 @@ paths: application/json: schema: type: array - items: &587 + items: &586 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -99604,9 +99636,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -99696,9 +99728,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &589 + default: &588 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -99761,10 +99793,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - &588 + - *583 + - &587 name: review_id description: The unique identifier of the review. in: path @@ -99776,9 +99808,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &590 + default: &589 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -99837,10 +99869,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -99863,7 +99895,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -99925,18 +99957,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 responses: '200': description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *589 + default: *588 '422': *7 '404': *6 x-github: @@ -99963,10 +99995,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 - *17 - *19 responses: @@ -100064,9 +100096,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *282 + html: *282 + pull_request: *282 required: - self - html @@ -100224,10 +100256,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -100256,7 +100288,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -100319,10 +100351,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -100357,9 +100389,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *590 + default: *589 '404': *6 '422': *7 '403': *27 @@ -100381,9 +100413,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -100447,8 +100479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: + - *340 - *341 - - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -100461,9 +100493,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: &592 + default: &591 value: type: file encoding: base64 @@ -100505,8 +100537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: + - *340 - *341 - - *342 - name: dir description: The alternate path to look for a README file in: path @@ -100526,9 +100558,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: *592 + default: *591 '404': *6 '422': *15 x-github: @@ -100550,8 +100582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -100561,7 +100593,7 @@ paths: application/json: schema: type: array - items: *593 + items: *592 examples: default: value: @@ -100655,8 +100687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -100732,9 +100764,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: &597 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -100839,9 +100871,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: + - *340 - *341 - - *342 - - &595 + - &594 name: asset_id description: The unique identifier of the asset. in: path @@ -100853,9 +100885,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: &596 + default: &595 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 @@ -100890,7 +100922,7 @@ paths: type: User site_admin: false '404': *6 - '302': *486 + '302': *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100906,9 +100938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 requestBody: required: false content: @@ -100937,9 +100969,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: *596 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100955,9 +100987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 responses: '204': description: Response @@ -100982,8 +101014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -101069,16 +101101,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -101096,8 +101128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: + - *340 - *341 - - *342 - name: tag description: tag parameter in: path @@ -101110,9 +101142,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -101134,9 +101166,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: + - *340 - *341 - - *342 - - &598 + - &597 name: release_id description: The unique identifier of the release. in: path @@ -101150,9 +101182,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: *593 + schema: *592 examples: - default: *597 + default: *596 '401': description: Unauthorized x-github: @@ -101170,9 +101202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: false content: @@ -101236,9 +101268,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': description: Not Found if the discussion category name is invalid content: @@ -101259,9 +101291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 responses: '204': description: Response @@ -101282,9 +101314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: + - *340 - *341 - - *342 - - *598 + - *597 - *17 - *19 responses: @@ -101294,7 +101326,7 @@ paths: application/json: schema: type: array - items: *594 + items: *593 examples: default: value: @@ -101375,9 +101407,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: + - *340 - *341 - - *342 - - *598 + - *597 - name: name in: query required: true @@ -101403,7 +101435,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *593 examples: response-for-successful-upload: value: @@ -101458,9 +101490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 - 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. @@ -101484,9 +101516,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -101507,9 +101539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: true content: @@ -101539,16 +101571,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -101570,10 +101602,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: + - *340 - *341 - - *342 - - *598 - - *539 + - *597 + - *538 responses: '204': description: Response @@ -101597,9 +101629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 - *17 - *19 responses: @@ -101615,8 +101647,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &599 + - *302 + - &598 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -101635,69 +101667,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. + - allOf: + - *303 + - *598 - allOf: - *304 - - *599 + - *598 - allOf: - *305 - - *599 + - *598 - allOf: - - *306 - *599 + - *598 - allOf: - - *600 - - *599 + - *306 + - *598 - allOf: - *307 - - *599 + - *598 - allOf: - *308 - - *599 + - *598 - allOf: - *309 - - *599 + - *598 - allOf: - *310 - - *599 + - *598 - allOf: - *311 - - *599 + - *598 - allOf: - *312 - - *599 + - *598 - allOf: - *313 - - *599 + - *598 - allOf: - *314 - - *599 + - *598 - allOf: - *315 - - *599 + - *598 - allOf: - - *316 - - *599 + - *320 + - *598 - allOf: - *321 - - *599 + - *598 - allOf: - *322 - - *599 + - *598 - allOf: - - *323 - - *599 + - *316 + - *598 - allOf: - *317 - - *599 + - *598 - allOf: - *318 - - *599 + - *598 - allOf: - *319 - - *599 - - allOf: - - *320 - - *599 + - *598 examples: default: value: @@ -101736,8 +101768,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - *17 - *19 - name: includes_parents @@ -101748,7 +101780,7 @@ paths: schema: type: boolean default: true - - *601 + - *600 responses: '200': description: Response @@ -101756,7 +101788,7 @@ paths: application/json: schema: type: array - items: *324 + items: *323 examples: default: value: @@ -101803,8 +101835,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 requestBody: description: Request body required: true @@ -101824,16 +101856,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *601 required: - name - enforcement @@ -101864,9 +101896,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &613 + default: &612 value: id: 42 name: super cool ruleset @@ -101914,13 +101946,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: + - *340 - *341 - - *342 + - *602 - *603 - *604 - *605 - *606 - - *607 - *17 - *19 responses: @@ -101928,9 +101960,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *607 examples: - default: *609 + default: *608 '404': *6 '500': *53 x-github: @@ -101951,17 +101983,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: + - *340 - *341 - - *342 - - *610 + - *609 responses: '200': description: Response content: application/json: - schema: *611 + schema: *610 examples: - default: *612 + default: *611 '404': *6 '500': *53 x-github: @@ -101989,8 +102021,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102010,9 +102042,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '500': *53 put: @@ -102030,8 +102062,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102056,16 +102088,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *601 examples: default: value: @@ -102093,9 +102125,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '422': *15 '500': *53 @@ -102114,8 +102146,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102138,8 +102170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: + - *340 - *341 - - *342 - *17 - *19 - name: ruleset_id @@ -102155,9 +102187,9 @@ paths: application/json: schema: type: array - items: *327 + items: *326 examples: - default: *614 + default: *613 '404': *6 '500': *53 x-github: @@ -102176,8 +102208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102195,7 +102227,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *614 examples: default: value: @@ -102250,8 +102282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *615 - *616 - *617 - *618 @@ -102259,17 +102292,16 @@ paths: - *620 - *621 - *622 - - *623 - *60 - *19 - *17 + - *623 - *624 - *625 - *626 - *627 - *628 - *629 - - *630 responses: '200': description: Response @@ -102277,24 +102309,24 @@ paths: application/json: schema: type: array - items: &634 + items: &633 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolved_at: type: - string @@ -102400,7 +102432,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *633 + - *632 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -102559,16 +102591,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 - - *629 + - *436 + - *628 responses: '200': description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -102622,9 +102654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -102632,8 +102664,8 @@ paths: schema: type: object properties: - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -102681,7 +102713,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -102780,9 +102812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 responses: @@ -102793,7 +102825,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -102820,6 +102852,7 @@ paths: - commit details: oneOf: + - *634 - *635 - *636 - *637 @@ -102832,7 +102865,6 @@ paths: - *644 - *645 - *646 - - *647 examples: default: value: @@ -102918,8 +102950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -102927,14 +102959,14 @@ paths: schema: type: object properties: - reason: &649 + reason: &648 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *648 + placeholder_id: *647 required: - reason - placeholder_id @@ -102951,7 +102983,7 @@ paths: schema: type: object properties: - reason: *649 + reason: *648 expire_at: type: - string @@ -102998,8 +103030,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: + - *340 - *341 - - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -103014,7 +103046,7 @@ paths: properties: incremental_scans: type: array - items: &650 + items: &649 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103047,15 +103079,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *650 + items: *649 backfill_scans: type: array - items: *650 + items: *649 custom_pattern_backfill_scans: type: array items: allOf: - - *650 + - *649 - type: object properties: pattern_name: @@ -103068,7 +103100,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *650 + items: *649 examples: default: value: @@ -103133,8 +103165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: + - *340 - *341 - - *342 - *60 - name: sort description: The property to sort the results by. @@ -103178,9 +103210,9 @@ paths: application/json: schema: type: array - items: *651 + items: *650 examples: - default: *652 + default: *651 '400': *14 '404': *6 x-github: @@ -103203,8 +103235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -103284,7 +103316,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -103374,9 +103406,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: &654 + default: &653 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -103609,8 +103641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -103723,7 +103755,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: default: value: @@ -103870,17 +103902,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '200': description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 + default: *653 '403': *27 '404': *6 x-github: @@ -103904,9 +103936,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 requestBody: required: true content: @@ -103986,7 +104018,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -104077,17 +104109,17 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 - add_credit: *654 + default: *653 + add_credit: *653 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *125 + schema: *124 examples: invalid_state_transition: value: @@ -104118,9 +104150,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: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': *37 '400': *14 @@ -104147,17 +104179,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -104183,8 +104215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -104280,8 +104312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -104290,7 +104322,7 @@ paths: application/json: schema: type: array - items: &655 + items: &654 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104323,8 +104355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -104402,8 +104434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -104497,8 +104529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: + - *340 - *341 - - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -104652,8 +104684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: + - *340 - *341 - - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -104663,7 +104695,7 @@ paths: application/json: schema: type: array - items: *655 + items: *654 examples: default: value: @@ -104696,8 +104728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: + - *340 - *341 - - *342 - name: sha in: path required: true @@ -104753,7 +104785,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *655 examples: default: value: @@ -104807,8 +104839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -104840,14 +104872,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &657 + schema: &656 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -104920,8 +104952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -104947,7 +104979,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *656 examples: default: value: @@ -104974,8 +105006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -104995,8 +105027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105078,8 +105110,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -105115,8 +105147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105126,9 +105158,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '404': *6 @@ -105148,8 +105180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: + - *340 - *341 - - *342 - *19 - *17 responses: @@ -105157,7 +105189,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &657 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -105169,7 +105201,7 @@ paths: required: - names examples: - default: &659 + default: &658 value: names: - octocat @@ -105192,8 +105224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -105224,9 +105256,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *657 examples: - default: *659 + default: *658 '404': *6 '422': *7 x-github: @@ -105247,9 +105279,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: + - *340 - *341 - - *342 - - &660 + - &659 name: per description: The time frame to display results for. in: query @@ -105280,7 +105312,7 @@ paths: - 128 clones: type: array - items: &661 + items: &660 title: Traffic type: object properties: @@ -105367,8 +105399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -105462,8 +105494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -105526,9 +105558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: + - *340 - *341 - - *342 - - *660 + - *659 responses: '200': description: Response @@ -105549,7 +105581,7 @@ paths: - 3782 views: type: array - items: *661 + items: *660 required: - uniques - count @@ -105626,8 +105658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -105663,7 +105695,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: value: @@ -105901,8 +105933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -105925,8 +105957,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -105948,8 +105980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -105975,8 +106007,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -106068,9 +106100,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106111,7 +106143,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -106303,7 +106335,7 @@ paths: html_url: type: string format: uri - repository: *156 + repository: *155 score: type: number file_size: @@ -106322,7 +106354,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &662 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -106485,7 +106517,7 @@ paths: enum: - author-date - committer-date - - &663 + - &662 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 @@ -106554,7 +106586,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 comment_count: type: integer message: @@ -106573,7 +106605,7 @@ paths: url: type: string format: uri - verification: *522 + verification: *521 required: - author - committer @@ -106588,7 +106620,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 parents: type: array items: @@ -106600,12 +106632,12 @@ paths: type: string sha: type: string - repository: *156 + repository: *155 score: type: number node_id: type: string - text_matches: *662 + text_matches: *661 required: - sha - node_id @@ -106797,7 +106829,7 @@ paths: - interactions - created - updated - - *663 + - *662 - *17 - *19 - name: advanced_search @@ -106911,11 +106943,11 @@ paths: type: - string - 'null' - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: type: string state_reason: @@ -106929,7 +106961,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 comments: type: integer created_at: @@ -106943,7 +106975,7 @@ paths: - string - 'null' format: date-time - text_matches: *662 + text_matches: *661 pull_request: type: object properties: @@ -106992,7 +107024,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *245 performed_via_github_app: anyOf: - type: 'null' @@ -107219,7 +107251,7 @@ paths: enum: - created - updated - - *663 + - *662 - *17 - *19 responses: @@ -107264,7 +107296,7 @@ paths: - 'null' score: type: number - text_matches: *662 + text_matches: *661 required: - id - node_id @@ -107349,7 +107381,7 @@ paths: - forks - help-wanted-issues - updated - - *663 + - *662 - *17 - *19 responses: @@ -107595,7 +107627,7 @@ paths: - admin - pull - push - text_matches: *662 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -107903,7 +107935,7 @@ paths: - string - 'null' format: uri - text_matches: *662 + text_matches: *661 related: type: - array @@ -108096,7 +108128,7 @@ paths: - followers - repositories - joined - - *663 + - *662 - *17 - *19 responses: @@ -108206,7 +108238,7 @@ paths: type: - boolean - 'null' - text_matches: *662 + text_matches: *661 blog: type: - string @@ -108288,7 +108320,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &666 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -108300,9 +108332,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -108329,7 +108361,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *666 + - *665 requestBody: required: true content: @@ -108393,16 +108425,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -108430,7 +108462,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *666 + - *665 responses: '204': description: Response @@ -108459,7 +108491,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -108469,9 +108501,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 x-github: @@ -108497,7 +108529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *666 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -108548,7 +108580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108585,7 +108617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108625,7 +108657,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108662,16 +108694,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '200': description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-user-is-a-team-maintainer: *667 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -108704,7 +108736,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 requestBody: required: false @@ -108730,9 +108762,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: *668 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -108766,7 +108798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108794,7 +108826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -108804,9 +108836,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '404': *6 @@ -108836,15 +108868,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *669 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -108995,9 +109027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 requestBody: required: false content: @@ -109047,9 +109079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '204': description: Response @@ -109074,7 +109106,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -109084,9 +109116,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: *670 + response-if-child-teams-exist: *669 headers: Link: *66 '404': *6 @@ -109119,7 +109151,7 @@ paths: application/json: schema: oneOf: - - &672 + - &671 title: Private User description: Private User type: object @@ -109369,7 +109401,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *671 + - *670 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -109529,7 +109561,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *671 examples: default: value: @@ -109732,9 +109764,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -109873,17 +109905,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -109927,7 +109959,7 @@ paths: type: integer secrets: type: array - items: &673 + items: &672 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109969,7 +110001,7 @@ paths: - visibility - selected_repositories_url examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -110041,13 +110073,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *673 + schema: *672 examples: default: value: @@ -110077,7 +110109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 requestBody: required: true content: @@ -110122,7 +110154,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -110150,7 +110182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '204': description: Response @@ -110175,7 +110207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 responses: '200': description: Response @@ -110191,9 +110223,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *202 + default: *201 '401': *23 '403': *27 '404': *6 @@ -110218,7 +110250,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 requestBody: required: true content: @@ -110272,7 +110304,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -110305,7 +110337,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -110337,15 +110369,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '401': *23 @@ -110371,7 +110403,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 requestBody: required: false content: @@ -110401,9 +110433,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -110425,7 +110457,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': *37 '304': *35 @@ -110454,13 +110486,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': description: Response content: application/json: - schema: &674 + schema: &673 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -110513,7 +110545,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &675 + default: &674 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -110545,7 +110577,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *252 - name: export_id in: path required: true @@ -110558,9 +110590,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 x-github: githubCloudOnly: false @@ -110581,7 +110613,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *252 responses: '200': description: Response @@ -110597,9 +110629,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: *676 + default: *675 '304': *35 '500': *53 '401': *23 @@ -110628,7 +110660,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *252 requestBody: required: true content: @@ -110684,11 +110716,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *344 + repository: *343 machine: anyOf: - type: 'null' - - *461 + - *460 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -111485,15 +111517,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '400': *14 @@ -111525,15 +111557,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '500': *53 '401': *23 '403': *27 @@ -111563,9 +111595,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: &687 + default: &686 value: - id: 197 name: hello_docker @@ -111666,7 +111698,7 @@ paths: application/json: schema: type: array - items: &677 + items: &676 title: Email description: Email type: object @@ -111736,9 +111768,9 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: - default: &689 + default: &688 value: - email: octocat@github.com verified: true @@ -111815,7 +111847,7 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: default: value: @@ -112073,7 +112105,7 @@ paths: application/json: schema: type: array - items: &678 + items: &677 title: GPG Key description: A unique encryption key type: object @@ -112218,7 +112250,7 @@ paths: - subkeys - revoked examples: - default: &706 + default: &705 value: - id: 3 name: Octocat's GPG Key @@ -112303,9 +112335,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *677 examples: - default: &679 + default: &678 value: id: 3 name: Octocat's GPG Key @@ -112362,7 +112394,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &680 + - &679 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -112374,9 +112406,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *677 examples: - default: *679 + default: *678 '404': *6 '304': *35 '403': *27 @@ -112399,7 +112431,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *680 + - *679 responses: '204': description: Response @@ -112601,7 +112633,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *148 + default: *147 headers: Link: *66 '404': *6 @@ -112627,7 +112659,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -112653,7 +112685,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -112687,12 +112719,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *238 '204': description: Response when there are no restrictions x-github: @@ -112716,7 +112748,7 @@ paths: required: true content: application/json: - schema: *533 + schema: *532 examples: default: value: @@ -112727,7 +112759,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -112808,7 +112840,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -112833,7 +112865,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -112866,7 +112898,7 @@ paths: application/json: schema: type: array - items: &681 + items: &680 title: Key description: Key type: object @@ -112969,9 +113001,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *680 examples: - default: &682 + default: &681 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113004,15 +113036,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '200': description: Response content: application/json: - schema: *681 + schema: *680 examples: - default: *682 + default: *681 '404': *6 '304': *35 '403': *27 @@ -113035,7 +113067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '204': description: Response @@ -113068,7 +113100,7 @@ paths: application/json: schema: type: array - items: &683 + items: &682 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -113147,7 +113179,7 @@ paths: - account - plan examples: - default: &684 + default: &683 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -113209,9 +113241,9 @@ paths: application/json: schema: type: array - items: *683 + items: *682 examples: - default: *684 + default: *683 headers: Link: *66 '304': *35 @@ -113251,7 +113283,7 @@ paths: application/json: schema: type: array - items: *255 + items: *254 examples: default: value: @@ -113365,7 +113397,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -113452,7 +113484,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -113524,7 +113556,7 @@ paths: application/json: schema: type: array - items: *257 + items: *256 examples: default: value: @@ -113786,7 +113818,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -113966,7 +113998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *257 - name: exclude in: query required: false @@ -113979,7 +114011,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -114173,7 +114205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *257 responses: '302': description: Response @@ -114199,7 +114231,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *257 responses: '204': description: Response @@ -114228,8 +114260,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *685 + - *257 + - *684 responses: '204': description: Response @@ -114253,7 +114285,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *257 - *17 - *19 responses: @@ -114263,9 +114295,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '404': *6 @@ -114344,7 +114376,7 @@ paths: - docker - nuget - container - - *686 + - *685 - *19 - *17 responses: @@ -114354,10 +114386,10 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 - '400': *688 + default: *686 + '400': *687 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114377,16 +114409,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: &707 + default: &706 value: id: 40201 name: octo-name @@ -114499,8 +114531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '204': description: Response @@ -114530,8 +114562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - name: token description: package token schema: @@ -114563,8 +114595,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: + - *264 - *265 - - *266 - *19 - *17 - name: state @@ -114584,7 +114616,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -114633,15 +114665,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -114677,9 +114709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -114709,9 +114741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -114748,9 +114780,9 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: - default: *689 + default: *688 headers: Link: *66 '304': *35 @@ -114863,7 +114895,7 @@ paths: type: array items: *78 examples: - default: &696 + default: &695 summary: Default response value: - id: 1296269 @@ -115181,9 +115213,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -115221,9 +115253,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: *690 + default: *689 headers: Link: *66 '304': *35 @@ -115246,7 +115278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -115269,7 +115301,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -115302,7 +115334,7 @@ paths: application/json: schema: type: array - items: &691 + items: &690 title: Social account description: Social media account type: object @@ -115319,7 +115351,7 @@ paths: - provider - url examples: - default: &692 + default: &691 value: - provider: twitter url: https://twitter.com/github @@ -115382,9 +115414,9 @@ paths: application/json: schema: type: array - items: *691 + items: *690 examples: - default: *692 + default: *691 '422': *15 '304': *35 '404': *6 @@ -115472,7 +115504,7 @@ paths: application/json: schema: type: array - items: &693 + items: &692 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -115492,7 +115524,7 @@ paths: - title - created_at examples: - default: &724 + default: &723 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115557,9 +115589,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *692 examples: - default: &694 + default: &693 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115589,7 +115621,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: - - &695 + - &694 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -115601,9 +115633,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *692 examples: - default: *694 + default: *693 '404': *6 '304': *35 '403': *27 @@ -115626,7 +115658,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: - - *695 + - *694 responses: '204': description: Response @@ -115655,7 +115687,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &725 + - &724 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 @@ -115680,11 +115712,11 @@ paths: type: array items: *78 examples: - default-response: *696 + default-response: *695 application/vnd.github.v3.star+json: schema: type: array - items: &726 + items: &725 title: Starred Repository description: Starred Repository type: object @@ -115840,8 +115872,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: + - *340 - *341 - - *342 responses: '204': description: Response if this repository is starred by you @@ -115869,8 +115901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -115894,8 +115926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -115928,9 +115960,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '304': *35 @@ -115967,7 +115999,7 @@ paths: application/json: schema: type: array - items: *337 + items: *336 examples: default: value: @@ -116053,10 +116085,10 @@ paths: application/json: schema: oneOf: - - *672 - *671 + - *670 examples: - default-response: &700 + default-response: &699 summary: Default response value: login: octocat @@ -116091,7 +116123,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &701 + response-with-git-hub-plan-information: &700 summary: Response with GitHub plan information value: login: octocat @@ -116148,14 +116180,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &698 + - &697 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -116189,9 +116221,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: - draft_issue: *287 + draft_issue: *286 '304': *35 '403': *27 '401': *23 @@ -116214,7 +116246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *697 + - *696 - *17 responses: '200': @@ -116249,8 +116281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *698 - - *281 + - *697 + - *280 requestBody: required: true content: @@ -116324,17 +116356,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *699 + schema: *698 examples: table_view: summary: Response for creating a table view - value: *291 + value: *290 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -116376,11 +116408,11 @@ paths: application/json: schema: oneOf: - - *672 - *671 + - *670 examples: - default-response: *700 - response-with-git-hub-plan-information: *701 + default-response: *699 + response-with-git-hub-plan-information: *700 '404': *6 x-github: githubCloudOnly: false @@ -116430,8 +116462,8 @@ paths: required: - subject_digests examples: - default: *702 - withPredicateType: *703 + default: *701 + withPredicateType: *702 responses: '200': description: Response @@ -116485,7 +116517,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *704 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116690,12 +116722,12 @@ paths: initiator: type: string examples: - default: *401 + default: *400 '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -116757,7 +116789,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *197 + items: *196 examples: default: summary: Example response for listing user copilot spaces @@ -116972,9 +117004,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &705 + default: &704 summary: Example response for a user copilot space value: id: 42 @@ -117073,9 +117105,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 x-github: @@ -117199,9 +117231,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 '422': *15 @@ -117278,7 +117310,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *199 + items: *198 examples: default: value: @@ -117421,7 +117453,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -117532,7 +117564,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -117662,7 +117694,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *200 + items: *199 examples: default: value: @@ -117754,7 +117786,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117770,7 +117802,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117823,7 +117855,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117890,7 +117922,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117967,9 +117999,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 + default: *686 '403': *27 '401': *23 x-github: @@ -118353,9 +118385,9 @@ paths: application/json: schema: type: array - items: *678 + items: *677 examples: - default: *706 + default: *705 headers: Link: *66 x-github: @@ -118459,7 +118491,7 @@ paths: application/json: schema: *20 examples: - default: *532 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118584,7 +118616,7 @@ paths: - docker - nuget - container - - *686 + - *685 - *70 - *19 - *17 @@ -118595,12 +118627,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 + default: *686 '403': *27 '401': *23 - '400': *688 + '400': *687 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118620,17 +118652,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: *707 + default: *706 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118651,8 +118683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '204': @@ -118685,8 +118717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 - name: token description: package token @@ -118719,8 +118751,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: + - *264 - *265 - - *266 - *70 responses: '200': @@ -118729,7 +118761,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -118787,16 +118819,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 - *70 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -118831,10 +118863,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -118866,10 +118898,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -118910,9 +118942,9 @@ paths: application/json: schema: type: array - items: *279 + items: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -118934,16 +118966,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *280 - *70 responses: '200': description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -118965,7 +118997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *280 - *70 - *17 - *45 @@ -118977,9 +119009,9 @@ paths: application/json: schema: type: array - items: *284 + items: *283 examples: - default: *708 + default: *707 headers: Link: *66 '304': *35 @@ -119001,7 +119033,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true content: @@ -119039,7 +119071,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *709 + items: *708 required: - name - data_type @@ -119055,7 +119087,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *710 + iteration_configuration: *709 required: - name - data_type @@ -119077,20 +119109,20 @@ paths: value: name: Due date data_type: date - single_select_field: *711 - iteration_field: *712 + single_select_field: *710 + iteration_field: *711 responses: '201': description: Response content: application/json: - schema: *284 + schema: *283 examples: - text_field: *713 - number_field: *714 - date_field: *715 - single_select_field: *716 - iteration_field: *717 + text_field: *712 + number_field: *713 + date_field: *714 + single_select_field: *715 + iteration_field: *716 '304': *35 '403': *27 '401': *23 @@ -119111,17 +119143,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *718 + - *280 + - *717 - *70 responses: '200': description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: *719 + default: *718 headers: Link: *66 '304': *35 @@ -119144,7 +119176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - *45 - *46 @@ -119177,9 +119209,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -119201,7 +119233,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -119271,22 +119303,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -119306,9 +119338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - - *290 + - *289 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -119328,9 +119360,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -119351,9 +119383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -119426,13 +119458,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -119452,9 +119484,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 responses: '204': description: Response @@ -119476,9 +119508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *280 - *70 - - *720 + - *719 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -119504,9 +119536,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -119725,9 +119757,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -119750,11 +119782,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing AI credit usage report @@ -119883,11 +119915,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -120016,9 +120048,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *70 - - *117 - - *721 - - *119 + - *116 + - *720 + - *118 responses: '200': description: Response when getting a billing usage report @@ -120113,12 +120145,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *721 + - *121 - *722 - - *122 - - *723 responses: '200': description: Response when getting a billing usage summary @@ -120252,9 +120284,9 @@ paths: application/json: schema: type: array - items: *691 + items: *690 examples: - default: *692 + default: *691 headers: Link: *66 x-github: @@ -120284,9 +120316,9 @@ paths: application/json: schema: type: array - items: *693 + items: *692 examples: - default: *724 + default: *723 headers: Link: *66 x-github: @@ -120311,7 +120343,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *725 + - *724 - *60 - *17 - *19 @@ -120323,11 +120355,11 @@ paths: schema: anyOf: - type: array - items: *726 + items: *725 - type: array items: *78 examples: - default-response: *696 + default-response: *695 headers: Link: *66 x-github: @@ -120356,9 +120388,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -120487,7 +120519,7 @@ webhooks: type: string enum: - disabled - enterprise: &727 + enterprise: &726 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120556,7 +120588,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &728 + installation: &727 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120577,7 +120609,7 @@ webhooks: required: - id - node_id - organization: &729 + organization: &728 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120650,7 +120682,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &730 + repository: &729 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -121576,10 +121608,10 @@ webhooks: type: string enum: - enabled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -121655,11 +121687,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: &731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: &730 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) @@ -121882,11 +121914,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -122074,11 +122106,11 @@ webhooks: - everyone required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -122162,7 +122194,7 @@ webhooks: type: string enum: - completed - check_run: &733 + check_run: &732 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122228,7 +122260,7 @@ webhooks: pull_requests: type: array items: *85 - repository: *156 + repository: *155 status: type: string enum: @@ -122272,7 +122304,7 @@ webhooks: - examples: - neutral - deployment: *732 + deployment: *731 details_url: type: string examples: @@ -122370,10 +122402,10 @@ webhooks: - output - app - pull_requests - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -122764,11 +122796,11 @@ webhooks: type: string enum: - created - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -123162,11 +123194,11 @@ webhooks: type: string enum: - requested_action - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 requested_action: description: The action requested by the user. type: object @@ -123569,11 +123601,11 @@ webhooks: type: string enum: - rerequested - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -124558,10 +124590,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -125270,10 +125302,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -125976,10 +126008,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -126148,7 +126180,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126300,20 +126332,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &734 + commit_oid: &733 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: *727 - installation: *728 - organization: *729 - ref: &735 + enterprise: *726 + installation: *727 + organization: *728 + ref: &734 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: *730 + repository: *729 sender: *4 required: - action @@ -126480,7 +126512,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126721,12 +126753,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -126824,7 +126856,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127009,12 +127041,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -127183,7 +127215,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127360,12 +127392,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -127466,7 +127498,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127655,9 +127687,9 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -127665,7 +127697,7 @@ webhooks: type: - string - 'null' - repository: *730 + repository: *729 sender: *4 required: - action @@ -127764,7 +127796,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127911,12 +127943,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -128085,7 +128117,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -128237,10 +128269,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -128500,10 +128532,10 @@ webhooks: - updated_at - author_association - body - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -128584,18 +128616,18 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *729 - pusher_type: &736 + organization: *728 + pusher_type: &735 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &737 + ref: &736 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -128605,7 +128637,7 @@ webhooks: enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -128687,10 +128719,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128775,9 +128807,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128854,10 +128886,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128934,10 +128966,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -129014,19 +129046,19 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - repository: *730 - organization: *729 + enterprise: *726 + installation: *727 + repository: *729 + organization: *728 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *295 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *295 required: - action - repository @@ -129102,18 +129134,18 @@ webhooks: title: delete event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - pusher_type: *736 - ref: *737 + enterprise: *726 + installation: *727 + organization: *728 + pusher_type: *735 + ref: *736 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -129193,11 +129225,11 @@ webhooks: type: string enum: - assignees_changed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129277,11 +129309,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129362,11 +129394,11 @@ webhooks: type: string enum: - auto_reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129447,11 +129479,11 @@ webhooks: type: string enum: - created - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129530,11 +129562,11 @@ webhooks: type: string enum: - dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129613,11 +129645,11 @@ webhooks: type: string enum: - fixed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129697,11 +129729,11 @@ webhooks: type: string enum: - reintroduced - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129780,11 +129812,11 @@ webhooks: type: string enum: - reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129861,9 +129893,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - key: &738 + enterprise: *726 + installation: *727 + key: &737 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -129901,8 +129933,8 @@ webhooks: - verified - created_at - read_only - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -129979,11 +130011,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - key: *738 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + key: *737 + organization: *728 + repository: *729 sender: *4 required: - action @@ -130550,12 +130582,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: &742 + workflow: &741 title: Workflow type: - object @@ -131306,13 +131338,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *499 + - *498 pull_requests: type: array - items: *582 - repository: *730 - organization: *729 - installation: *728 + items: *581 + repository: *729 + organization: *728 + installation: *727 sender: *4 responses: '200': @@ -131383,7 +131415,7 @@ webhooks: type: string enum: - approved - approver: &739 + approver: &738 type: object properties: avatar_url: @@ -131426,11 +131458,11 @@ webhooks: type: string comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: &740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: &739 type: array items: type: object @@ -131511,7 +131543,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &740 type: object properties: conclusion: @@ -132257,18 +132289,18 @@ webhooks: type: string enum: - rejected - approver: *739 + approver: *738 comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: *740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: *739 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *740 workflow_job_runs: type: array items: @@ -132985,13 +133017,13 @@ webhooks: type: string enum: - requested - enterprise: *727 + enterprise: *726 environment: type: string - installation: *728 - organization: *729 - repository: *730 - requestor: &747 + installation: *727 + organization: *728 + repository: *729 + requestor: &746 title: User type: - object @@ -134924,12 +134956,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Deployment Workflow Run type: @@ -135620,7 +135652,7 @@ webhooks: type: string enum: - answered - answer: &745 + answer: &744 type: object properties: author_association: @@ -135780,11 +135812,11 @@ webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135911,11 +135943,11 @@ webhooks: - from required: - category - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135998,11 +136030,11 @@ webhooks: type: string enum: - closed - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136084,7 +136116,7 @@ webhooks: type: string enum: - created - comment: &744 + comment: &743 type: object properties: author_association: @@ -136244,11 +136276,11 @@ webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136331,12 +136363,12 @@ webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136431,12 +136463,12 @@ webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136520,11 +136552,11 @@ webhooks: type: string enum: - created - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136606,11 +136638,11 @@ webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136710,11 +136742,11 @@ webhooks: type: string required: - from - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136796,10 +136828,10 @@ webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *727 - installation: *728 - label: &746 + discussion: *742 + enterprise: *726 + installation: *727 + label: &745 title: Label type: object properties: @@ -136832,8 +136864,8 @@ webhooks: - color - default - description - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136916,11 +136948,11 @@ webhooks: type: string enum: - locked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137002,11 +137034,11 @@ webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137088,11 +137120,11 @@ webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137177,16 +137209,16 @@ webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *730 + new_discussion: *742 + new_repository: *729 required: - new_discussion - new_repository - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137269,10 +137301,10 @@ webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *729 - repository: *730 + discussion: *742 + old_answer: *744 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137354,12 +137386,12 @@ webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137442,11 +137474,11 @@ webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137528,11 +137560,11 @@ webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137605,7 +137637,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *727 + enterprise: *726 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -138283,9 +138315,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - forkee @@ -138431,9 +138463,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pages: description: The pages that were updated. type: array @@ -138471,7 +138503,7 @@ webhooks: - action - sha - html_url - repository: *730 + repository: *729 sender: *4 required: - pages @@ -138547,10 +138579,10 @@ webhooks: type: string enum: - created - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: &748 + organization: *728 + repositories: &747 description: An array of repository objects that the installation can access. type: array @@ -138576,8 +138608,8 @@ webhooks: - name - full_name - private - repository: *730 - requester: *747 + repository: *729 + requester: *746 sender: *4 required: - action @@ -138652,11 +138684,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -138733,11 +138765,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -138814,10 +138846,10 @@ webhooks: type: string enum: - added - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: &749 + organization: *728 + repositories_added: &748 description: An array of repository objects, which were added to the installation. type: array @@ -138863,15 +138895,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *730 - repository_selection: &750 + repository: *729 + repository_selection: &749 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *746 sender: *4 required: - action @@ -138950,10 +138982,10 @@ webhooks: type: string enum: - removed - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: *749 + organization: *728 + repositories_added: *748 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -138980,9 +139012,9 @@ webhooks: - name - full_name - private - repository: *730 - repository_selection: *750 - requester: *747 + repository: *729 + repository_selection: *749 + requester: *746 sender: *4 required: - action @@ -139061,11 +139093,11 @@ webhooks: type: string enum: - suspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -139247,10 +139279,10 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 target_type: type: string @@ -139329,11 +139361,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -139499,7 +139531,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 user: title: User type: @@ -139585,8 +139617,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140398,8 +140430,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140416,7 +140448,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -140760,8 +140792,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -140841,7 +140873,7 @@ webhooks: type: string enum: - deleted - comment: &751 + comment: &750 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -140998,7 +141030,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 required: - url - html_url @@ -141012,8 +141044,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141821,8 +141853,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141839,7 +141871,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -142185,8 +142217,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -142266,7 +142298,7 @@ webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -142278,9 +142310,9 @@ webhooks: type: string required: - from - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143091,8 +143123,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143109,7 +143141,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -143453,8 +143485,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -143535,9 +143567,9 @@ webhooks: type: string enum: - pinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144350,8 +144382,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144368,7 +144400,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -144714,8 +144746,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -144795,9 +144827,9 @@ webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145610,8 +145642,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145628,7 +145660,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -145974,8 +146006,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -146064,9 +146096,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -146155,9 +146187,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -146245,9 +146277,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -146336,9 +146368,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -146418,10 +146450,10 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - issue: &752 + assignee: *746 + enterprise: *726 + installation: *727 + issue: &751 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147232,11 +147264,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147253,7 +147285,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -147356,8 +147388,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147437,8 +147469,8 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148254,11 +148286,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148275,7 +148307,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -148521,8 +148553,8 @@ webhooks: required: - state - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -148601,8 +148633,8 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149409,11 +149441,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149430,7 +149462,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -149532,8 +149564,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -149612,8 +149644,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150443,11 +150475,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150464,7 +150496,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -150545,7 +150577,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &753 + milestone: &752 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150688,8 +150720,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -150788,8 +150820,8 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151600,11 +151632,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151618,7 +151650,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -151724,9 +151756,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -151806,9 +151838,9 @@ webhooks: type: string enum: - field_added - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was set or updated on the @@ -151927,8 +151959,8 @@ webhooks: - id required: - from - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -152008,9 +152040,9 @@ webhooks: type: string enum: - field_removed - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -152073,8 +152105,8 @@ webhooks: - 'null' required: - id - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -152154,8 +152186,8 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152965,11 +152997,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152983,7 +153015,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -153089,9 +153121,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -153171,8 +153203,8 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154007,11 +154039,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154025,7 +154057,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -154108,8 +154140,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -154188,8 +154220,8 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155018,11 +155050,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155039,7 +155071,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -155119,9 +155151,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *753 - organization: *729 - repository: *730 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -156008,11 +156040,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156112,7 +156144,7 @@ webhooks: required: - login - id - type: *246 + type: *245 required: - id - number @@ -156604,8 +156636,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157412,11 +157444,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157433,7 +157465,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -157539,8 +157571,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -157620,9 +157652,9 @@ webhooks: type: string enum: - pinned - enterprise: *727 - installation: *728 - issue: &754 + enterprise: *726 + installation: *727 + issue: &753 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -158427,11 +158459,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158448,7 +158480,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -158550,8 +158582,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -158630,8 +158662,8 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159464,11 +159496,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159565,9 +159597,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *729 - repository: *730 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -160455,11 +160487,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160476,7 +160508,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -161069,11 +161101,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161153,12 +161185,12 @@ webhooks: type: string enum: - typed - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161239,7 +161271,7 @@ webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: - object @@ -161311,11 +161343,11 @@ webhooks: required: - login - id - enterprise: *727 - installation: *728 - issue: *752 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161394,12 +161426,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - issue: *752 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161479,8 +161511,8 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -162313,11 +162345,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162334,7 +162366,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -162414,8 +162446,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162495,11 +162527,11 @@ webhooks: type: string enum: - unpinned - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162578,12 +162610,12 @@ webhooks: type: string enum: - untyped - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162663,11 +162695,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162745,11 +162777,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162859,11 +162891,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162945,9 +162977,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: &755 + enterprise: *726 + installation: *727 + marketplace_purchase: &754 title: Marketplace Purchase type: object required: @@ -163035,8 +163067,8 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: &756 + organization: *728 + previous_marketplace_purchase: &755 title: Marketplace Purchase type: object properties: @@ -163120,7 +163152,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -163200,10 +163232,10 @@ webhooks: - changed effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163291,7 +163323,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -163373,10 +163405,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163462,7 +163494,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -163543,8 +163575,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 marketplace_purchase: title: Marketplace Purchase type: object @@ -163630,9 +163662,9 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -163712,12 +163744,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -163819,11 +163851,11 @@ webhooks: type: string required: - to - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163925,11 +163957,11 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164008,11 +164040,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164090,11 +164122,11 @@ webhooks: type: string enum: - added - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164172,7 +164204,7 @@ webhooks: required: - login - id - team: &757 + team: &756 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164402,11 +164434,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164485,7 +164517,7 @@ webhooks: required: - login - id - team: *757 + team: *756 required: - action - scope @@ -164567,8 +164599,8 @@ webhooks: type: string enum: - checks_requested - installation: *728 - merge_group: &758 + installation: *727 + merge_group: &757 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164587,15 +164619,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *421 + head_commit: *420 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164681,10 +164713,10 @@ webhooks: - merged - invalidated - dequeued - installation: *728 - merge_group: *758 - organization: *729 - repository: *730 + installation: *727 + merge_group: *757 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164757,7 +164789,7 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -164866,12 +164898,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *728 - organization: *729 + installation: *727 + organization: *728 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -164951,11 +164983,11 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165034,9 +165066,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - milestone: &759 + enterprise: *726 + installation: *727 + milestone: &758 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165178,8 +165210,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165258,11 +165290,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165372,11 +165404,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165456,11 +165488,11 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - milestone: *759 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *758 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165539,11 +165571,11 @@ webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165622,11 +165654,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165705,9 +165737,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - membership: &760 + enterprise: *726 + installation: *727 + membership: &759 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -165817,8 +165849,8 @@ webhooks: - role - organization_url - user - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165896,11 +165928,11 @@ webhooks: type: string enum: - member_added - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165979,8 +166011,8 @@ webhooks: type: string enum: - member_invited - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166102,10 +166134,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 - user: *747 + user: *746 required: - action - invitation @@ -166183,11 +166215,11 @@ webhooks: type: string enum: - member_removed - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166274,11 +166306,11 @@ webhooks: properties: from: type: string - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166355,9 +166387,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -166880,7 +166912,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &761 + items: &760 title: Ruby Gems metadata type: object properties: @@ -166977,7 +167009,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -167053,9 +167085,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -167417,7 +167449,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 source_url: type: string format: uri @@ -167488,7 +167520,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -167668,12 +167700,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *727 + enterprise: *726 id: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - id @@ -167750,7 +167782,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &762 + personal_access_token_request: &761 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -167900,10 +167932,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *727 - organization: *729 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -167980,11 +168012,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -168060,11 +168092,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -168139,11 +168171,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *762 - organization: *729 - enterprise: *727 + personal_access_token_request: *761 + organization: *728 + enterprise: *726 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -168248,7 +168280,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *763 + last_response: *762 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -168280,8 +168312,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 zen: description: Random string of GitHub zen. @@ -168526,10 +168558,10 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: &764 + enterprise: *726 + installation: *727 + organization: *728 + project_card: &763 title: Project Card type: object properties: @@ -168652,7 +168684,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -168733,11 +168765,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -168817,9 +168849,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: title: Project Card type: object @@ -168949,7 +168981,7 @@ webhooks: repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -169043,11 +169075,11 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -169141,9 +169173,9 @@ webhooks: - from required: - column_id - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: allOf: - title: Project Card @@ -169340,7 +169372,7 @@ webhooks: type: string required: - after_id - repository: *730 + repository: *729 sender: *4 required: - action @@ -169420,10 +169452,10 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - organization: *729 - project: &766 + enterprise: *726 + installation: *727 + organization: *728 + project: &765 title: Project type: object properties: @@ -169550,7 +169582,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -169630,10 +169662,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_column: &765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: &764 title: Project Column type: object properties: @@ -169673,7 +169705,7 @@ webhooks: - name - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -169752,14 +169784,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -169848,11 +169880,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -169932,11 +169964,11 @@ webhooks: type: string enum: - moved - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -170016,11 +170048,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -170100,14 +170132,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project: *766 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -170208,11 +170240,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -170291,11 +170323,11 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -170376,9 +170408,9 @@ webhooks: type: string enum: - closed - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170459,9 +170491,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170542,9 +170574,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170665,9 +170697,9 @@ webhooks: type: string to: type: string - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170750,7 +170782,7 @@ webhooks: type: string enum: - archived - changes: &770 + changes: &769 type: object properties: archived_at: @@ -170766,9 +170798,9 @@ webhooks: - string - 'null' format: date-time - installation: *728 - organization: *729 - projects_v2_item: &767 + installation: *727 + organization: *728 + projects_v2_item: &766 title: Projects v2 Item description: An item belonging to a project type: object @@ -170786,7 +170818,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *284 creator: *4 created_at: type: string @@ -170908,9 +170940,9 @@ webhooks: - 'null' to: type: string - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -170992,9 +171024,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171075,9 +171107,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171182,7 +171214,7 @@ webhooks: oneOf: - type: string - type: integer - - &768 + - &767 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -171206,7 +171238,7 @@ webhooks: required: - id - name - - &769 + - &768 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171246,8 +171278,8 @@ webhooks: oneOf: - type: string - type: integer + - *767 - *768 - - *769 type: - 'null' - string @@ -171270,9 +171302,9 @@ webhooks: - 'null' required: - body - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171369,9 +171401,9 @@ webhooks: type: - string - 'null' - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171454,10 +171486,10 @@ webhooks: type: string enum: - restored - changes: *770 - installation: *728 - organization: *729 - projects_v2_item: *767 + changes: *769 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171539,9 +171571,9 @@ webhooks: type: string enum: - reopened - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171622,9 +171654,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171705,9 +171737,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171853,9 +171885,9 @@ webhooks: - string - 'null' format: date - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171926,10 +171958,10 @@ webhooks: title: public event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - repository @@ -172006,13 +172038,13 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - number: &772 + assignee: *746 + enterprise: *726 + installation: *727 + number: &771 description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -174383,7 +174415,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -174465,11 +174497,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -176833,7 +176865,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -176915,11 +176947,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -179283,7 +179315,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -179365,13 +179397,13 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: &773 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: &772 allOf: - - *582 + - *581 - type: object properties: allow_auto_merge: @@ -179433,7 +179465,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *730 + repository: *729 sender: *4 required: - action @@ -179514,12 +179546,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -179599,11 +179631,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: &774 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: &773 title: Pull Request type: object properties: @@ -181952,7 +181984,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -182031,11 +182063,11 @@ webhooks: type: string enum: - dequeued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -184403,7 +184435,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *730 + repository: *729 sender: *4 required: - action @@ -184527,12 +184559,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -184612,11 +184644,11 @@ webhooks: type: string enum: - enqueued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -186969,7 +187001,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -187049,11 +187081,11 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -189423,7 +189455,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -189504,10 +189536,10 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -191875,7 +191907,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -191955,12 +191987,12 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: *774 - repository: *730 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: *773 + repository: *729 sender: *4 required: - action @@ -192039,12 +192071,12 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -192125,12 +192157,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -192210,12 +192242,12 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -192590,9 +192622,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -194844,7 +194876,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -194924,7 +194956,7 @@ webhooks: type: string enum: - deleted - comment: &776 + comment: &775 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -195217,9 +195249,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -197459,7 +197491,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -197539,11 +197571,11 @@ webhooks: type: string enum: - edited - changes: *775 - comment: *776 - enterprise: *727 - installation: *728 - organization: *729 + changes: *774 + comment: *775 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -199786,7 +199818,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -199867,9 +199899,9 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -202124,7 +202156,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 review: description: The review that was affected. type: object @@ -202375,9 +202407,9 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -204491,8 +204523,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: &777 + repository: *729 + review: &776 description: The review that was affected. type: object properties: @@ -204730,12 +204762,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -207104,7 +207136,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -207190,12 +207222,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -209571,7 +209603,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209766,12 +209798,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -212142,7 +212174,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -212229,12 +212261,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -214596,7 +214628,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214780,9 +214812,9 @@ webhooks: type: string enum: - submitted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -217040,8 +217072,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: *777 + repository: *729 + review: *776 sender: *4 required: - action @@ -217121,9 +217153,9 @@ webhooks: type: string enum: - resolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -219276,7 +219308,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -219673,9 +219705,9 @@ webhooks: type: string enum: - unresolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -221811,7 +221843,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -222210,10 +222242,10 @@ webhooks: type: string before: type: string - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -224570,7 +224602,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -224652,11 +224684,11 @@ webhooks: type: string enum: - unassigned - assignee: *778 - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + assignee: *777 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -227028,7 +227060,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -227107,11 +227139,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -229472,7 +229504,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -229553,10 +229585,10 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -231907,7 +231939,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -232110,7 +232142,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *727 + enterprise: *726 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232205,8 +232237,8 @@ webhooks: - url - author - committer - installation: *728 - organization: *729 + installation: *727 + organization: *728 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232805,9 +232837,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -233284,7 +233316,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -233340,7 +233372,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -233418,9 +233450,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -233732,7 +233764,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -233782,7 +233814,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -233859,10 +233891,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - release: &779 + enterprise: *726 + installation: *727 + organization: *728 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234193,7 +234225,7 @@ webhooks: - updated_at - zipball_url - body - repository: *730 + repository: *729 sender: *4 required: - action @@ -234270,11 +234302,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -234391,11 +234423,11 @@ webhooks: type: boolean required: - to - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -234473,9 +234505,9 @@ webhooks: type: string enum: - prereleased - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -234811,7 +234843,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -234887,10 +234919,10 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - release: &780 + enterprise: *726 + installation: *727 + organization: *728 + release: &779 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -235223,7 +235255,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -235299,11 +235331,11 @@ webhooks: type: string enum: - released - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -235379,11 +235411,11 @@ webhooks: type: string enum: - unpublished - enterprise: *727 - installation: *728 - organization: *729 - release: *780 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *779 + repository: *729 sender: *4 required: - action @@ -235459,11 +235491,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -235539,11 +235571,11 @@ webhooks: type: string enum: - reported - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -235619,10 +235651,10 @@ webhooks: type: string enum: - archived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235699,10 +235731,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235780,10 +235812,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235868,10 +235900,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235986,10 +236018,10 @@ webhooks: - 'null' items: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236061,10 +236093,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 status: type: string @@ -236145,10 +236177,10 @@ webhooks: type: string enum: - privatized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236225,10 +236257,10 @@ webhooks: type: string enum: - publicized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236322,10 +236354,10 @@ webhooks: - name required: - repository - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236405,11 +236437,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -236487,11 +236519,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -236569,11 +236601,11 @@ webhooks: type: string enum: - edited - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 changes: type: object properties: @@ -236592,16 +236624,16 @@ webhooks: properties: added: type: array - items: *298 + items: *297 deleted: type: array - items: *298 + items: *297 updated: type: array items: type: object properties: - condition: *298 + condition: *297 changes: type: object properties: @@ -236634,16 +236666,16 @@ webhooks: properties: added: type: array - items: *602 + items: *601 deleted: type: array - items: *602 + items: *601 updated: type: array items: type: object properties: - rule: *602 + rule: *601 changes: type: object properties: @@ -236880,10 +236912,10 @@ webhooks: - from required: - owner - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236961,10 +236993,10 @@ webhooks: type: string enum: - unarchived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237042,7 +237074,7 @@ webhooks: type: string enum: - create - alert: &781 + alert: &780 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237167,10 +237199,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237380,10 +237412,10 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237461,11 +237493,11 @@ webhooks: type: string enum: - reopen - alert: *781 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *780 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237667,10 +237699,10 @@ webhooks: enum: - fixed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237748,17 +237780,17 @@ webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri @@ -237888,10 +237920,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237969,11 +238001,11 @@ webhooks: type: string enum: - created - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238054,11 +238086,11 @@ webhooks: type: string enum: - created - alert: *782 - installation: *728 - location: *783 - organization: *729 - repository: *730 + alert: *781 + installation: *727 + location: *782 + organization: *728 + repository: *729 sender: *4 required: - location @@ -238296,11 +238328,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238378,11 +238410,11 @@ webhooks: type: string enum: - reopened - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238460,11 +238492,11 @@ webhooks: type: string enum: - resolved - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238542,12 +238574,12 @@ webhooks: type: string enum: - unassigned - alert: *782 + alert: *781 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238625,11 +238657,11 @@ webhooks: type: string enum: - validated - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238759,10 +238791,10 @@ webhooks: - organization - enterprise - - repository: *730 - enterprise: *727 - installation: *728 - organization: *729 + repository: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -238840,11 +238872,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: &784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: &783 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239030,11 +239062,11 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: *784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: *783 sender: *4 required: - action @@ -239107,10 +239139,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -239296,11 +239328,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *727 - installation: *728 - organization: *729 - repository: *344 + security_and_analysis: *296 + enterprise: *726 + installation: *727 + organization: *728 + repository: *343 sender: *4 required: - changes @@ -239378,12 +239410,12 @@ webhooks: type: string enum: - cancelled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: &785 + sponsorship: &784 type: object properties: created_at: @@ -239688,12 +239720,12 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -239781,12 +239813,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -239863,17 +239895,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &786 + effective_date: &785 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: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -239947,7 +239979,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -239991,13 +240023,13 @@ webhooks: - from required: - tier - effective_date: *786 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + effective_date: *785 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -240074,13 +240106,13 @@ webhooks: type: string enum: - tier_changed - changes: *787 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + changes: *786 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -240154,10 +240186,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240241,10 +240273,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240678,15 +240710,15 @@ webhooks: type: - string - 'null' - enterprise: *727 + enterprise: *726 id: description: The unique identifier of the status. type: integer - installation: *728 + installation: *727 name: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 sha: description: The Commit SHA. @@ -240802,9 +240834,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240893,9 +240925,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240984,9 +241016,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -241075,9 +241107,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -241153,12 +241185,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - team: &788 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -241388,9 +241420,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -241860,7 +241892,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -241936,9 +241968,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -242408,7 +242440,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -242485,9 +242517,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -242957,7 +242989,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -243101,9 +243133,9 @@ webhooks: - from required: - permissions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -243573,7 +243605,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -243651,9 +243683,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -244123,7 +244155,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -244199,10 +244231,10 @@ webhooks: type: string enum: - started - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -244275,17 +244307,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *727 + enterprise: *726 inputs: type: - object - 'null' additionalProperties: true - installation: *728 - organization: *729 + installation: *727 + organization: *728 ref: type: string - repository: *730 + repository: *729 sender: *4 workflow: type: string @@ -244367,10 +244399,10 @@ webhooks: type: string enum: - completed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -244626,7 +244658,7 @@ webhooks: type: string required: - conclusion - deployment: *499 + deployment: *498 required: - action - repository @@ -244705,10 +244737,10 @@ webhooks: type: string enum: - in_progress - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -244990,7 +245022,7 @@ webhooks: required: - status - steps - deployment: *499 + deployment: *498 required: - action - repository @@ -245069,10 +245101,10 @@ webhooks: type: string enum: - queued - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: type: object @@ -245218,7 +245250,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *499 + deployment: *498 required: - action - repository @@ -245297,10 +245329,10 @@ webhooks: type: string enum: - waiting - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: type: object @@ -245447,7 +245479,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *499 + deployment: *498 required: - action - repository @@ -245527,12 +245559,12 @@ webhooks: type: string enum: - completed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object @@ -246551,12 +246583,12 @@ webhooks: type: string enum: - in_progress - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object @@ -247560,12 +247592,12 @@ webhooks: type: string enum: - requested - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 0842bbec4b..a21c5fc423 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -84175,9 +84175,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully created." - ] + "description": "A message indicating the result of the create operation" }, "budget": { "type": "object", @@ -84186,49 +84184,49 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ + "enterprise", "organization", "repository", + "cost_center", "multi_user_customer", "user" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -84245,154 +84243,57 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "message", + "budget" + ] }, "examples": { "create-organization-budget": { "value": { "message": "Budget successfully created.", "budget": { - "description": "Response when updating a budget", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_scope": { - "type": "string", - "description": "The type of scope for the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ], - "examples": [ - "enterprise" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "examples": [ - "octocat/hello-world" - ] - }, - "user": { - "type": "string", - "description": "The user login when the budget is scoped to a single user (`user` scope).", - "examples": [ - "octocat" - ] - }, - "budget_amount": { - "type": "integer", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded", - "examples": [ - true - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or sku to apply the budget to.", - "examples": [ - "actions_linux" - ] - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ], - "examples": [ - "ProductPricing" - ] - }, - "budget_alerting": { - "type": "object", - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget", - "examples": [ - true - ] - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts", - "examples": [ - "mona", - "lisa" - ] - } - } - } - }, - "required": [ - "id", - "budget_amount", - "prevent_further_usage", - "budget_product_sku", - "budget_type", - "budget_alerting", - "budget_scope", - "budget_entity_name" - ] - }, - "examples": { - "default": { - "value": { - "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", - "budget_type": "ProductPricing", - "budget_product_sku": "actions_linux", - "budget_scope": "repository", - "budget_entity_name": "example-repo-name", - "budget_amount": 0.0, - "prevent_further_usage": true, - "budget_alerting": { - "will_alert": true, - "alert_recipients": [ - "mona", - "lisa" - ] - } - } - } - } - } + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] } } } @@ -85152,9 +85053,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully updated." - ] + "description": "A message indicating the result of the update operation" }, "budget": { "type": "object", @@ -85163,51 +85062,47 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ "enterprise", "organization", "repository", - "cost_center", - "multi_user_customer", - "user" + "cost_center" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -85224,15 +85119,41 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "budget", + "message" + ] }, "examples": { "update-budget": { @@ -85244,7 +85165,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 904de5ca78..ab851d93af 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -883,7 +883,7 @@ paths: - subscriptions_url - type - url - type: &330 + type: &329 type: string description: The type of credit the user is receiving. enum: @@ -1015,7 +1015,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &126 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1048,7 +1048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &653 + - &652 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4161,7 +4161,7 @@ paths: schema: type: integer default: 30 - - &220 + - &219 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 @@ -4170,7 +4170,7 @@ paths: required: false schema: type: string - - &221 + - &220 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4190,7 +4190,7 @@ paths: application/json: schema: type: array - items: &222 + items: &221 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4286,7 +4286,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &222 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4349,7 +4349,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &125 + schema: &124 title: Validation Error description: Validation Error type: object @@ -4421,7 +4421,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &223 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4556,7 +4556,7 @@ paths: - request - response examples: - default: &225 + default: &224 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -10117,7 +10117,7 @@ paths: required: true content: application/json: - schema: &138 + schema: &137 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -10829,7 +10829,7 @@ paths: description: Response content: application/json: - schema: &192 + schema: &191 type: array description: A list of default code security configurations items: @@ -10845,7 +10845,7 @@ paths: default configuration: *47 examples: - default: &193 + default: &192 value: - default_for_new_repos: public configuration: @@ -11307,7 +11307,7 @@ paths: default: value: default_for_new_repos: all - configuration: &191 + configuration: &190 value: id: 1325 target_type: organization @@ -11397,7 +11397,7 @@ paths: application/json: schema: type: array - items: &194 + items: &193 type: object description: Repositories associated with a code security configuration and attachment status @@ -11742,7 +11742,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &195 + repository: &194 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -12284,7 +12284,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &203 + - &202 name: classification in: query description: |- @@ -12293,7 +12293,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &204 + - &203 name: state in: query description: |- @@ -12302,7 +12302,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &205 + - &204 name: severity in: query description: |- @@ -12311,7 +12311,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &206 + - &205 name: ecosystem in: query description: |- @@ -12320,14 +12320,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &207 + - &206 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 - - &208 + - &207 name: epss_percentage in: query description: |- @@ -12339,7 +12339,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 - - &488 + - &487 name: has in: query description: |- @@ -12353,7 +12353,7 @@ paths: type: string enum: - patch - - &209 + - &208 name: assignee in: query description: |- @@ -12362,7 +12362,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &210 + - &209 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12372,7 +12372,7 @@ paths: enum: - development - runtime - - &211 + - &210 name: sort in: query description: |- @@ -12398,11 +12398,11 @@ paths: application/json: schema: type: array - items: &212 + items: &211 type: object description: A Dependabot alert. properties: - number: &181 + number: &180 type: integer description: The security alert number. readOnly: true @@ -12469,7 +12469,7 @@ paths: - transitive - inconclusive - - security_advisory: &489 + security_advisory: &488 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12660,29 +12660,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *64 - url: &184 + url: &183 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &185 + html_url: &184 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &182 + created_at: &181 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: &183 + updated_at: &182 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: &187 + dismissed_at: &186 type: - string - 'null' @@ -12713,7 +12713,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &186 + fixed_at: &185 type: - string - 'null' @@ -12721,7 +12721,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &490 + auto_dismissed_at: &489 type: - string - 'null' @@ -12729,7 +12729,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &491 + dismissal_request: &490 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12792,7 +12792,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &212 value: - number: 2 state: dismissed @@ -13177,7 +13177,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &213 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13203,7 +13203,7 @@ paths: - *65 additionalProperties: false examples: - default: &215 + default: &214 value: default_level: public accessible_repositories: @@ -14448,7 +14448,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &742 title: Discussion description: A Discussion in a repository. type: object @@ -14945,7 +14945,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &281 title: Milestone description: A collection of related issues and pull requests. @@ -15122,7 +15122,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &245 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15235,7 +15235,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &664 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -15319,7 +15319,7 @@ paths: pin: anyOf: - type: 'null' - - &561 + - &560 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15346,7 +15346,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &665 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -15365,7 +15365,7 @@ paths: - total_blocking issue_field_values: type: array - items: &545 + items: &544 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16145,7 +16145,7 @@ paths: type: string release: allOf: - - &593 + - &592 title: Release description: A release. type: object @@ -16227,7 +16227,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &593 title: Release Asset description: Data related to a release. type: object @@ -18495,7 +18495,7 @@ paths: - closed - all default: open - - &249 + - &248 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18546,7 +18546,7 @@ paths: type: array items: *82 examples: - default: &250 + default: &249 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19958,14 +19958,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &341 + - &340 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &342 + - &341 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20027,7 +20027,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &345 + '301': &344 description: Moved permanently content: application/json: @@ -20049,7 +20049,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &568 name: all description: If `true`, show notifications marked as read. in: query @@ -20057,7 +20057,7 @@ paths: schema: type: boolean default: false - - &570 + - &569 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20067,7 +20067,7 @@ paths: type: boolean default: false - *87 - - &571 + - &570 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: @@ -20099,7 +20099,7 @@ paths: properties: id: type: string - repository: &156 + repository: &155 title: Minimal Repository description: Minimal Repository type: object @@ -20447,7 +20447,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &296 type: - object - 'null' @@ -20658,7 +20658,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &571 value: - id: '1' repository: @@ -21384,7 +21384,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization parameters: - *74 - - &117 + - &116 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, @@ -21393,7 +21393,7 @@ paths: required: false schema: type: integer - - &118 + - &117 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 @@ -21402,7 +21402,7 @@ paths: required: false schema: type: integer - - &119 + - &118 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 @@ -21411,21 +21411,21 @@ paths: required: false schema: type: integer - - &120 + - &119 name: user description: The user name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &121 + - &120 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &122 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -21892,51 +21892,48 @@ paths: properties: message: type: string - examples: - - Budget successfully created. + description: A message indicating the result of the create operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: + - enterprise - organization - repository + - cost_center - multi_user_customer - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -21946,118 +21943,43 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - message + - budget examples: create-organization-budget: value: message: Budget successfully created. - budget: &115 - description: Response when updating a budget - content: - application/json: - schema: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_scope: - type: string - description: The type of scope for the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - examples: - - enterprise - budget_entity_name: - type: string - description: The name of the entity to apply the budget - to - examples: - - octocat/hello-world - user: - type: string - description: The user login when the budget is scoped - to a single user (`user` scope). - examples: - - octocat - budget_amount: - type: integer - description: The budget amount in whole dollars. For - license-based products, this represents the number - of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending - once the budget is exceeded - examples: - - true - budget_product_sku: - type: string - description: A single product or sku to apply the - budget to. - examples: - - actions_linux - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - examples: - - ProductPricing - budget_alerting: - type: object - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this - budget - examples: - - true - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will - receive alerts - examples: - - mona - - lisa - required: - - id - - budget_amount - - prevent_further_usage - - budget_product_sku - - budget_type - - budget_alerting - - budget_scope - - budget_entity_name - examples: - default: - value: - id: 2066deda-923f-43f9-88d2-62395a28c0cdd - budget_type: ProductPricing - budget_product_sku: actions_linux - budget_scope: repository - budget_entity_name: example-repo-name - budget_amount: 0.0 - prevent_further_usage: true - budget_alerting: - will_alert: true - alert_recipients: - - mona - - lisa + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] '400': *14 '401': *23 '403': @@ -22109,7 +22031,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *74 - - &116 + - &115 name: budget_id description: The ID corresponding to the budget. in: path @@ -22117,7 +22039,105 @@ paths: schema: type: string responses: - '200': *115 + '200': + description: Response when updating a budget + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - octocat/hello-world + user: + type: string + description: The user login when the budget is scoped to a single + user (`user` scope). + examples: + - octocat + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - id + - budget_amount + - prevent_further_usage + - budget_product_sku + - budget_type + - budget_alerting + - budget_scope + - budget_entity_name + examples: + default: + value: + id: 2066deda-923f-43f9-88d2-62395a28c0cdd + budget_type: ProductPricing + budget_product_sku: actions_linux + budget_scope: repository + budget_entity_name: example-repo-name + budget_amount: 0.0 + prevent_further_usage: true + budget_alerting: + will_alert: true + alert_recipients: + - mona + - lisa '400': *14 '404': *6 '403': *27 @@ -22140,7 +22160,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 requestBody: required: true content: @@ -22213,52 +22233,46 @@ paths: properties: message: type: string - examples: - - Budget successfully updated. + description: A message indicating the result of the update operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: - enterprise - organization - repository - cost_center - - multi_user_customer - - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -22268,10 +22282,28 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - budget + - message examples: update-budget: value: @@ -22282,7 +22314,7 @@ paths: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true @@ -22335,7 +22367,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 responses: '200': description: Response when deleting a budget @@ -22383,12 +22415,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *74 + - *116 - *117 - *118 - *119 - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -22520,8 +22552,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *74 - - *117 - - &721 + - *116 + - &720 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 @@ -22530,7 +22562,7 @@ paths: required: false schema: type: integer - - *119 + - *118 responses: '200': description: Billing usage report response for an organization @@ -22630,18 +22662,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *74 + - *116 - *117 - *118 - - *119 - - &722 + - &721 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *122 - - &723 + - *121 + - &722 name: sku description: The SKU to query for usage. in: query @@ -22784,7 +22816,7 @@ paths: description: Response content: application/json: - schema: &123 + schema: &122 title: Organization Full description: Organization Full type: object @@ -23173,7 +23205,7 @@ paths: - updated_at - archived_at examples: - default-response: &124 + default-response: &123 value: login: github id: 1 @@ -23485,17 +23517,17 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *124 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: + - *124 - *125 - - *126 '409': *52 x-github: githubCloudOnly: false @@ -23610,7 +23642,7 @@ paths: type: integer repository_cache_usages: type: array - items: &352 + items: &351 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -23686,7 +23718,7 @@ paths: type: integer runners: type: array - items: &127 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -23749,7 +23781,7 @@ paths: - size_gb - display_name - source - machine_size_details: &135 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -23858,7 +23890,7 @@ paths: - public_ip_enabled - platform examples: - default: &155 + default: &154 value: total_count: 2 runners: @@ -23996,9 +24028,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: &136 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -24055,7 +24087,7 @@ paths: type: integer images: type: array - items: &128 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -24114,7 +24146,7 @@ paths: - latest_version - state examples: - default: &130 + default: &129 value: total_count: 2 image_versions: @@ -24146,7 +24178,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *74 - - &129 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -24158,7 +24190,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *127 examples: default: value: @@ -24189,7 +24221,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *74 - - *129 + - *128 responses: '204': description: Response @@ -24212,7 +24244,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: - - *129 + - *128 - *74 responses: '200': @@ -24229,7 +24261,7 @@ paths: type: integer image_versions: type: array - items: &131 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -24267,7 +24299,7 @@ paths: - created_on - state_details examples: - default: *130 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24288,8 +24320,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: - *74 - - *129 - - &132 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -24302,7 +24334,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *130 examples: default: value: @@ -24329,8 +24361,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *74 - - *129 - - *132 + - *128 + - *131 responses: '204': description: Response @@ -24367,7 +24399,7 @@ paths: type: integer images: type: array - items: &133 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -24407,7 +24439,7 @@ paths: - display_name - source examples: - default: &134 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -24447,9 +24479,9 @@ paths: type: integer images: type: array - items: *133 + items: *132 examples: - default: *134 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24537,7 +24569,7 @@ paths: type: integer machine_specs: type: array - items: *135 + items: *134 examples: default: value: @@ -24607,7 +24639,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *74 - - &137 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -24619,9 +24651,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 headers: Link: *66 x-github: @@ -24642,7 +24674,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 requestBody: required: true content: @@ -24709,9 +24741,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -24728,15 +24760,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 responses: '202': description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -24794,7 +24826,7 @@ paths: required: true content: application/json: - schema: *138 + schema: *137 examples: default: *44 responses: @@ -24887,7 +24919,7 @@ paths: required: - include_claim_keys examples: - default: &139 + default: &138 value: include_claim_keys: - repo @@ -24932,13 +24964,13 @@ paths: format. type: boolean examples: - default: *139 + default: *138 responses: '201': description: Empty response content: application/json: - schema: &165 + schema: &164 title: Empty Object description: An object without any properties. type: object @@ -24977,7 +25009,7 @@ paths: schema: type: object properties: - enabled_repositories: &140 + enabled_repositories: &139 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -24990,7 +25022,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: &141 + allowed_actions: &140 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -24998,12 +25030,12 @@ paths: - all - local_only - selected - selected_actions_url: &357 + selected_actions_url: &356 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: &142 + sha_pinning_required: &141 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -25045,9 +25077,9 @@ paths: schema: type: object properties: - enabled_repositories: *140 - allowed_actions: *141 - sha_pinning_required: *142 + enabled_repositories: *139 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled_repositories examples: @@ -25081,7 +25113,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &360 type: object properties: days: @@ -25123,7 +25155,7 @@ paths: required: true content: application/json: - schema: &362 + schema: &361 type: object properties: days: @@ -25166,7 +25198,7 @@ paths: description: Response content: application/json: - schema: &143 + schema: &142 type: object properties: approval_policy: @@ -25180,7 +25212,7 @@ paths: required: - approval_policy examples: - default: &363 + default: &362 value: approval_policy: first_time_contributors '404': *6 @@ -25211,7 +25243,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -25239,7 +25271,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &363 type: object required: - run_workflows_from_fork_pull_requests @@ -25265,7 +25297,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &144 + default: &143 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -25293,7 +25325,7 @@ paths: required: true content: application/json: - schema: &365 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -25316,7 +25348,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -25366,7 +25398,7 @@ paths: type: array items: *78 examples: - default: &148 + default: &147 value: total_count: 1 repositories: @@ -25551,7 +25583,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - &145 + - &144 name: repository_id description: The unique identifier of the repository. in: path @@ -25580,7 +25612,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -25609,7 +25641,7 @@ paths: description: Response content: application/json: - schema: &146 + schema: &145 type: object properties: github_owned_allowed: @@ -25631,7 +25663,7 @@ paths: items: type: string examples: - default: &147 + default: &146 value: github_owned_allowed: true verified_allowed: false @@ -25664,9 +25696,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25798,7 +25830,7 @@ paths: type: array items: *78 examples: - default: *148 + default: *147 '403': *27 '404': *6 x-github: @@ -25867,7 +25899,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -25894,7 +25926,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -25928,17 +25960,17 @@ paths: description: Response content: application/json: - schema: &366 + schema: &365 type: object properties: - default_workflow_permissions: &149 + default_workflow_permissions: &148 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &150 + can_approve_pull_request_reviews: &149 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -25946,7 +25978,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &151 + default: &150 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -25979,13 +26011,13 @@ paths: required: false content: application/json: - schema: &367 + schema: &366 type: object properties: - default_workflow_permissions: *149 - can_approve_pull_request_reviews: *150 + default_workflow_permissions: *148 + can_approve_pull_request_reviews: *149 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26030,7 +26062,7 @@ paths: type: number runner_groups: type: array - items: &152 + items: &151 type: object properties: id: @@ -26220,9 +26252,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: &154 + default: &153 value: id: 2 name: octo-runner-group @@ -26258,7 +26290,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - &153 + - &152 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -26270,7 +26302,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -26307,7 +26339,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -26363,9 +26395,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: *154 + default: *153 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26385,7 +26417,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *74 - - *153 + - *152 responses: '204': description: Response @@ -26409,7 +26441,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -26427,9 +26459,9 @@ paths: type: number runners: type: array - items: *127 + items: *126 examples: - default: *155 + default: *154 headers: Link: *66 x-github: @@ -26452,7 +26484,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: - *74 - - *153 + - *152 - *19 - *17 responses: @@ -26470,9 +26502,9 @@ paths: type: number repositories: type: array - items: *156 + items: *155 examples: - default: &202 + default: &201 value: total_count: 1 repositories: @@ -26725,7 +26757,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: - *74 - - *153 + - *152 requestBody: required: true content: @@ -26770,8 +26802,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -26794,8 +26826,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -26819,7 +26851,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -26837,7 +26869,7 @@ paths: type: number runners: type: array - items: &158 + items: &157 title: Self hosted runners description: A self hosted runner type: object @@ -26871,7 +26903,7 @@ paths: type: boolean labels: type: array - items: &161 + items: &160 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -26910,7 +26942,7 @@ paths: - busy - labels examples: - default: &159 + default: &158 value: total_count: 2 runners: @@ -26972,7 +27004,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -27017,8 +27049,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: - *74 - - *153 - - &157 + - *152 + - &156 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -27047,8 +27079,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: - *74 - - *153 - - *157 + - *152 + - *156 responses: '204': description: Response @@ -27096,9 +27128,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -27130,7 +27162,7 @@ paths: application/json: schema: type: array - items: &368 + items: &367 title: Runner Application description: Runner Application type: object @@ -27155,7 +27187,7 @@ paths: - download_url - filename examples: - default: &369 + default: &368 value: - os: osx architecture: x64 @@ -27241,7 +27273,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &370 + '201': &369 description: Response content: application/json: @@ -27251,7 +27283,7 @@ paths: - runner - encoded_jit_config properties: - runner: *158 + runner: *157 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -27314,7 +27346,7 @@ paths: description: Response content: application/json: - schema: &160 + schema: &159 title: Authentication Token description: Authentication Token type: object @@ -27356,7 +27388,7 @@ paths: - token - expires_at examples: - default: &371 + default: &370 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27393,9 +27425,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: &372 + default: &371 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27421,15 +27453,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: &373 + default: &372 value: id: 23 name: MBP @@ -27472,7 +27504,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *74 - - *157 + - *156 responses: '204': description: Response @@ -27499,9 +27531,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: - '200': &162 + '200': &161 description: Response content: application/json: @@ -27515,7 +27547,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -27555,7 +27587,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -27579,7 +27611,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -27604,7 +27636,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -27629,7 +27661,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -27654,9 +27686,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: - *74 - - *157 + - *156 responses: - '200': &374 + '200': &373 description: Response content: application/json: @@ -27670,7 +27702,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -27712,8 +27744,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: - *74 - - *157 - - &375 + - *156 + - &374 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27721,7 +27753,7 @@ paths: schema: type: string responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -27764,7 +27796,7 @@ paths: type: integer secrets: type: array - items: &163 + items: &162 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -27798,7 +27830,7 @@ paths: - updated_at - visibility examples: - default: &169 + default: &168 value: total_count: 3 secrets: @@ -27845,7 +27877,7 @@ paths: description: Response content: application/json: - schema: &170 + schema: &169 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27880,7 +27912,7 @@ paths: - key_id - key examples: - default: &171 + default: &170 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27906,7 +27938,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *74 - - &164 + - &163 name: secret_name description: The name of the secret. in: path @@ -27918,9 +27950,9 @@ paths: description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: &172 + default: &171 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -27949,7 +27981,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28006,7 +28038,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28033,7 +28065,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -28060,7 +28092,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -28078,9 +28110,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: &168 + default: &167 value: total_count: 1 repositories: @@ -28173,7 +28205,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28226,7 +28258,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28260,7 +28292,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28293,7 +28325,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *74 - - &173 + - &172 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)." @@ -28317,7 +28349,7 @@ paths: type: integer variables: type: array - items: &166 + items: &165 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -28365,7 +28397,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &173 value: total_count: 3 variables: @@ -28455,7 +28487,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28481,7 +28513,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *74 - - &167 + - &166 name: name description: The name of the variable. in: path @@ -28493,9 +28525,9 @@ paths: description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: &175 + default: &174 value: name: USERNAME value: octocat @@ -28524,7 +28556,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -28587,7 +28619,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -28614,7 +28646,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -28632,9 +28664,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -28661,7 +28693,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -28711,7 +28743,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -28746,7 +28778,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -28798,9 +28830,9 @@ paths: type: integer secrets: type: array - items: *163 + items: *162 examples: - default: *169 + default: *168 headers: Link: *66 x-github: @@ -28831,9 +28863,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28856,15 +28888,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: *172 + default: *171 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28887,7 +28919,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28944,7 +28976,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28971,7 +29003,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -28998,7 +29030,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -29016,9 +29048,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29042,7 +29074,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -29095,7 +29127,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29129,7 +29161,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29163,7 +29195,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *74 - - *173 + - *172 - *19 responses: '200': @@ -29180,9 +29212,9 @@ paths: type: integer variables: type: array - items: *166 + items: *165 examples: - default: *174 + default: *173 headers: Link: *66 x-github: @@ -29253,7 +29285,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29279,15 +29311,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: *175 + default: *174 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29309,7 +29341,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29372,7 +29404,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -29399,7 +29431,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -29417,9 +29449,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -29446,7 +29478,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29496,7 +29528,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29531,7 +29563,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29698,7 +29730,7 @@ paths: type: integer deployment_records: type: array - items: &176 + items: &175 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -29745,7 +29777,7 @@ paths: required: - total_count examples: - default: &177 + default: &176 value: total_count: 1 deployment_records: @@ -29925,11 +29957,11 @@ paths: type: integer deployment_records: type: array - items: *176 + items: *175 required: - total_count examples: - default: *177 + default: *176 '403': description: Forbidden content: @@ -30181,9 +30213,9 @@ paths: - 3 deployment_records: type: array - items: *176 + items: *175 examples: - default: *177 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30313,12 +30345,12 @@ paths: required: - subject_digests examples: - default: &702 + default: &701 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &703 + withPredicateType: &702 value: subject_digests: - sha256:abc123 @@ -30363,7 +30395,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &704 + default: &703 value: attestations_subject_digests: - sha256:abc: @@ -30696,7 +30728,7 @@ paths: initiator: type: string examples: - default: &401 + default: &400 value: attestations: - bundle: @@ -30915,7 +30947,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &178 + schema: &177 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -30941,7 +30973,7 @@ paths: application/json: schema: type: array - items: &179 + items: &178 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -30972,7 +31004,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &201 + items: &200 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -31049,7 +31081,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &260 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -31185,7 +31217,7 @@ paths: - string - 'null' format: date-time - state: *178 + state: *177 contact_link: description: The contact link of the campaign. type: @@ -31408,9 +31440,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: &180 + default: &179 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -31493,9 +31525,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '404': *6 '422': description: Unprocessable Entity @@ -31573,7 +31605,7 @@ paths: - string - 'null' format: uri - state: *178 + state: *177 examples: default: value: @@ -31583,9 +31615,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '400': description: Bad Request content: @@ -31652,17 +31684,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *74 - - &425 + - &424 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: &188 + schema: &187 type: string description: The name of the tool used to generate the code scanning analysis. - - &426 + - &425 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 @@ -31670,7 +31702,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &189 + schema: &188 type: - string - 'null' @@ -31686,7 +31718,7 @@ paths: be returned. in: query required: false - schema: &428 + schema: &427 type: string description: State of a code scanning alert. enum: @@ -31709,7 +31741,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &428 type: string description: Severity of a code scanning alert. enum: @@ -31738,18 +31770,18 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: &430 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: &429 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &190 + state: &189 type: - string - 'null' @@ -31759,13 +31791,13 @@ paths: - dismissed - fixed - - fixed_at: *186 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: &431 + dismissed_at: *186 + dismissed_reason: &430 type: - string - 'null' @@ -31776,14 +31808,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &432 + dismissed_comment: &431 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &433 + rule: &432 type: object properties: id: @@ -31844,43 +31876,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &434 + tool: &433 type: object properties: - name: *188 + name: *187 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *189 - most_recent_instance: &435 + guid: *188 + most_recent_instance: &434 type: object properties: - ref: &427 + ref: &426 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &445 + analysis_key: &444 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: &446 + environment: &445 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: &447 + category: &446 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: *190 + state: *189 commit_sha: type: string message: @@ -31894,7 +31926,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: &448 + location: &447 type: object description: Describe a region within a file for the alert. properties: @@ -31915,7 +31947,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: &449 + items: &448 type: - string - 'null' @@ -32553,7 +32585,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32581,9 +32613,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *191 examples: - default: *193 + default: *192 '304': *35 '403': *27 '404': *6 @@ -32672,7 +32704,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 '304': *35 '403': *27 '404': *6 @@ -33117,7 +33149,7 @@ paths: default: value: default_for_new_repos: all - configuration: *191 + configuration: *190 '403': *27 '404': *6 x-github: @@ -33170,13 +33202,13 @@ paths: application/json: schema: type: array - items: *194 + items: *193 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *195 + repository: *194 '403': *27 '404': *6 x-github: @@ -33216,7 +33248,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &250 type: object title: Codespace description: A codespace. @@ -33247,11 +33279,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *156 + repository: *155 machine: anyOf: - type: 'null' - - &461 + - &460 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -33538,7 +33570,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &251 value: total_count: 3 codespaces: @@ -34162,7 +34194,7 @@ paths: type: integer secrets: type: array - items: &196 + items: &195 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -34203,7 +34235,7 @@ paths: - updated_at - visibility examples: - default: &462 + default: &461 value: total_count: 2 secrets: @@ -34241,7 +34273,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &462 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34276,7 +34308,7 @@ paths: - key_id - key examples: - default: &464 + default: &463 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34300,15 +34332,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *196 + schema: *195 examples: - default: &466 + default: &465 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34336,7 +34368,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -34391,7 +34423,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -34418,7 +34450,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -34444,7 +34476,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -34462,9 +34494,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '404': *6 x-github: githubCloudOnly: false @@ -34487,7 +34519,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -34538,7 +34570,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -34572,7 +34604,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -34642,7 +34674,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &197 + items: &196 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -35039,9 +35071,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &198 + default: &197 summary: Example response for an organization copilot space value: id: 84 @@ -35146,9 +35178,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 x-github: @@ -35277,9 +35309,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 '422': *15 @@ -35362,7 +35394,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &199 + items: &198 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -35587,7 +35619,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -35717,7 +35749,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -35868,7 +35900,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &200 + items: &199 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -36012,7 +36044,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36028,7 +36060,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36083,7 +36115,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36152,7 +36184,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36394,7 +36426,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &253 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -36412,7 +36444,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *201 + - *200 - *67 type: - 'null' @@ -37025,12 +37057,12 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 required: - total_count - repositories examples: - default: *202 + default: *201 '500': *53 '401': *23 '403': *27 @@ -37116,7 +37148,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -37150,7 +37182,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -37365,7 +37397,7 @@ paths: application/json: schema: type: array - items: &334 + items: &333 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -37680,7 +37712,7 @@ paths: - date additionalProperties: true examples: - default: &335 + default: &334 value: - date: '2024-06-24' total_active_users: 24 @@ -37782,7 +37814,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &336 + '422': &335 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -38001,12 +38033,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *74 + - *202 - *203 - *204 - *205 - *206 - *207 - - *208 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -38036,7 +38068,7 @@ paths: enum: - patch - deployment - - *209 + - *208 - name: runtime_risk in: query description: |- @@ -38045,8 +38077,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *209 - *210 - - *211 - *60 - *45 - *46 @@ -38058,9 +38090,9 @@ paths: application/json: schema: type: array - items: *212 + items: *211 examples: - default: *213 + default: *212 '304': *35 '400': *14 '403': *27 @@ -38109,9 +38141,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *213 examples: - default: *215 + default: *214 '403': *27 '404': *6 x-github: @@ -38275,7 +38307,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &215 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38354,7 +38386,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &493 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38373,7 +38405,7 @@ paths: - key_id - key examples: - default: &495 + default: &494 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38397,13 +38429,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *216 + schema: *215 examples: default: value: @@ -38432,7 +38464,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -38487,7 +38519,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -38512,7 +38544,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -38537,7 +38569,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -38555,9 +38587,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38579,7 +38611,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -38630,7 +38662,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -38662,7 +38694,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -38700,7 +38732,7 @@ paths: application/json: schema: type: array - items: &263 + items: &262 title: Package description: A software package type: object @@ -38753,7 +38785,7 @@ paths: repository: anyOf: - type: 'null' - - *156 + - *155 created_at: type: string format: date-time @@ -38771,7 +38803,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &263 value: - id: 197 name: hello_docker @@ -38941,7 +38973,7 @@ paths: application/json: schema: type: array - items: &240 + items: &239 title: Organization Invitation description: Organization Invitation type: object @@ -38995,7 +39027,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &240 value: - id: 1 login: monalisa @@ -39062,7 +39094,7 @@ paths: application/json: schema: type: array - items: &217 + items: &216 title: Org Hook description: Org Hook type: object @@ -39247,9 +39279,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: &218 + default: &217 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39297,7 +39329,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *74 - - &219 + - &218 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. @@ -39310,9 +39342,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: *218 + default: *217 '404': *6 x-github: githubCloudOnly: false @@ -39340,7 +39372,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -39386,7 +39418,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: default: value: @@ -39428,7 +39460,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -39456,7 +39488,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 responses: '200': description: Response @@ -39487,7 +39519,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -39538,10 +39570,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -39549,9 +39581,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -39577,16 +39609,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -39612,7 +39644,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '202': *37 @@ -39642,7 +39674,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -39665,7 +39697,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *74 - - &230 + - &229 name: actor_type in: path description: The type of the actor @@ -39678,14 +39710,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &230 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &225 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`.' @@ -39693,7 +39725,7 @@ paths: required: true schema: type: string - - &227 + - &226 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) @@ -39788,12 +39820,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *74 + - *225 - *226 - - *227 - *19 - *17 - *60 - - &236 + - &235 name: sort description: The property to sort the results by. in: query @@ -39872,14 +39904,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *74 + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: &228 + schema: &227 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39895,7 +39927,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &228 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39916,23 +39948,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *74 - - &232 + - &231 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -39951,18 +39983,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *74 + - *225 - *226 - - *227 + - *229 - *230 - - *231 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -39980,9 +40012,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *74 + - *225 - *226 - - *227 - - &233 + - &232 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39995,7 +40027,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &233 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40011,7 +40043,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &234 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40048,18 +40080,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40077,19 +40109,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *74 + - *229 - *230 - - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40107,13 +40139,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - *19 - *17 - *60 - - *236 + - *235 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40197,7 +40229,7 @@ paths: application/json: schema: *20 examples: - default: &532 + default: &531 value: id: 1 account: @@ -40363,12 +40395,12 @@ paths: application/json: schema: anyOf: - - &238 + - &237 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &236 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40396,7 +40428,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &238 value: limit: collaborators_only origin: organization @@ -40425,13 +40457,13 @@ paths: required: true content: application/json: - schema: &533 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *236 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40456,9 +40488,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *239 + default: *238 '422': *15 x-github: githubCloudOnly: false @@ -40534,9 +40566,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 '404': *6 @@ -40613,7 +40645,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *239 examples: default: value: @@ -40668,7 +40700,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *74 - - &242 + - &241 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40699,7 +40731,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *74 - - *242 + - *241 - *17 - *19 responses: @@ -40709,9 +40741,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: &262 + default: &261 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40754,7 +40786,7 @@ paths: application/json: schema: type: array - items: &243 + items: &242 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -40997,9 +41029,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: &244 + default: &243 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41055,7 +41087,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *74 - - &245 + - &244 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41165,9 +41197,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: *244 + default: *243 '404': *6 '422': *7 x-github: @@ -41192,7 +41224,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *74 - - *245 + - *244 responses: '204': *59 '404': *6 @@ -41222,7 +41254,7 @@ paths: application/json: schema: type: array - items: *246 + items: *245 examples: default: value: @@ -41310,9 +41342,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: &247 + default: &246 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41345,7 +41377,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *74 - - &248 + - &247 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41401,9 +41433,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: *247 + default: *246 '404': *6 '422': *7 x-github: @@ -41428,7 +41460,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *74 - - *248 + - *247 responses: '204': description: Response @@ -41491,7 +41523,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: type description: Can be the name of an issue type. in: query @@ -41522,7 +41554,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -41682,9 +41714,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -41711,7 +41743,7 @@ paths: parameters: - *74 - *70 - - &253 + - &252 name: codespace_name in: path required: true @@ -41746,15 +41778,15 @@ paths: parameters: - *74 - *70 - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: &460 + default: &459 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41934,7 +41966,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *253 examples: default: value: @@ -42010,7 +42042,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &254 title: Org Membership description: Org Membership type: object @@ -42079,7 +42111,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &255 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42180,9 +42212,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *255 '422': *15 '403': *27 '451': *15 @@ -42255,7 +42287,7 @@ paths: application/json: schema: type: array - items: &257 + items: &256 title: Migration description: A migration. type: object @@ -42593,7 +42625,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -42772,7 +42804,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *74 - - &258 + - &257 name: migration_id description: The unique identifier of the migration. in: path @@ -42800,7 +42832,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -42970,7 +43002,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '302': description: Response @@ -42992,7 +43024,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '204': description: Response @@ -43016,8 +43048,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *74 - - *258 - - &684 + - *257 + - &683 name: repo_name description: repo_name parameter in: path @@ -43045,7 +43077,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *74 - - *258 + - *257 - *17 - *19 responses: @@ -43099,7 +43131,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &259 title: Organization Role description: Organization roles type: object @@ -43276,7 +43308,7 @@ paths: parameters: - *74 - *76 - - &259 + - &258 name: role_id description: The unique identifier of the role. in: path @@ -43313,7 +43345,7 @@ paths: parameters: - *74 - *76 - - *259 + - *258 responses: '204': description: Response @@ -43366,7 +43398,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -43398,7 +43430,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -43427,13 +43459,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *74 - - *259 + - *258 responses: '200': description: Response content: application/json: - schema: *260 + schema: *259 examples: default: value: @@ -43484,7 +43516,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -43563,7 +43595,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 type: description: The ownership type of the team type: string @@ -43596,7 +43628,7 @@ paths: - type - parent examples: - default: *262 + default: *261 headers: Link: *66 '404': @@ -43626,7 +43658,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -43655,7 +43687,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *260 name: type: - string @@ -43965,7 +43997,7 @@ paths: - nuget - container - *74 - - &685 + - &684 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44001,12 +44033,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *264 + default: *263 '403': *27 '401': *23 - '400': &687 + '400': &686 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44028,7 +44060,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &264 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 @@ -44046,7 +44078,7 @@ paths: - docker - nuget - container - - &266 + - &265 name: package_name description: The name of the package. in: path @@ -44059,7 +44091,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *262 examples: default: value: @@ -44111,8 +44143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 responses: '204': @@ -44145,8 +44177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - name: token description: package token @@ -44179,8 +44211,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: + - *264 - *265 - - *266 - *74 - *19 - *17 @@ -44201,7 +44233,7 @@ paths: application/json: schema: type: array - items: &267 + items: &266 title: Package Version description: A version of a software package type: object @@ -44336,10 +44368,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - &268 + - &267 name: package_version_id description: Unique identifier of the package version. in: path @@ -44351,7 +44383,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -44387,10 +44419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -44422,10 +44454,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -44455,7 +44487,7 @@ paths: - *74 - *17 - *19 - - &269 + - &268 name: sort description: The property by which to sort the results. in: query @@ -44466,7 +44498,7 @@ paths: - created_at default: created_at - *60 - - &270 + - &269 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -44478,7 +44510,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &271 + - &270 name: repository description: The name of the repository to use to filter the results. in: query @@ -44487,7 +44519,7 @@ paths: type: string examples: - Hello-World - - &272 + - &271 name: permission description: The permission to use to filter the results. in: query @@ -44496,7 +44528,7 @@ paths: type: string examples: - issues_read - - &273 + - &272 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) @@ -44506,7 +44538,7 @@ paths: schema: type: string format: date-time - - &274 + - &273 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) @@ -44516,7 +44548,7 @@ paths: schema: type: string format: date-time - - &275 + - &274 name: token_id description: The ID of the token in: query @@ -44833,9 +44865,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: &276 + default: &275 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44972,14 +45004,14 @@ paths: - *74 - *17 - *19 - - *269 + - *268 - *60 + - *269 - *270 - *271 - *272 - *273 - *274 - - *275 responses: '500': *53 '422': *15 @@ -45261,9 +45293,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 x-github: @@ -45305,7 +45337,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &276 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45822,7 +45854,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &277 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -45914,15 +45946,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *276 examples: - default: *278 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -45945,7 +45977,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -46134,7 +46166,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -46174,7 +46206,7 @@ paths: application/json: schema: type: array - items: &279 + items: &278 title: Projects v2 Project description: A projects v2 project type: object @@ -46248,7 +46280,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &771 + - &770 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46333,7 +46365,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &279 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46436,7 +46468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &280 name: project_number description: The project's number. in: path @@ -46449,9 +46481,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -46474,7 +46506,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -46508,7 +46540,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &285 title: Projects v2 Item description: An item belonging to a project type: object @@ -46522,7 +46554,7 @@ paths: content: oneOf: - *82 - - &475 + - &474 title: Pull Request Simple description: Pull Request Simple type: object @@ -46642,7 +46674,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -46681,7 +46713,7 @@ paths: items: *4 requested_teams: type: array - items: *201 + items: *200 head: type: object properties: @@ -46725,7 +46757,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &282 title: Link description: Hypermedia Link type: object @@ -46734,13 +46766,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -46751,7 +46783,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: &579 + auto_merge: &578 title: Auto merge description: The status of auto merging a pull request. type: @@ -46851,7 +46883,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &284 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46895,7 +46927,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &286 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -46969,7 +47001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *280 - *74 - *17 - *45 @@ -46981,7 +47013,7 @@ paths: application/json: schema: type: array - items: &284 + items: &283 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47134,7 +47166,7 @@ paths: - updated_at - project_url examples: - default: &708 + default: &707 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47264,7 +47296,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *280 - *74 requestBody: required: true @@ -47311,7 +47343,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &709 + items: &708 type: object properties: name: @@ -47348,7 +47380,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &710 + iteration_configuration: &709 type: object description: The configuration for iteration fields. properties: @@ -47398,7 +47430,7 @@ paths: value: name: Due date data_type: date - single_select_field: &711 + single_select_field: &710 summary: Create a single select field value: name: Priority @@ -47425,7 +47457,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &712 + iteration_field: &711 summary: Create an iteration field value: name: Sprint @@ -47449,9 +47481,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *283 examples: - text_field: &713 + text_field: &712 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47460,7 +47492,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: &714 + number_field: &713 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47469,7 +47501,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: &715 + date_field: &714 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47478,7 +47510,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: &716 + single_select_field: &715 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47512,7 +47544,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &717 + iteration_field: &716 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47557,8 +47589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &718 + - *280 + - &717 name: field_id description: The unique identifier of the field. in: path @@ -47571,9 +47603,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: &719 + default: &718 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47629,7 +47661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - 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) @@ -47662,7 +47694,7 @@ paths: application/json: schema: type: array - items: &288 + items: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -47679,7 +47711,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *284 content: type: - object @@ -47729,7 +47761,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &288 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -48427,7 +48459,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -48497,22 +48529,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -48532,9 +48564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - - &290 + - &289 name: item_id description: The unique identifier of the project item. in: path @@ -48560,9 +48592,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -48583,9 +48615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -48658,13 +48690,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -48684,9 +48716,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 responses: '204': description: Response @@ -48710,7 +48742,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true content: @@ -48784,7 +48816,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &699 + schema: &698 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48888,7 +48920,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &290 value: id: 1 number: 1 @@ -48934,10 +48966,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -48965,9 +48997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *280 - *74 - - &720 + - &719 name: view_number description: The number that identifies the project view. in: path @@ -48999,9 +49031,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -49034,7 +49066,7 @@ paths: application/json: schema: type: array - items: &292 + items: &291 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49112,7 +49144,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &292 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49172,7 +49204,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *291 minItems: 1 maxItems: 100 required: @@ -49202,9 +49234,9 @@ paths: application/json: schema: type: array - items: *292 + items: *291 examples: - default: *293 + default: *292 '403': *27 '404': *6 x-github: @@ -49226,7 +49258,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *74 - - &294 + - &293 name: custom_property_name description: The custom property name in: path @@ -49238,9 +49270,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: &295 + default: &294 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49275,7 +49307,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 requestBody: required: true content: @@ -49355,9 +49387,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: *295 + default: *294 '403': *27 '404': *6 x-github: @@ -49381,7 +49413,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 responses: '204': *59 '403': *27 @@ -49445,7 +49477,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &295 title: Custom Property Value description: Custom property name and associated value type: object @@ -49535,7 +49567,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - repository_names - properties @@ -49725,9 +49757,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 x-github: @@ -49930,7 +49962,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &343 title: Full Repository description: Full Repository type: object @@ -50400,7 +50432,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &480 + code_of_conduct: &479 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -50430,7 +50462,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *296 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -50514,7 +50546,7 @@ paths: - network_count - subscribers_count examples: - default: &346 + default: &345 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51035,7 +51067,7 @@ paths: - *74 - *17 - *19 - - &601 + - &600 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51054,7 +51086,7 @@ paths: application/json: schema: type: array - items: &324 + items: &323 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51089,7 +51121,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &299 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51102,7 +51134,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &300 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -51174,7 +51206,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &297 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -51198,7 +51230,7 @@ paths: match. items: type: string - - &302 + - &301 title: Organization ruleset conditions type: object description: |- @@ -51212,7 +51244,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -51246,7 +51278,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -51268,7 +51300,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -51281,7 +51313,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &298 title: Repository ruleset property targeting definition type: object @@ -51314,7 +51346,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *298 required: - repository_property type: @@ -51322,12 +51354,12 @@ paths: - object rules: type: array - items: &602 + items: &601 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &302 title: creation description: Only allow users with bypass permission to create matching refs. @@ -51339,7 +51371,7 @@ paths: type: string enum: - creation - - &304 + - &303 title: update description: Only allow users with bypass permission to update matching refs. @@ -51360,7 +51392,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &304 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -51372,7 +51404,7 @@ paths: type: string enum: - deletion - - &306 + - &305 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -51384,7 +51416,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &599 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51462,7 +51494,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &306 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -51486,7 +51518,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &307 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -51498,7 +51530,7 @@ paths: type: string enum: - required_signatures - - &309 + - &308 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -51604,7 +51636,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &309 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -51652,7 +51684,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &310 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -51664,7 +51696,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &311 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -51701,7 +51733,7 @@ paths: required: - operator - pattern - - &313 + - &312 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -51738,7 +51770,7 @@ paths: required: - operator - pattern - - &314 + - &313 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -51775,7 +51807,7 @@ paths: required: - operator - pattern - - &315 + - &314 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -51812,7 +51844,7 @@ paths: required: - operator - pattern - - &316 + - &315 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -51849,7 +51881,7 @@ paths: required: - operator - pattern - - &321 + - &320 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -51899,7 +51931,7 @@ paths: - repository_id required: - workflows - - &322 + - &321 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -51960,7 +51992,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &322 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -51986,7 +52018,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &317 + - &316 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52011,7 +52043,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &317 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52035,7 +52067,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &318 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52058,7 +52090,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &319 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -52156,20 +52188,21 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &325 title: Repository Rule type: object description: A repository rule. oneOf: + - *302 - *303 - *304 - *305 @@ -52190,7 +52223,6 @@ paths: - *320 - *321 - *322 - - *323 required: - name - enforcement @@ -52228,9 +52260,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &325 + default: &324 value: id: 21 name: super cool ruleset @@ -52286,7 +52318,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *74 - - &603 + - &602 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 @@ -52301,7 +52333,7 @@ paths: in: query schema: type: string - - &604 + - &603 name: time_period description: |- The time period to filter by. @@ -52317,14 +52349,14 @@ paths: - week - month default: day - - &605 + - &604 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 - - &606 + - &605 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52337,7 +52369,7 @@ paths: - bypass - all default: all - - &607 + - &606 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. @@ -52360,7 +52392,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &607 title: Rule Suites description: Response type: array @@ -52416,7 +52448,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &609 + default: &608 value: - id: 21 actor_id: 12 @@ -52460,7 +52492,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &610 + - &609 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52476,7 +52508,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &610 title: Rule Suite description: Response type: object @@ -52583,7 +52615,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &612 + default: &611 value: id: 21 actor_id: 12 @@ -52656,9 +52688,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '500': *53 put: @@ -52702,16 +52734,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *325 examples: default: value: @@ -52746,9 +52778,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '422': *15 '500': *53 @@ -52806,7 +52838,7 @@ paths: application/json: schema: type: array - items: &327 + items: &326 title: Ruleset version type: object description: The historical version of a ruleset @@ -52830,7 +52862,7 @@ paths: type: string format: date-time examples: - default: &614 + default: &613 value: - version_id: 3 actor: @@ -52883,9 +52915,9 @@ paths: description: Response content: application/json: - schema: &615 + schema: &614 allOf: - - *327 + - *326 - type: object required: - state @@ -52955,7 +52987,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &616 + - &615 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52966,7 +52998,7 @@ paths: enum: - open - resolved - - &617 + - &616 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52976,7 +53008,7 @@ paths: required: false schema: type: string - - &618 + - &617 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52987,7 +53019,7 @@ paths: required: false schema: type: string - - &619 + - &618 name: exclude_providers in: query description: |- @@ -52998,7 +53030,7 @@ paths: required: false schema: type: string - - &620 + - &619 name: providers in: query description: |- @@ -53009,7 +53041,7 @@ paths: required: false schema: type: string - - &621 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53018,7 +53050,7 @@ paths: required: false schema: type: string - - &622 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53037,7 +53069,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &623 + - &622 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. @@ -53052,7 +53084,7 @@ paths: - *60 - *19 - *17 - - &624 + - &623 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 @@ -53062,7 +53094,7 @@ paths: required: false schema: type: string - - &625 + - &624 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 @@ -53072,7 +53104,7 @@ paths: required: false schema: type: string - - &626 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53081,7 +53113,7 @@ paths: required: false schema: type: string - - &627 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53090,7 +53122,7 @@ paths: schema: type: boolean default: false - - &628 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53099,7 +53131,7 @@ paths: schema: type: boolean default: false - - &629 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53108,7 +53140,7 @@ paths: schema: type: boolean default: false - - &630 + - &629 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53129,27 +53161,27 @@ paths: items: type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &631 + state: &630 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: &632 + resolution: &631 type: - string - 'null' @@ -53268,14 +53300,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &633 + - &632 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &635 + - &634 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53339,7 +53371,7 @@ paths: - blob_url - commit_sha - commit_url - - &636 + - &635 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. @@ -53400,7 +53432,7 @@ paths: - page_url - commit_sha - commit_url - - &637 + - &636 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53422,7 +53454,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &638 + - &637 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53444,7 +53476,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &639 + - &638 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53466,7 +53498,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &640 + - &639 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53481,7 +53513,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &641 + - &640 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53496,7 +53528,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &642 + - &641 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53511,7 +53543,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &643 + - &642 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. @@ -53533,7 +53565,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &644 + - &643 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. @@ -53555,7 +53587,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &645 + - &644 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. @@ -53577,7 +53609,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &646 + - &645 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. @@ -53599,7 +53631,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &647 + - &646 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 @@ -53860,7 +53892,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &329 + pattern_config_version: &328 type: - string - 'null' @@ -53870,7 +53902,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &328 + items: &327 type: object properties: token_type: @@ -53939,7 +53971,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *328 + items: *327 examples: default: value: @@ -53996,7 +54028,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *328 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -54022,7 +54054,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *328 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -54120,7 +54152,7 @@ paths: application/json: schema: type: array - items: &651 + items: &650 description: A repository security advisory. type: object properties: @@ -54343,7 +54375,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 credits_detailed: type: - array @@ -54354,7 +54386,7 @@ paths: type: object properties: user: *4 - type: *330 + type: *329 state: type: string description: The state of the user's acceptance of the @@ -54380,7 +54412,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *201 + items: *200 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -54417,7 +54449,7 @@ paths: - private_fork additionalProperties: false examples: - default: &652 + default: &651 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54804,7 +54836,7 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: default: value: @@ -55024,9 +55056,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55095,7 +55127,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -55118,7 +55150,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -55159,7 +55191,7 @@ paths: type: integer network_configurations: type: array - items: &331 + items: &330 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -55312,9 +55344,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: &332 + default: &331 value: id: 123456789ABCDEF name: My network configuration @@ -55343,7 +55375,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - &333 + - &332 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -55355,9 +55387,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 headers: Link: *66 x-github: @@ -55379,7 +55411,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *333 + - *332 requestBody: required: true content: @@ -55432,9 +55464,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55454,7 +55486,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *74 - - *333 + - *332 responses: '204': description: Response @@ -55599,13 +55631,13 @@ paths: application/json: schema: type: array - items: *334 + items: *333 examples: - default: *335 + default: *334 '500': *53 '403': *27 '404': *6 - '422': *336 + '422': *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55645,9 +55677,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '403': *27 @@ -55733,7 +55765,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &336 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -55807,7 +55839,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 members_count: type: integer examples: @@ -56132,7 +56164,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &337 value: id: 1 node_id: MDQ6VGVhbTE= @@ -56209,9 +56241,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -56296,16 +56328,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -56335,7 +56367,7 @@ paths: responses: '204': description: Response - '422': &339 + '422': &338 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -56369,12 +56401,12 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 - '422': *339 + '422': *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56456,7 +56488,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &339 title: Team Membership description: Team Membership type: object @@ -56484,7 +56516,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &667 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56547,9 +56579,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: &668 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56623,9 +56655,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 x-github: @@ -56656,14 +56688,14 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &669 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -57298,8 +57330,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 requestBody: required: false content: @@ -57346,8 +57378,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '204': description: Response @@ -57382,9 +57414,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: &670 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -57538,7 +57570,7 @@ paths: resources: type: object properties: - core: &343 + core: &342 title: Rate Limit type: object properties: @@ -57555,17 +57587,17 @@ paths: - remaining - reset - used - graphql: *343 - search: *343 - code_search: *343 - source_import: *343 - integration_manifest: *343 - code_scanning_upload: *343 - actions_runner_registration: *343 - scim: *343 - dependency_snapshots: *343 - dependency_sbom: *343 - code_scanning_autofix: *343 + graphql: *342 + search: *342 + code_search: *342 + source_import: *342 + integration_manifest: *342 + code_scanning_upload: *342 + actions_runner_registration: *342 + scim: *342 + dependency_snapshots: *342 + dependency_sbom: *342 + code_scanning_autofix: *342 required: - core - search @@ -57667,14 +57699,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *344 + schema: *343 examples: default-response: summary: Default response @@ -58178,7 +58210,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58196,8 +58228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -58496,10 +58528,10 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 - '307': &347 + default: *345 + '307': &346 description: Temporary Redirect content: application/json: @@ -58528,8 +58560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -58551,7 +58583,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *347 + '307': *346 '404': *6 '409': *52 x-github: @@ -58575,11 +58607,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &379 + - &378 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -58602,7 +58634,7 @@ paths: type: integer artifacts: type: array - items: &348 + items: &347 title: Artifact description: An artifact type: object @@ -58697,7 +58729,7 @@ paths: - expires_at - updated_at examples: - default: &380 + default: &379 value: total_count: 2 artifacts: @@ -58758,9 +58790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: + - *340 - *341 - - *342 - - &349 + - &348 name: artifact_id description: The unique identifier of the artifact. in: path @@ -58772,7 +58804,7 @@ paths: description: Response content: application/json: - schema: *348 + schema: *347 examples: default: value: @@ -58810,9 +58842,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 responses: '204': description: Response @@ -58836,9 +58868,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 - name: archive_format in: path required: true @@ -58848,11 +58880,11 @@ paths: '302': description: Response headers: - Location: &497 + Location: &496 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': &536 + '410': &535 description: Gone content: application/json: @@ -58877,14 +58909,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &349 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -58918,13 +58950,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *349 examples: selected_actions: *40 responses: @@ -58953,14 +58985,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &351 + schema: &350 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -58994,13 +59026,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *351 + schema: *350 examples: selected_actions: *42 responses: @@ -59031,14 +59063,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *352 + schema: *351 examples: default: value: @@ -59064,11 +59096,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &353 + - &352 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 @@ -59102,7 +59134,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &353 title: Repository actions caches description: Repository actions caches type: object @@ -59152,7 +59184,7 @@ paths: - total_count - actions_caches examples: - default: &355 + default: &354 value: total_count: 1 actions_caches: @@ -59184,23 +59216,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: + - *340 - *341 - - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *353 + - *352 responses: '200': description: Response content: application/json: - schema: *354 + schema: *353 examples: - default: *355 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59220,8 +59252,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: + - *340 - *341 - - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59250,8 +59282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *46 responses: @@ -59334,8 +59366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: + - *340 - *341 - - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -59491,9 +59523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - &356 + - &355 name: job_id description: The unique identifier of the job. in: path @@ -59505,7 +59537,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &382 title: Job description: Information of a job execution in a workflow run type: object @@ -59852,9 +59884,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 responses: '302': description: Response @@ -59882,9 +59914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 requestBody: required: false content: @@ -59911,7 +59943,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -59935,8 +59967,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: + - *340 - *341 - - *342 responses: '200': description: Status response @@ -59995,8 +60027,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -60035,7 +60067,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -60064,8 +60096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -60083,7 +60115,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &384 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -60104,7 +60136,7 @@ paths: - created_at - updated_at examples: - default: &386 + default: &385 value: total_count: 2 secrets: @@ -60137,9 +60169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -60156,7 +60188,7 @@ paths: type: integer variables: type: array - items: &387 + items: &386 title: Actions Variable type: object properties: @@ -60190,7 +60222,7 @@ paths: - created_at - updated_at examples: - default: &388 + default: &387 value: total_count: 2 variables: @@ -60223,8 +60255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -60233,12 +60265,12 @@ paths: schema: type: object properties: - enabled: &358 + enabled: &357 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *141 - selected_actions_url: *357 - sha_pinning_required: *142 + allowed_actions: *140 + selected_actions_url: *356 + sha_pinning_required: *141 required: - enabled examples: @@ -60266,8 +60298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -60278,9 +60310,9 @@ paths: schema: type: object properties: - enabled: *358 - allowed_actions: *141 - sha_pinning_required: *142 + enabled: *357 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled examples: @@ -60310,14 +60342,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &359 + schema: &358 type: object properties: access_level: @@ -60334,7 +60366,7 @@ paths: required: - access_level examples: - default: &360 + default: &359 value: access_level: organization x-github: @@ -60358,15 +60390,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *359 + schema: *358 examples: - default: *360 + default: *359 responses: '204': description: Response @@ -60390,14 +60422,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *361 + schema: *360 examples: default: value: @@ -60421,8 +60453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Empty response for successful settings update @@ -60432,7 +60464,7 @@ paths: required: true content: application/json: - schema: *362 + schema: *361 examples: default: summary: Set retention days @@ -60456,16 +60488,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *143 + schema: *142 examples: - default: *363 + default: *362 '404': *6 x-github: enabledForGitHubApps: true @@ -60484,8 +60516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -60495,7 +60527,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -60519,16 +60551,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *364 + schema: *363 examples: - default: *144 + default: *143 '403': *27 '404': *6 x-github: @@ -60548,15 +60580,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *365 + schema: *364 examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -60580,16 +60612,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *146 + schema: *145 examples: - default: *147 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -60608,8 +60640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -60617,9 +60649,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -60641,16 +60673,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *366 + schema: *365 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60671,8 +60703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Success response @@ -60683,9 +60715,9 @@ paths: required: true content: application/json: - schema: *367 + schema: *366 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60712,8 +60744,8 @@ paths: in: query schema: type: string + - *340 - *341 - - *342 - *17 - *19 responses: @@ -60731,9 +60763,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -60757,8 +60789,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -60766,9 +60798,9 @@ paths: application/json: schema: type: array - items: *368 + items: *367 examples: - default: *369 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60790,8 +60822,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -60834,7 +60866,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *370 + '201': *369 '404': *6 '422': *7 '409': *52 @@ -60865,16 +60897,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *371 + default: *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60902,16 +60934,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *372 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60933,17 +60965,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: *373 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60964,9 +60996,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '204': description: Response @@ -60992,11 +61024,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *162 + '200': *161 '404': *6 x-github: githubCloudOnly: false @@ -61018,9 +61050,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -61044,7 +61076,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61068,9 +61100,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -61095,7 +61127,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61119,11 +61151,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *374 + '200': *373 '404': *6 x-github: githubCloudOnly: false @@ -61150,12 +61182,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: + - *340 - *341 - - *342 - - *157 - - *375 + - *156 + - *374 responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -61181,9 +61213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: + - *340 - *341 - - *342 - - &391 + - &390 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. @@ -61191,7 +61223,7 @@ paths: required: false schema: type: string - - &392 + - &391 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61199,7 +61231,7 @@ paths: required: false schema: type: string - - &393 + - &392 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61208,7 +61240,7 @@ paths: required: false schema: type: string - - &394 + - &393 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 @@ -61235,7 +61267,7 @@ paths: - pending - *17 - *19 - - &395 + - &394 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)." @@ -61244,7 +61276,7 @@ paths: schema: type: string format: date-time - - &376 + - &375 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61253,13 +61285,13 @@ paths: schema: type: boolean default: false - - &396 + - &395 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &397 + - &396 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61282,7 +61314,7 @@ paths: type: integer workflow_runs: type: array - items: &377 + items: &376 title: Workflow Run description: An invocation of a workflow type: object @@ -61460,7 +61492,7 @@ paths: head_commit: anyOf: - type: 'null' - - &421 + - &420 title: Simple Commit description: A commit. type: object @@ -61534,8 +61566,8 @@ paths: - timestamp - author - committer - repository: *156 - head_repository: *156 + repository: *155 + head_repository: *155 head_repository_id: type: integer examples: @@ -61575,7 +61607,7 @@ paths: - workflow_url - pull_requests examples: - default: &398 + default: &397 value: total_count: 1 workflow_runs: @@ -61811,24 +61843,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: + - *340 - *341 - - *342 - - &378 + - &377 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: &381 + default: &380 value: id: 30433642 name: Build @@ -62069,9 +62101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -62094,9 +62126,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -62224,15 +62256,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: + - *340 - *341 - - *342 - - *378 + - *377 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -62259,12 +62291,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *19 - - *379 + - *378 - *60 responses: '200': @@ -62281,9 +62313,9 @@ paths: type: integer artifacts: type: array - items: *348 + items: *347 examples: - default: *380 + default: *379 headers: Link: *66 x-github: @@ -62307,25 +62339,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - &382 + - *377 + - &381 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: *381 + default: *380 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62348,10 +62380,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 - *17 - *19 responses: @@ -62369,9 +62401,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: &384 + default: &383 value: total_count: 1 jobs: @@ -62484,10 +62516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 responses: '302': description: Response @@ -62515,15 +62547,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -62563,9 +62595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *45 - *46 @@ -62742,9 +62774,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: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -62811,15 +62843,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -62846,9 +62878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - 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 @@ -62878,9 +62910,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: *384 + default: *383 headers: Link: *66 x-github: @@ -62905,9 +62937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '302': description: Response @@ -62934,9 +62966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -62963,9 +62995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -63034,7 +63066,7 @@ paths: items: type: object properties: - type: &504 + type: &503 type: string description: The type of reviewer. enum: @@ -63045,7 +63077,7 @@ paths: reviewer: anyOf: - *4 - - *201 + - *200 required: - environment - wait_timer @@ -63120,9 +63152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -63172,7 +63204,7 @@ paths: application/json: schema: type: array - items: &499 + items: &498 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -63284,7 +63316,7 @@ paths: - created_at - updated_at examples: - default: &500 + default: &499 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63340,9 +63372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -63364,7 +63396,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63387,9 +63419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -63411,7 +63443,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63443,9 +63475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -63582,8 +63614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -63601,9 +63633,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -63628,16 +63660,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63659,17 +63691,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: &399 + default: &398 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -63695,9 +63727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -63728,7 +63760,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63754,9 +63786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -63781,9 +63813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -63800,9 +63832,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -63825,8 +63857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -63853,7 +63885,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63878,17 +63910,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: &400 + default: &399 value: name: USERNAME value: octocat @@ -63914,9 +63946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -63958,9 +63990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -63985,8 +64017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64004,7 +64036,7 @@ paths: type: integer workflows: type: array - items: &389 + items: &388 title: Workflow description: A GitHub Actions workflow type: object @@ -64122,9 +64154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: + - *340 - *341 - - *342 - - &390 + - &389 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -64139,7 +64171,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *388 examples: default: value: @@ -64172,9 +64204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -64199,9 +64231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '200': description: Response including the workflow run ID and URLs. @@ -64281,9 +64313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -64310,19 +64342,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: + - *340 - *341 - - *342 + - *389 - *390 - *391 - *392 - *393 - - *394 - *17 - *19 + - *394 + - *375 - *395 - - *376 - *396 - - *397 responses: '200': description: Response @@ -64338,9 +64370,9 @@ paths: type: integer workflow_runs: type: array - items: *377 + items: *376 examples: - default: *398 + default: *397 headers: Link: *66 x-github: @@ -64372,9 +64404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '200': description: Response @@ -64435,8 +64467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: + - *340 - *341 - - *342 - *60 - *17 - *45 @@ -64609,8 +64641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64628,9 +64660,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -64654,9 +64686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -64673,9 +64705,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -64700,8 +64732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64719,9 +64751,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -64746,16 +64778,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64777,17 +64809,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64809,9 +64841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -64842,7 +64874,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64868,9 +64900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -64895,9 +64927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -64914,9 +64946,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -64939,8 +64971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -64967,7 +64999,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64992,17 +65024,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65023,9 +65055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -65067,9 +65099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -65090,8 +65122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65128,8 +65160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: + - *340 - *341 - - *342 - name: assignee in: path required: true @@ -65165,8 +65197,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -65276,8 +65308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: + - *340 - *341 - - *342 - *17 - *45 - *46 @@ -65318,7 +65350,7 @@ paths: initiator: type: string examples: - default: *401 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65338,8 +65370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -65347,7 +65379,7 @@ paths: application/json: schema: type: array - items: &402 + items: &401 title: Autolink reference description: An autolink reference. type: object @@ -65406,8 +65438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -65446,9 +65478,9 @@ paths: description: response content: application/json: - schema: *402 + schema: *401 examples: - default: &403 + default: &402 value: id: 1 key_prefix: TICKET- @@ -65479,9 +65511,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: + - *340 - *341 - - *342 - - &404 + - &403 name: autolink_id description: The unique identifier of the autolink. in: path @@ -65493,9 +65525,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *401 examples: - default: *403 + default: *402 '404': *6 x-github: githubCloudOnly: false @@ -65515,9 +65547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: + - *340 - *341 - - *342 - - *404 + - *403 responses: '204': description: Response @@ -65541,8 +65573,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: + - *340 - *341 - - *342 responses: '200': description: Response if Dependabot is enabled @@ -65592,8 +65624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -65614,8 +65646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -65635,8 +65667,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: + - *340 - *341 - - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -65674,7 +65706,7 @@ paths: - url protected: type: boolean - protection: &406 + protection: &405 title: Branch Protection description: Branch Protection type: object @@ -65717,7 +65749,7 @@ paths: required: - contexts - checks - enforce_admins: &409 + enforce_admins: &408 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -65734,7 +65766,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &411 + required_pull_request_reviews: &410 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -65756,7 +65788,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *201 + items: *200 apps: description: The list of apps with review dismissal access. @@ -65788,7 +65820,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *201 + items: *200 apps: description: The list of apps allowed to bypass pull request requirements. @@ -65818,7 +65850,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &408 + restrictions: &407 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -65881,7 +65913,7 @@ paths: type: string teams: type: array - items: *201 + items: *200 apps: type: array items: @@ -66111,9 +66143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: + - *340 - *341 - - *342 - - &407 + - &406 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). @@ -66127,14 +66159,14 @@ paths: description: Response content: application/json: - schema: &417 + schema: &416 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &471 + commit: &470 title: Commit description: Commit type: object @@ -66173,7 +66205,7 @@ paths: author: anyOf: - type: 'null' - - &405 + - &404 title: Git User description: Metaproperties for Git author/committer information. @@ -66195,7 +66227,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 message: type: string examples: @@ -66219,7 +66251,7 @@ paths: required: - sha - url - verification: &522 + verification: &521 title: Verification type: object properties: @@ -66255,14 +66287,14 @@ paths: author: oneOf: - *4 - - *165 + - *164 type: - 'null' - object committer: oneOf: - *4 - - *165 + - *164 type: - 'null' - object @@ -66299,7 +66331,7 @@ paths: type: integer files: type: array - items: &482 + items: &481 title: Diff Entry description: Diff Entry type: object @@ -66395,7 +66427,7 @@ paths: - self protected: type: boolean - protection: *406 + protection: *405 protection_url: type: string format: uri @@ -66504,7 +66536,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *345 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -66526,15 +66558,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *406 + schema: *405 examples: default: value: @@ -66728,9 +66760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -66990,7 +67022,7 @@ paths: url: type: string format: uri - required_status_checks: &414 + required_status_checks: &413 title: Status Check Policy description: Status Check Policy type: object @@ -67071,7 +67103,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -67089,7 +67121,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -67149,7 +67181,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *408 + restrictions: *407 required_conversation_resolution: type: object properties: @@ -67261,9 +67293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67288,17 +67320,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &410 + default: &409 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -67320,17 +67352,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *410 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67349,9 +67381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67376,17 +67408,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: &412 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -67482,9 +67514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -67582,9 +67614,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: *412 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -67605,9 +67637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67634,17 +67666,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &413 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -67667,17 +67699,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *413 + default: *412 '404': *6 x-github: githubCloudOnly: false @@ -67697,9 +67729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67724,17 +67756,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: &415 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -67760,9 +67792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -67814,9 +67846,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: *415 + default: *414 '404': *6 '422': *15 x-github: @@ -67838,9 +67870,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -67864,9 +67896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -67900,9 +67932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -67969,9 +68001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68035,9 +68067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -68103,15 +68135,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *408 + schema: *407 examples: default: value: @@ -68202,9 +68234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68227,9 +68259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68239,7 +68271,7 @@ paths: type: array items: *5 examples: - default: &416 + default: &415 value: - id: 1 slug: octoapp @@ -68296,9 +68328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68332,7 +68364,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68353,9 +68385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68389,7 +68421,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68410,9 +68442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68446,7 +68478,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -68468,9 +68500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68478,9 +68510,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '404': *6 x-github: githubCloudOnly: false @@ -68500,9 +68532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68538,9 +68570,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -68561,9 +68593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68599,9 +68631,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -68622,9 +68654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -68659,9 +68691,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -68683,9 +68715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68719,9 +68751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68779,9 +68811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68839,9 +68871,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68901,9 +68933,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68925,7 +68957,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *416 examples: default: value: @@ -69041,8 +69073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -69321,7 +69353,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &417 title: CheckRun description: A check performed on the code of a given code change type: object @@ -69457,7 +69489,7 @@ paths: check. type: array items: *85 - deployment: &732 + deployment: &731 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69744,9 +69776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: + - *340 - *341 - - *342 - - &419 + - &418 name: check_run_id description: The unique identifier of the check run. in: path @@ -69758,9 +69790,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: &420 + default: &419 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -69860,9 +69892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 requestBody: required: true content: @@ -70102,9 +70134,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: *420 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70124,9 +70156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: + - *340 - *341 - - *342 - - *419 + - *418 - *17 - *19 responses: @@ -70236,15 +70268,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -70282,8 +70314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -70305,7 +70337,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &422 + schema: &421 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -70392,7 +70424,7 @@ paths: anyOf: - type: 'null' - *5 - repository: *156 + repository: *155 created_at: type: - string @@ -70403,7 +70435,7 @@ paths: - string - 'null' format: date-time - head_commit: *421 + head_commit: *420 latest_check_runs_count: type: integer check_runs_url: @@ -70431,7 +70463,7 @@ paths: - check_runs_url - pull_requests examples: - default: &423 + default: &422 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -70722,9 +70754,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70743,8 +70775,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -70805,7 +70837,7 @@ paths: required: - app_id - setting - repository: *156 + repository: *155 examples: default: value: @@ -71053,9 +71085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: + - *340 - *341 - - *342 - - &424 + - &423 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -71067,9 +71099,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71092,17 +71124,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 - - &477 + - *423 + - &476 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &478 + - &477 name: status description: Returns check runs with the specified `status`. in: query @@ -71141,9 +71173,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: &479 + default: &478 value: total_count: 1 check_runs: @@ -71245,15 +71277,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 + - *423 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -71276,8 +71308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -71375,8 +71407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -71439,7 +71471,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -71506,21 +71538,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - &443 + - &442 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: *427 - - &444 + schema: *426 + - &443 name: pr description: The number of the pull request for the results you want to list. in: query @@ -71545,13 +71577,13 @@ paths: be returned. in: query required: false - schema: *428 + schema: *427 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *429 + schema: *428 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -71570,24 +71602,24 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 - rule: *433 - tool: *434 - most_recent_instance: *435 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 + rule: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -71710,7 +71742,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &436 + '403': &435 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -71737,9 +71769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - &437 + - &436 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -71747,30 +71779,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: &438 + schema: &437 type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 rule: type: object properties: @@ -71832,8 +71864,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *434 - most_recent_instance: *435 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -71929,7 +71961,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -71949,9 +71981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -71966,8 +71998,8 @@ paths: enum: - open - dismissed - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_reason: *430 + dismissed_comment: *431 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -71995,7 +72027,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *437 examples: default: value: @@ -72071,7 +72103,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &442 + '403': &441 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -72098,15 +72130,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: Response content: application/json: - schema: &439 + schema: &438 type: object properties: status: @@ -72133,13 +72165,13 @@ paths: - description - started_at examples: - default: &440 + default: &439 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &441 + '400': &440 description: Bad Request content: application/json: @@ -72150,7 +72182,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72175,29 +72207,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: OK content: application/json: - schema: *439 + schema: *438 examples: - default: *440 + default: *439 '202': description: Accepted content: application/json: - schema: *439 + schema: *438 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *441 + '400': *440 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -72229,9 +72261,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: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: false content: @@ -72277,8 +72309,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *441 - '403': *442 + '400': *440 + '403': *441 '404': *6 '422': description: Unprocessable Entity @@ -72302,13 +72334,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 + - *442 - *443 - - *444 responses: '200': description: Response @@ -72319,10 +72351,10 @@ paths: items: type: object properties: - ref: *427 - analysis_key: *445 - environment: *446 - category: *447 + ref: *426 + analysis_key: *444 + environment: *445 + category: *446 state: type: - string @@ -72339,7 +72371,7 @@ paths: properties: text: type: string - location: *448 + location: *447 html_url: type: string classifications: @@ -72347,7 +72379,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: *449 + items: *448 examples: default: value: @@ -72384,7 +72416,7 @@ paths: end_column: 50 classifications: - source - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72418,25 +72450,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - *444 + - *443 - 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: *427 + schema: *426 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &450 + schema: &449 type: string description: An identifier for the upload. examples: @@ -72458,23 +72490,23 @@ paths: application/json: schema: type: array - items: &451 + items: &450 type: object properties: - ref: *427 - commit_sha: &459 + ref: *426 + commit_sha: &458 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: *445 + analysis_key: *444 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *447 + category: *446 error: type: string examples: @@ -72499,8 +72531,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *450 - tool: *434 + sarif_id: *449 + tool: *433 deletable: type: boolean warning: @@ -72562,7 +72594,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72598,8 +72630,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72612,7 +72644,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *450 examples: response: summary: application/json response @@ -72666,7 +72698,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *436 + '403': *435 '404': *6 '422': description: Response if analysis could not be processed @@ -72753,8 +72785,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72810,7 +72842,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': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -72832,8 +72864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -72841,7 +72873,7 @@ paths: application/json: schema: type: array - items: &452 + items: &451 title: CodeQL Database description: A CodeQL database. type: object @@ -72953,7 +72985,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -72982,8 +73014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -72995,7 +73027,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *451 examples: default: value: @@ -73027,9 +73059,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': &486 + '302': &485 description: Found - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73051,8 +73083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -73062,7 +73094,7 @@ paths: responses: '204': description: Response - '403': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -73090,8 +73122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -73100,7 +73132,7 @@ paths: type: object additionalProperties: false properties: - language: &453 + language: &452 type: string description: The language targeted by the CodeQL query enum: @@ -73180,7 +73212,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &457 + schema: &456 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -73190,7 +73222,7 @@ paths: description: The ID of the variant analysis. controller_repo: *65 actor: *4 - query_language: *453 + query_language: *452 query_pack_url: type: string description: The download url for the query pack. @@ -73238,7 +73270,7 @@ paths: items: type: object properties: - repository: &454 + repository: &453 title: Repository Identifier description: Repository Identifier type: object @@ -73280,7 +73312,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &458 + analysis_status: &457 type: string description: The new status of the CodeQL variant analysis repository task. @@ -73312,7 +73344,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &455 + access_mismatch_repos: &454 type: object properties: repository_count: @@ -73327,7 +73359,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: *454 + items: *453 required: - repository_count - repositories @@ -73350,8 +73382,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *455 - over_limit_repos: *455 + no_codeql_db_repos: *454 + over_limit_repos: *454 required: - access_mismatch_repos - not_found_repos @@ -73367,7 +73399,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &456 + value: &455 summary: Default response value: id: 1 @@ -73513,10 +73545,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *456 + value: *455 repository_lists: summary: Response for a successful variant analysis submission - value: *456 + value: *455 '404': *6 '422': description: Unable to process variant analysis submission @@ -73544,8 +73576,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: + - *340 - *341 - - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -73557,9 +73589,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *456 examples: - default: *456 + default: *455 '404': *6 '503': *114 x-github: @@ -73582,7 +73614,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: - - *341 + - *340 - name: repo in: path description: The name of the controller repository. @@ -73617,7 +73649,7 @@ paths: type: object properties: repository: *65 - analysis_status: *458 + analysis_status: *457 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -73742,8 +73774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -73834,7 +73866,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73855,8 +73887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -73925,7 +73957,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -73950,7 +73982,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *442 + '403': *441 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -74021,8 +74053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -74030,7 +74062,7 @@ paths: schema: type: object properties: - commit_sha: *459 + commit_sha: *458 ref: type: string description: |- @@ -74090,7 +74122,7 @@ paths: schema: type: object properties: - id: *450 + id: *449 url: type: string description: The REST API URL for checking the status of the upload. @@ -74104,7 +74136,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': *442 + '403': *441 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -74127,8 +74159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: + - *340 - *341 - - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -74176,7 +74208,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': *436 + '403': *435 '404': description: Not Found if the sarif id does not match any upload '503': *114 @@ -74201,8 +74233,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -74283,8 +74315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: + - *340 - *341 - - *342 - 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 @@ -74412,8 +74444,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -74429,7 +74461,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: default: value: @@ -74727,8 +74759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -74792,17 +74824,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '400': *14 '401': *23 '403': *27 @@ -74831,8 +74863,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -74896,8 +74928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: + - *340 - *341 - - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -74934,9 +74966,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: &675 + default: &674 value: total_count: 2 machines: @@ -74976,8 +75008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: + - *340 - *341 - - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -75064,8 +75096,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: + - *340 - *341 - - *342 - 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 @@ -75134,8 +75166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -75153,7 +75185,7 @@ paths: type: integer secrets: type: array - items: &465 + items: &464 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -75174,7 +75206,7 @@ paths: - created_at - updated_at examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -75197,16 +75229,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *463 + schema: *462 examples: - default: *464 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -75226,17 +75258,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *465 + schema: *464 examples: - default: *466 + default: *465 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75256,9 +75288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -75286,7 +75318,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -75310,9 +75342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -75340,8 +75372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: + - *340 - *341 - - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -75379,7 +75411,7 @@ paths: application/json: schema: type: array - items: &467 + items: &466 title: Collaborator description: Collaborator type: object @@ -75572,8 +75604,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -75620,8 +75652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 requestBody: required: false @@ -75648,7 +75680,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &535 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -75660,7 +75692,7 @@ paths: format: int64 examples: - 42 - repository: *156 + repository: *155 invitee: anyOf: - type: 'null' @@ -75836,7 +75868,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *125 + schema: *124 '403': *27 x-github: triggersNotification: true @@ -75876,8 +75908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -75909,8 +75941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: + - *340 - *341 - - *342 - *70 responses: '200': @@ -75931,7 +75963,7 @@ paths: user: anyOf: - type: 'null' - - *467 + - *466 required: - permission - role_name @@ -75985,8 +76017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -75996,7 +76028,7 @@ paths: application/json: schema: type: array - items: &468 + items: &467 title: Commit Comment description: Commit Comment type: object @@ -76054,7 +76086,7 @@ paths: - created_at - updated_at examples: - default: &473 + default: &472 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76113,17 +76145,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: &474 + default: &473 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76180,8 +76212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -76204,7 +76236,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: default: value: @@ -76255,8 +76287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -76278,8 +76310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76306,7 +76338,7 @@ paths: application/json: schema: type: array - items: &469 + items: &468 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -76350,7 +76382,7 @@ paths: - content - created_at examples: - default: &538 + default: &537 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76395,8 +76427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -76429,9 +76461,9 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: &470 + default: &469 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76460,9 +76492,9 @@ paths: description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -76484,10 +76516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - &539 + - &538 name: reaction_id description: The unique identifier of the reaction. in: path @@ -76542,8 +76574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: + - *340 - *341 - - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -76599,9 +76631,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: &586 + default: &585 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76695,9 +76727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: + - *340 - *341 - - *342 - - &472 + - &471 name: commit_sha description: The SHA of the commit. in: path @@ -76769,9 +76801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -76781,9 +76813,9 @@ paths: application/json: schema: type: array - items: *468 + items: *467 examples: - default: *473 + default: *472 headers: Link: *66 x-github: @@ -76811,9 +76843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: + - *340 - *341 - - *342 - - *472 + - *471 requestBody: required: true content: @@ -76848,9 +76880,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: *474 + default: *473 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76878,9 +76910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -76890,9 +76922,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: &578 + default: &577 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -77429,11 +77461,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: + - *340 - *341 - - *342 - *19 - *17 - - &476 + - &475 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)" @@ -77448,9 +77480,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *470 examples: - default: &566 + default: &565 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77538,7 +77570,7 @@ paths: schema: type: string examples: - default: &483 + default: &482 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -77551,7 +77583,7 @@ paths: schema: type: string examples: - default: &484 + default: &483 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -77604,11 +77636,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: + - *340 - *341 - - *342 + - *475 - *476 - *477 - - *478 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -77642,9 +77674,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: *479 + default: *478 headers: Link: *66 x-github: @@ -77669,9 +77701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -77679,7 +77711,7 @@ paths: schema: type: integer example: 1 - - *477 + - *476 - *17 - *19 responses: @@ -77697,7 +77729,7 @@ paths: type: integer check_suites: type: array - items: *422 + items: *421 examples: default: value: @@ -77897,9 +77929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -77970,7 +78002,7 @@ paths: type: string total_count: type: integer - repository: *156 + repository: *155 commit_url: type: string format: uri @@ -78101,9 +78133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -78113,7 +78145,7 @@ paths: application/json: schema: type: array - items: &656 + items: &655 title: Status description: The status of a commit. type: object @@ -78194,7 +78226,7 @@ paths: site_admin: false headers: Link: *66 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78222,8 +78254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -78256,11 +78288,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *480 + - *479 code_of_conduct_file: anyOf: - type: 'null' - - &481 + - &480 title: Community Health File type: object properties: @@ -78280,19 +78312,19 @@ paths: contributing: anyOf: - type: 'null' - - *481 + - *480 readme: anyOf: - type: 'null' - - *481 + - *480 issue_template: anyOf: - type: 'null' - - *481 + - *480 pull_request_template: anyOf: - type: 'null' - - *481 + - *480 required: - code_of_conduct - code_of_conduct_file @@ -78421,8 +78453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: + - *340 - *341 - - *342 - *19 - *17 - name: basehead @@ -78470,8 +78502,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *471 - merge_base_commit: *471 + base_commit: *470 + merge_base_commit: *470 status: type: string enum: @@ -78495,10 +78527,10 @@ paths: - 6 commits: type: array - items: *471 + items: *470 files: type: array - items: *482 + items: *481 required: - url - html_url @@ -78744,12 +78776,12 @@ paths: schema: type: string examples: - default: *483 + default: *482 application/vnd.github.patch: schema: type: string examples: - default: *484 + default: *483 '404': *6 '500': *53 '503': *114 @@ -78794,8 +78826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -78965,7 +78997,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &485 + response-if-content-is-a-file-github-object: &484 summary: Response if content is a file value: type: file @@ -79102,7 +79134,7 @@ paths: - size - type - url - - &591 + - &590 title: Content File description: Content File type: object @@ -79320,7 +79352,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *485 + response-if-content-is-a-file: *484 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -79389,7 +79421,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *486 + '302': *485 '304': *35 x-github: githubCloudOnly: false @@ -79412,8 +79444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -79508,7 +79540,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &486 title: File Commit description: File Commit type: object @@ -79664,7 +79696,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: example-for-creating-a-file: value: @@ -79718,7 +79750,7 @@ paths: schema: oneOf: - *3 - - &517 + - &516 description: Repository rule violation was detected type: object properties: @@ -79739,7 +79771,7 @@ paths: items: type: object properties: - placeholder_id: &648 + placeholder_id: &647 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -79771,8 +79803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -79833,7 +79865,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: default: value: @@ -79888,8 +79920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: + - *340 - *341 - - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -80019,8 +80051,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -80153,24 +80185,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *202 - *203 - *204 - *205 - *206 - - *207 - 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 + - *207 + - *487 - *208 - - *488 - *209 - *210 - - *211 - *60 - *45 - *46 @@ -80182,11 +80214,11 @@ paths: application/json: schema: type: array - items: &492 + items: &491 type: object description: A Dependabot alert. properties: - number: *181 + number: *180 state: type: string description: The state of the Dependabot alert. @@ -80233,13 +80265,13 @@ paths: - transitive - inconclusive - - security_advisory: *489 + security_advisory: *488 security_vulnerability: *64 - url: *184 - html_url: *185 - created_at: *182 - updated_at: *183 - dismissed_at: *187 + url: *183 + html_url: *184 + created_at: *181 + updated_at: *182 + dismissed_at: *186 dismissed_by: anyOf: - type: 'null' @@ -80263,9 +80295,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *186 - auto_dismissed_at: *490 - dismissal_request: *491 + fixed_at: *185 + auto_dismissed_at: *489 + dismissal_request: *490 assignees: type: array description: The users assigned to this alert. @@ -80520,9 +80552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - &493 + - &492 name: alert_number in: path description: |- @@ -80531,13 +80563,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -80669,9 +80701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - *493 + - *492 requestBody: required: true content: @@ -80727,7 +80759,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -80857,8 +80889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -80876,7 +80908,7 @@ paths: type: integer secrets: type: array - items: &496 + items: &495 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -80930,16 +80962,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *494 + schema: *493 examples: - default: *495 + default: *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80959,15 +80991,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *496 + schema: *495 examples: default: value: @@ -80993,9 +81025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -81023,7 +81055,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -81047,9 +81079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -81071,8 +81103,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: + - *340 - *341 - - *342 - 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 @@ -81249,8 +81281,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -81509,8 +81541,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: + - *340 - *341 - - *342 - name: sbom_uuid in: path required: true @@ -81521,7 +81553,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *497 + Location: *496 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -81542,8 +81574,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: + - *340 - *341 - - *342 responses: '201': description: Response @@ -81581,8 +81613,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -81665,7 +81697,7 @@ paths: - version - url additionalProperties: false - metadata: &498 + metadata: &497 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -81704,7 +81736,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *498 + metadata: *497 resolved: type: object description: A collection of resolved package dependencies. @@ -81718,7 +81750,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *498 + metadata: *497 relationship: type: string description: A notation of whether a dependency is requested @@ -81851,8 +81883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: + - *340 - *341 - - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -81893,9 +81925,9 @@ paths: application/json: schema: type: array - items: *499 + items: *498 examples: - default: *500 + default: *499 headers: Link: *66 x-github: @@ -81961,8 +81993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -82044,7 +82076,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: simple-example: summary: Simple example @@ -82117,9 +82149,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: + - *340 - *341 - - *342 - - &501 + - &500 name: deployment_id description: deployment_id parameter in: path @@ -82131,7 +82163,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: default: value: @@ -82196,9 +82228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: + - *340 - *341 - - *342 - - *501 + - *500 responses: '204': description: Response @@ -82220,9 +82252,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: + - *340 - *341 - - *342 - - *501 + - *500 - *17 - *19 responses: @@ -82232,7 +82264,7 @@ paths: application/json: schema: type: array - items: &502 + items: &501 title: Deployment Status description: The status of a deployment. type: object @@ -82396,9 +82428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 requestBody: required: true content: @@ -82473,9 +82505,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: &503 + default: &502 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -82531,9 +82563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 - name: status_id in: path required: true @@ -82544,9 +82576,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: *503 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -82571,8 +82603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -82629,8 +82661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -82648,7 +82680,7 @@ paths: - 5 environments: type: array - items: &505 + items: &504 title: Environment description: Details of a deployment environment type: object @@ -82710,7 +82742,7 @@ paths: type: string examples: - wait_timer - wait_timer: &507 + wait_timer: &506 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -82752,11 +82784,11 @@ paths: items: type: object properties: - type: *504 + type: *503 reviewer: anyOf: - *4 - - *201 + - *200 required: - id - node_id @@ -82779,7 +82811,7 @@ paths: - id - node_id - type - deployment_branch_policy: &508 + deployment_branch_policy: &507 type: - object - 'null' @@ -82896,9 +82928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: + - *340 - *341 - - *342 - - &506 + - &505 name: environment_name in: path required: true @@ -82911,9 +82943,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: &509 + default: &508 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -82997,9 +83029,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: false content: @@ -83009,7 +83041,7 @@ paths: - object - 'null' properties: - wait_timer: *507 + wait_timer: *506 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -83028,14 +83060,14 @@ paths: items: type: object properties: - type: *504 + type: *503 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *508 + deployment_branch_policy: *507 additionalProperties: false examples: default: @@ -83055,9 +83087,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: *509 + default: *508 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -83081,9 +83113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '204': description: Default response @@ -83108,9 +83140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -83129,7 +83161,7 @@ paths: - 2 branch_policies: type: array - items: &510 + items: &509 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -83190,9 +83222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -83240,9 +83272,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - example-wildcard: &511 + example-wildcard: &510 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -83284,10 +83316,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - &512 + - *505 + - &511 name: branch_policy_id in: path required: true @@ -83299,9 +83331,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83320,10 +83352,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 requestBody: required: true content: @@ -83352,9 +83384,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83373,10 +83405,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 responses: '204': description: Response @@ -83401,9 +83433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 + - *340 responses: '200': description: List of deployment protection rules @@ -83420,7 +83452,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &513 + items: &512 title: Deployment protection rule description: Deployment protection rule type: object @@ -83442,7 +83474,7 @@ paths: for the environment. examples: - true - app: &514 + app: &513 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -83545,9 +83577,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: - - *506 - - *342 + - *505 - *341 + - *340 requestBody: content: application/json: @@ -83568,9 +83600,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *513 + schema: *512 examples: - default: &515 + default: &514 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -83605,9 +83637,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: - - *506 - - *342 + - *505 - *341 + - *340 - *19 - *17 responses: @@ -83627,7 +83659,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *514 + items: *513 examples: default: value: @@ -83662,10 +83694,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: + - *340 - *341 - - *342 - - *506 - - &516 + - *505 + - &515 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -83677,9 +83709,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *512 examples: - default: *515 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83700,10 +83732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 - - *516 + - *340 + - *515 responses: '204': description: Response @@ -83729,9 +83761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -83749,9 +83781,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -83776,17 +83808,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83808,18 +83840,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83841,10 +83873,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 requestBody: required: true content: @@ -83875,7 +83907,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -83901,10 +83933,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '204': description: Default response @@ -83929,10 +83961,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: + - *340 - *341 - - *342 - - *506 - - *173 + - *505 + - *172 - *19 responses: '200': @@ -83949,9 +83981,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -83974,9 +84006,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -84003,7 +84035,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -84028,18 +84060,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 - - *167 + - *505 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84060,10 +84092,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 requestBody: required: true content: @@ -84105,10 +84137,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 responses: '204': description: Response @@ -84130,8 +84162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -84199,8 +84231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: + - *340 - *341 - - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -84222,7 +84254,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -84359,8 +84391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -84393,9 +84425,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -84416,8 +84448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -84476,8 +84508,8 @@ paths: application/json: schema: oneOf: - - *125 - - *517 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84502,8 +84534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: + - *340 - *341 - - *342 - name: file_sha in: path required: true @@ -84603,8 +84635,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -84713,7 +84745,7 @@ paths: description: Response content: application/json: - schema: &518 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -84940,15 +84972,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: + - *340 - *341 - - *342 - - *472 + - *471 responses: '200': description: Response content: application/json: - schema: *518 + schema: *517 examples: default: value: @@ -85004,9 +85036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: + - *340 - *341 - - *342 - - &519 + - &518 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. @@ -85023,7 +85055,7 @@ paths: application/json: schema: type: array - items: &520 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -85099,17 +85131,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '200': description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: &521 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -85138,8 +85170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85168,9 +85200,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -85196,9 +85228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 requestBody: required: true content: @@ -85227,9 +85259,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 '422': *15 '409': *52 x-github: @@ -85247,9 +85279,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '204': description: Response @@ -85304,8 +85336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85372,7 +85404,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -85428,7 +85460,7 @@ paths: - sha - type - url - verification: *522 + verification: *521 required: - sha - url @@ -85438,7 +85470,7 @@ paths: - tag - message examples: - default: &524 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -85511,8 +85543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: + - *340 - *341 - - *342 - name: tag_sha in: path required: true @@ -85523,9 +85555,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *522 examples: - default: *524 + default: *523 '404': *6 '409': *52 x-github: @@ -85549,8 +85581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85624,7 +85656,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -85726,8 +85758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: + - *340 - *341 - - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -85750,7 +85782,7 @@ paths: description: Response content: application/json: - schema: *525 + schema: *524 examples: default-response: summary: Default response @@ -85808,8 +85840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -85853,8 +85885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -85864,7 +85896,7 @@ paths: application/json: schema: type: array - items: &526 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -85927,7 +85959,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &763 + last_response: &762 title: Hook Response type: object properties: @@ -86004,8 +86036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -86058,9 +86090,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: &527 + default: &526 value: type: Repository id: 12345678 @@ -86108,17 +86140,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -86138,9 +86170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: true content: @@ -86185,9 +86217,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '422': *15 '404': *6 x-github: @@ -86208,9 +86240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86234,9 +86266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response @@ -86263,9 +86295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: false content: @@ -86309,12 +86341,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -86322,9 +86354,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -86343,18 +86375,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -86373,9 +86405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '202': *37 @@ -86398,9 +86430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86425,9 +86457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -86450,8 +86482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response if immutable releases are enabled @@ -86499,8 +86531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -86520,8 +86552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -86578,14 +86610,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &528 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -86692,7 +86724,7 @@ paths: - html_url - authors_url examples: - default: &531 + default: &530 value: vcs: subversion use_lfs: true @@ -86708,7 +86740,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': &529 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -86737,8 +86769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -86786,7 +86818,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: default: value: @@ -86811,7 +86843,7 @@ paths: type: string '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86839,8 +86871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -86892,7 +86924,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: example-1: summary: Example 1 @@ -86940,7 +86972,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86963,12 +86995,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: + - *340 - *341 - - *342 responses: '204': description: Response - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86994,9 +87026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: + - *340 - *341 - - *342 - - &697 + - &696 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87010,7 +87042,7 @@ paths: application/json: schema: type: array - items: &530 + items: &529 title: Porter Author description: Porter Author type: object @@ -87064,7 +87096,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87089,8 +87121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: + - *340 - *341 - - *342 - name: author_id in: path required: true @@ -87120,7 +87152,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *529 examples: default: value: @@ -87133,7 +87165,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87157,8 +87189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87199,7 +87231,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87227,8 +87259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -87255,11 +87287,11 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: - default: *531 + default: *530 '422': *15 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87282,8 +87314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87291,8 +87323,8 @@ paths: application/json: schema: *20 examples: - default: *532 - '301': *345 + default: *531 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -87312,8 +87344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -87321,12 +87353,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: &534 + default: &533 value: limit: collaborators_only origin: repository @@ -87351,13 +87383,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *533 + schema: *532 examples: default: summary: Example request body @@ -87369,9 +87401,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *534 + default: *533 '409': description: Response x-github: @@ -87393,8 +87425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -87417,8 +87449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -87428,9 +87460,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: &689 + default: &688 value: - id: 1 repository: @@ -87561,9 +87593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 requestBody: required: false content: @@ -87592,7 +87624,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *534 examples: default: value: @@ -87723,9 +87755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 responses: '204': description: Response @@ -87756,8 +87788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: + - *340 - *341 - - *342 - 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 @@ -87819,7 +87851,7 @@ paths: required: false schema: type: string - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -87844,7 +87876,7 @@ paths: type: array items: *82 examples: - default: &544 + default: &543 value: - id: 1 node_id: MDU6SXNzdWUx @@ -87993,7 +88025,7 @@ paths: state_reason: completed headers: Link: *66 - '301': *345 + '301': *344 '422': *15 '404': *6 x-github: @@ -88022,8 +88054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -88128,7 +88160,7 @@ paths: application/json: schema: *82 examples: - default: &541 + default: &540 value: id: 1 node_id: MDU6SXNzdWUx @@ -88266,7 +88298,7 @@ paths: '422': *15 '503': *114 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -88294,8 +88326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *104 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -88318,7 +88350,7 @@ paths: type: array items: *83 examples: - default: &543 + default: &542 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88376,8 +88408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -88386,7 +88418,7 @@ paths: application/json: schema: *83 examples: - default: &537 + default: &536 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88441,8 +88473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -88467,7 +88499,7 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -88485,8 +88517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -88515,8 +88547,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -88579,7 +88611,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -88596,8 +88628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -88605,7 +88637,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '503': *114 x-github: githubCloudOnly: false @@ -88623,8 +88655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -88651,9 +88683,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -88674,8 +88706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -88708,16 +88740,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -88739,10 +88771,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -88762,8 +88794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -88773,7 +88805,7 @@ paths: application/json: schema: type: array - items: &540 + items: &539 title: Issue Event description: Issue Event type: object @@ -88853,7 +88885,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *201 + requested_team: *200 dismissed_review: title: Issue Event Dismissed Review type: object @@ -89113,8 +89145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: + - *340 - *341 - - *342 - name: event_id in: path required: true @@ -89125,7 +89157,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *539 examples: default: value: @@ -89318,7 +89350,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *536 + '410': *535 '403': *27 x-github: githubCloudOnly: false @@ -89352,9 +89384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: + - *340 - *341 - - *342 - - &542 + - &541 name: issue_number description: The number that identifies the issue. in: path @@ -89370,7 +89402,7 @@ paths: examples: default: summary: Issue - value: *541 + value: *540 pinned_comment: summary: Issue with pinned comment value: @@ -89550,9 +89582,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 '304': *35 x-github: githubCloudOnly: false @@ -89577,9 +89609,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -89714,13 +89746,13 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '422': *15 '503': *114 '403': *27 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89738,9 +89770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -89768,7 +89800,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89784,9 +89816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: content: application/json: @@ -89813,7 +89845,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89835,9 +89867,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: + - *340 - *341 - - *342 - - *542 + - *541 - name: assignee in: path required: true @@ -89877,9 +89909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *87 - *17 - *19 @@ -89892,11 +89924,11 @@ paths: type: array items: *83 examples: - default: *543 + default: *542 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89925,9 +89957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -89951,14 +89983,14 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -89986,9 +90018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90000,12 +90032,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90033,9 +90065,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -90059,15 +90091,15 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *345 + '301': *344 '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -90098,9 +90130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -90114,13 +90146,13 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -90146,9 +90178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90160,12 +90192,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90182,9 +90214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -90198,7 +90230,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &548 + - &547 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -90247,7 +90279,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &548 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -90375,7 +90407,7 @@ paths: - performed_via_github_app - assignee - assigner - - &550 + - &549 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -90421,7 +90453,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &550 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -90467,7 +90499,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &551 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -90516,7 +90548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &552 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -90545,7 +90577,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -90558,7 +90590,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &553 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -90587,7 +90619,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -90600,7 +90632,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &554 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -90656,7 +90688,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &555 title: Locked Issue Event description: Locked Issue Event type: object @@ -90701,7 +90733,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &556 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -90762,7 +90794,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &557 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -90823,7 +90855,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &558 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -90884,7 +90916,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &559 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -90977,7 +91009,7 @@ paths: color: red headers: Link: *66 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90994,9 +91026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91006,9 +91038,9 @@ paths: application/json: schema: type: array - items: *545 + items: *544 examples: - default: &546 + default: &545 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -91032,9 +91064,9 @@ paths: value: '2025-12-25' headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91063,9 +91095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91131,9 +91163,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -91169,9 +91201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91238,9 +91270,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -91271,10 +91303,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: + - *340 - *341 - - *342 - - *542 - - *245 + - *541 + - *244 responses: '204': description: Issue field value deleted successfully @@ -91299,9 +91331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91313,7 +91345,7 @@ paths: type: array items: *81 examples: - default: &547 + default: &546 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91331,9 +91363,9 @@ paths: default: false headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91349,9 +91381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -91396,10 +91428,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -91416,9 +91448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -91480,10 +91512,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -91500,15 +91532,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91527,9 +91559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: name in: path required: true @@ -91553,9 +91585,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91575,9 +91607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -91606,7 +91638,7 @@ paths: '204': description: Response '403': *27 - '410': *536 + '410': *535 '404': *6 '422': *15 x-github: @@ -91624,9 +91656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response @@ -91656,9 +91688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '200': description: Response @@ -91666,10 +91698,10 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91686,9 +91718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - 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. @@ -91714,13 +91746,13 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91738,9 +91770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91772,16 +91804,16 @@ paths: description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -91803,10 +91835,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: + - *340 - *341 - - *342 - - *542 - - *539 + - *541 + - *538 responses: '204': description: Response @@ -91835,9 +91867,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91861,7 +91893,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -91894,9 +91926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91908,11 +91940,11 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91940,9 +91972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91971,14 +92003,14 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -91998,9 +92030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92033,7 +92065,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '403': *27 '404': *6 '422': *7 @@ -92055,9 +92087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -92072,6 +92104,7 @@ paths: description: Timeline Event type: object anyOf: + - *547 - *548 - *549 - *550 @@ -92084,7 +92117,6 @@ paths: - *557 - *558 - *559 - - *560 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -92141,7 +92173,7 @@ paths: pin: anyOf: - type: 'null' - - *561 + - *560 required: - event - actor @@ -92417,7 +92449,7 @@ paths: type: string comments: type: array - items: &580 + items: &579 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -92658,7 +92690,7 @@ paths: type: string comments: type: array - items: *468 + items: *467 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -92933,7 +92965,7 @@ paths: headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92950,8 +92982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -92961,7 +92993,7 @@ paths: application/json: schema: type: array - items: &562 + items: &561 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -93029,8 +93061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93066,9 +93098,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: &563 + default: &562 value: id: 1 key: ssh-rsa AAA... @@ -93102,9 +93134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: + - *340 - *341 - - *342 - - &564 + - &563 name: key_id description: The unique identifier of the key. in: path @@ -93116,9 +93148,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: *563 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -93136,9 +93168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: + - *340 - *341 - - *342 - - *564 + - *563 responses: '204': description: Response @@ -93158,8 +93190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -93171,7 +93203,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 '404': *6 @@ -93192,8 +93224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93231,7 +93263,7 @@ paths: application/json: schema: *81 examples: - default: &565 + default: &564 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -93263,8 +93295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93277,7 +93309,7 @@ paths: application/json: schema: *81 examples: - default: *565 + default: *564 '404': *6 x-github: githubCloudOnly: false @@ -93294,8 +93326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93360,8 +93392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -93387,8 +93419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -93427,9 +93459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: + - *340 - *341 - - *342 - - *443 + - *442 responses: '200': description: Response @@ -93576,8 +93608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93642,8 +93674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93677,9 +93709,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *471 + schema: *470 examples: - default: *566 + default: *565 '204': description: Response when already merged '404': @@ -93704,8 +93736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: + - *340 - *341 - - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -93746,7 +93778,7 @@ paths: application/json: schema: type: array - items: *282 + items: *281 examples: default: value: @@ -93802,8 +93834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -93843,9 +93875,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: &567 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -93904,9 +93936,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: + - *340 - *341 - - *342 - - &568 + - &567 name: milestone_number description: The number that identifies the milestone. in: path @@ -93918,9 +93950,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 '404': *6 x-github: githubCloudOnly: false @@ -93937,9 +93969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 requestBody: required: false content: @@ -93977,9 +94009,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93995,9 +94027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 responses: '204': description: Response @@ -94018,9 +94050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 - *17 - *19 responses: @@ -94032,7 +94064,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 x-github: @@ -94051,12 +94083,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: + - *340 - *341 - - *342 + - *568 - *569 - - *570 - *87 - - *571 + - *570 - *17 - *19 responses: @@ -94068,7 +94100,7 @@ paths: type: array items: *107 examples: - default: *572 + default: *571 headers: Link: *66 x-github: @@ -94092,8 +94124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -94151,14 +94183,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &573 + schema: &572 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -94302,7 +94334,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &573 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -94343,8 +94375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94399,9 +94431,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *572 examples: - default: *574 + default: *573 '422': *15 '409': *52 x-github: @@ -94424,8 +94456,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94525,8 +94557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -94552,8 +94584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -94563,7 +94595,7 @@ paths: application/json: schema: type: array - items: &575 + items: &574 title: Page Build description: Page Build type: object @@ -94655,8 +94687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: + - *340 - *341 - - *342 responses: '201': description: Response @@ -94703,16 +94735,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: &576 + default: &575 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -94760,8 +94792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: + - *340 - *341 - - *342 - name: build_id in: path required: true @@ -94772,9 +94804,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: *576 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94794,8 +94826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94903,9 +94935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - &577 + - &576 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -94963,9 +94995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - *577 + - *576 responses: '204': *59 '404': *6 @@ -94992,8 +95024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -95261,7 +95293,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -95288,8 +95320,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: + - *340 - *341 - - *342 responses: '200': description: Private vulnerability reporting status @@ -95326,8 +95358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -95348,8 +95380,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -95371,8 +95403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -95380,7 +95412,7 @@ paths: application/json: schema: type: array - items: *296 + items: *295 examples: default: value: @@ -95411,8 +95443,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95424,7 +95456,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - properties examples: @@ -95474,8 +95506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: + - *340 - *341 - - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -95535,9 +95567,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: *578 + default: *577 headers: Link: *66 '304': *35 @@ -95569,8 +95601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95637,7 +95669,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &581 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -95766,7 +95798,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -95805,7 +95837,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *260 head: type: object properties: @@ -95843,14 +95875,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *282 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -95861,7 +95893,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: *579 + auto_merge: *578 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -95961,7 +95993,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -96468,8 +96500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: + - *340 - *341 - - *342 - name: sort in: query required: false @@ -96498,9 +96530,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: &585 + default: &584 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -96577,17 +96609,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: &581 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -96662,8 +96694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -96686,9 +96718,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: *581 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96704,8 +96736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -96727,8 +96759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -96755,9 +96787,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -96778,8 +96810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -96812,16 +96844,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -96843,10 +96875,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -96889,9 +96921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: + - *340 - *341 - - *342 - - &584 + - &583 name: pull_number description: The number that identifies the pull request. in: path @@ -96904,9 +96936,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '304': *35 '404': *6 '406': @@ -96941,9 +96973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -96985,9 +97017,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '422': *15 '403': *27 x-github: @@ -97009,9 +97041,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -97072,17 +97104,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -97112,9 +97144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *104 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -97135,9 +97167,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: *585 + default: *584 headers: Link: *66 x-github: @@ -97170,9 +97202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -97278,7 +97310,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: example-for-a-multi-line-comment: value: @@ -97366,9 +97398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *96 requestBody: required: true @@ -97391,7 +97423,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: default: value: @@ -97477,9 +97509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -97489,9 +97521,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: *586 + default: *585 headers: Link: *66 x-github: @@ -97521,9 +97553,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -97533,7 +97565,7 @@ paths: application/json: schema: type: array - items: *482 + items: *481 examples: default: value: @@ -97571,9 +97603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '204': description: Response if pull request has been merged @@ -97596,9 +97628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -97710,9 +97742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '200': description: Response @@ -97728,7 +97760,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 required: - users - teams @@ -97787,9 +97819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -97826,7 +97858,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -98362,9 +98394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -98398,7 +98430,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -98883,9 +98915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -98895,7 +98927,7 @@ paths: application/json: schema: type: array - items: &587 + items: &586 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -99051,9 +99083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -99143,9 +99175,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &589 + default: &588 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -99208,10 +99240,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - &588 + - *583 + - &587 name: review_id description: The unique identifier of the review. in: path @@ -99223,9 +99255,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &590 + default: &589 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -99284,10 +99316,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -99310,7 +99342,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -99372,18 +99404,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 responses: '200': description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *589 + default: *588 '422': *7 '404': *6 x-github: @@ -99410,10 +99442,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 - *17 - *19 responses: @@ -99511,9 +99543,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *282 + html: *282 + pull_request: *282 required: - self - html @@ -99671,10 +99703,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -99703,7 +99735,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -99766,10 +99798,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -99804,9 +99836,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *590 + default: *589 '404': *6 '422': *7 '403': *27 @@ -99828,9 +99860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -99894,8 +99926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: + - *340 - *341 - - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -99908,9 +99940,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: &592 + default: &591 value: type: file encoding: base64 @@ -99952,8 +99984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: + - *340 - *341 - - *342 - name: dir description: The alternate path to look for a README file in: path @@ -99973,9 +100005,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: *592 + default: *591 '404': *6 '422': *15 x-github: @@ -99997,8 +100029,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -100008,7 +100040,7 @@ paths: application/json: schema: type: array - items: *593 + items: *592 examples: default: value: @@ -100102,8 +100134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -100179,9 +100211,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: &597 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -100286,9 +100318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: + - *340 - *341 - - *342 - - &595 + - &594 name: asset_id description: The unique identifier of the asset. in: path @@ -100300,9 +100332,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: &596 + default: &595 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 @@ -100337,7 +100369,7 @@ paths: type: User site_admin: false '404': *6 - '302': *486 + '302': *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100353,9 +100385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 requestBody: required: false content: @@ -100384,9 +100416,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: *596 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100402,9 +100434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 responses: '204': description: Response @@ -100429,8 +100461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -100516,16 +100548,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -100543,8 +100575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: + - *340 - *341 - - *342 - name: tag description: tag parameter in: path @@ -100557,9 +100589,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -100581,9 +100613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: + - *340 - *341 - - *342 - - &598 + - &597 name: release_id description: The unique identifier of the release. in: path @@ -100597,9 +100629,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: *593 + schema: *592 examples: - default: *597 + default: *596 '401': description: Unauthorized x-github: @@ -100617,9 +100649,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: false content: @@ -100683,9 +100715,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': description: Not Found if the discussion category name is invalid content: @@ -100706,9 +100738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 responses: '204': description: Response @@ -100729,9 +100761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: + - *340 - *341 - - *342 - - *598 + - *597 - *17 - *19 responses: @@ -100741,7 +100773,7 @@ paths: application/json: schema: type: array - items: *594 + items: *593 examples: default: value: @@ -100822,9 +100854,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: + - *340 - *341 - - *342 - - *598 + - *597 - name: name in: query required: true @@ -100850,7 +100882,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *593 examples: response-for-successful-upload: value: @@ -100905,9 +100937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 - 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. @@ -100931,9 +100963,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -100954,9 +100986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: true content: @@ -100986,16 +101018,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -101017,10 +101049,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: + - *340 - *341 - - *342 - - *598 - - *539 + - *597 + - *538 responses: '204': description: Response @@ -101044,9 +101076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 - *17 - *19 responses: @@ -101062,8 +101094,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &599 + - *302 + - &598 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -101082,69 +101114,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. + - allOf: + - *303 + - *598 - allOf: - *304 - - *599 + - *598 - allOf: - *305 - - *599 + - *598 - allOf: - - *306 - *599 + - *598 - allOf: - - *600 - - *599 + - *306 + - *598 - allOf: - *307 - - *599 + - *598 - allOf: - *308 - - *599 + - *598 - allOf: - *309 - - *599 + - *598 - allOf: - *310 - - *599 + - *598 - allOf: - *311 - - *599 + - *598 - allOf: - *312 - - *599 + - *598 - allOf: - *313 - - *599 + - *598 - allOf: - *314 - - *599 + - *598 - allOf: - *315 - - *599 + - *598 - allOf: - - *316 - - *599 + - *320 + - *598 - allOf: - *321 - - *599 + - *598 - allOf: - *322 - - *599 + - *598 - allOf: - - *323 - - *599 + - *316 + - *598 - allOf: - *317 - - *599 + - *598 - allOf: - *318 - - *599 + - *598 - allOf: - *319 - - *599 - - allOf: - - *320 - - *599 + - *598 examples: default: value: @@ -101183,8 +101215,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - *17 - *19 - name: includes_parents @@ -101195,7 +101227,7 @@ paths: schema: type: boolean default: true - - *601 + - *600 responses: '200': description: Response @@ -101203,7 +101235,7 @@ paths: application/json: schema: type: array - items: *324 + items: *323 examples: default: value: @@ -101250,8 +101282,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 requestBody: description: Request body required: true @@ -101271,16 +101303,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *601 required: - name - enforcement @@ -101311,9 +101343,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &613 + default: &612 value: id: 42 name: super cool ruleset @@ -101361,13 +101393,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: + - *340 - *341 - - *342 + - *602 - *603 - *604 - *605 - *606 - - *607 - *17 - *19 responses: @@ -101375,9 +101407,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *607 examples: - default: *609 + default: *608 '404': *6 '500': *53 x-github: @@ -101398,17 +101430,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: + - *340 - *341 - - *342 - - *610 + - *609 responses: '200': description: Response content: application/json: - schema: *611 + schema: *610 examples: - default: *612 + default: *611 '404': *6 '500': *53 x-github: @@ -101436,8 +101468,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -101457,9 +101489,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '500': *53 put: @@ -101477,8 +101509,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -101503,16 +101535,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *601 examples: default: value: @@ -101540,9 +101572,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '422': *15 '500': *53 @@ -101561,8 +101593,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -101585,8 +101617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: + - *340 - *341 - - *342 - *17 - *19 - name: ruleset_id @@ -101602,9 +101634,9 @@ paths: application/json: schema: type: array - items: *327 + items: *326 examples: - default: *614 + default: *613 '404': *6 '500': *53 x-github: @@ -101623,8 +101655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -101642,7 +101674,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *614 examples: default: value: @@ -101697,8 +101729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *615 - *616 - *617 - *618 @@ -101706,17 +101739,16 @@ paths: - *620 - *621 - *622 - - *623 - *60 - *19 - *17 + - *623 - *624 - *625 - *626 - *627 - *628 - *629 - - *630 responses: '200': description: Response @@ -101724,24 +101756,24 @@ paths: application/json: schema: type: array - items: &634 + items: &633 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolved_at: type: - string @@ -101847,7 +101879,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *633 + - *632 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -102006,16 +102038,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 - - *629 + - *436 + - *628 responses: '200': description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -102069,9 +102101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -102079,8 +102111,8 @@ paths: schema: type: object properties: - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -102128,7 +102160,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -102227,9 +102259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 responses: @@ -102240,7 +102272,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -102267,6 +102299,7 @@ paths: - commit details: oneOf: + - *634 - *635 - *636 - *637 @@ -102279,7 +102312,6 @@ paths: - *644 - *645 - *646 - - *647 examples: default: value: @@ -102365,8 +102397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -102374,14 +102406,14 @@ paths: schema: type: object properties: - reason: &649 + reason: &648 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *648 + placeholder_id: *647 required: - reason - placeholder_id @@ -102398,7 +102430,7 @@ paths: schema: type: object properties: - reason: *649 + reason: *648 expire_at: type: - string @@ -102445,8 +102477,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: + - *340 - *341 - - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -102461,7 +102493,7 @@ paths: properties: incremental_scans: type: array - items: &650 + items: &649 description: Information on a single scan performed by secret scanning on the repository type: object @@ -102494,15 +102526,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *650 + items: *649 backfill_scans: type: array - items: *650 + items: *649 custom_pattern_backfill_scans: type: array items: allOf: - - *650 + - *649 - type: object properties: pattern_name: @@ -102515,7 +102547,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *650 + items: *649 examples: default: value: @@ -102580,8 +102612,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: + - *340 - *341 - - *342 - *60 - name: sort description: The property to sort the results by. @@ -102625,9 +102657,9 @@ paths: application/json: schema: type: array - items: *651 + items: *650 examples: - default: *652 + default: *651 '400': *14 '404': *6 x-github: @@ -102650,8 +102682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -102731,7 +102763,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -102821,9 +102853,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: &654 + default: &653 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -103053,8 +103085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -103167,7 +103199,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: default: value: @@ -103313,17 +103345,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '200': description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 + default: *653 '403': *27 '404': *6 x-github: @@ -103347,9 +103379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 requestBody: required: true content: @@ -103429,7 +103461,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -103520,17 +103552,17 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 - add_credit: *654 + default: *653 + add_credit: *653 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *125 + schema: *124 examples: invalid_state_transition: value: @@ -103561,9 +103593,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: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': *37 '400': *14 @@ -103590,17 +103622,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -103626,8 +103658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -103723,8 +103755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -103733,7 +103765,7 @@ paths: application/json: schema: type: array - items: &655 + items: &654 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -103766,8 +103798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -103845,8 +103877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -103940,8 +103972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: + - *340 - *341 - - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -104095,8 +104127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: + - *340 - *341 - - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -104106,7 +104138,7 @@ paths: application/json: schema: type: array - items: *655 + items: *654 examples: default: value: @@ -104139,8 +104171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: + - *340 - *341 - - *342 - name: sha in: path required: true @@ -104196,7 +104228,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *655 examples: default: value: @@ -104250,8 +104282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -104283,14 +104315,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &657 + schema: &656 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -104363,8 +104395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -104390,7 +104422,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *656 examples: default: value: @@ -104417,8 +104449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -104438,8 +104470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -104521,8 +104553,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -104558,8 +104590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -104569,9 +104601,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '404': *6 @@ -104591,8 +104623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: + - *340 - *341 - - *342 - *19 - *17 responses: @@ -104600,7 +104632,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &657 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -104612,7 +104644,7 @@ paths: required: - names examples: - default: &659 + default: &658 value: names: - octocat @@ -104635,8 +104667,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -104667,9 +104699,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *657 examples: - default: *659 + default: *658 '404': *6 '422': *7 x-github: @@ -104690,9 +104722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: + - *340 - *341 - - *342 - - &660 + - &659 name: per description: The time frame to display results for. in: query @@ -104723,7 +104755,7 @@ paths: - 128 clones: type: array - items: &661 + items: &660 title: Traffic type: object properties: @@ -104810,8 +104842,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -104905,8 +104937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -104969,9 +105001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: + - *340 - *341 - - *342 - - *660 + - *659 responses: '200': description: Response @@ -104992,7 +105024,7 @@ paths: - 3782 views: type: array - items: *661 + items: *660 required: - uniques - count @@ -105069,8 +105101,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -105106,7 +105138,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: value: @@ -105343,8 +105375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -105367,8 +105399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -105390,8 +105422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -105417,8 +105449,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -105510,9 +105542,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105553,7 +105585,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -105745,7 +105777,7 @@ paths: html_url: type: string format: uri - repository: *156 + repository: *155 score: type: number file_size: @@ -105764,7 +105796,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &662 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -105927,7 +105959,7 @@ paths: enum: - author-date - committer-date - - &663 + - &662 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 @@ -105996,7 +106028,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 comment_count: type: integer message: @@ -106015,7 +106047,7 @@ paths: url: type: string format: uri - verification: *522 + verification: *521 required: - author - committer @@ -106030,7 +106062,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 parents: type: array items: @@ -106042,12 +106074,12 @@ paths: type: string sha: type: string - repository: *156 + repository: *155 score: type: number node_id: type: string - text_matches: *662 + text_matches: *661 required: - sha - node_id @@ -106239,7 +106271,7 @@ paths: - interactions - created - updated - - *663 + - *662 - *17 - *19 - name: advanced_search @@ -106353,11 +106385,11 @@ paths: type: - string - 'null' - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: type: string state_reason: @@ -106367,7 +106399,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 comments: type: integer created_at: @@ -106381,7 +106413,7 @@ paths: - string - 'null' format: date-time - text_matches: *662 + text_matches: *661 pull_request: type: object properties: @@ -106430,7 +106462,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *245 performed_via_github_app: anyOf: - type: 'null' @@ -106655,7 +106687,7 @@ paths: enum: - created - updated - - *663 + - *662 - *17 - *19 responses: @@ -106700,7 +106732,7 @@ paths: - 'null' score: type: number - text_matches: *662 + text_matches: *661 required: - id - node_id @@ -106785,7 +106817,7 @@ paths: - forks - help-wanted-issues - updated - - *663 + - *662 - *17 - *19 responses: @@ -107031,7 +107063,7 @@ paths: - admin - pull - push - text_matches: *662 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -107339,7 +107371,7 @@ paths: - string - 'null' format: uri - text_matches: *662 + text_matches: *661 related: type: - array @@ -107532,7 +107564,7 @@ paths: - followers - repositories - joined - - *663 + - *662 - *17 - *19 responses: @@ -107642,7 +107674,7 @@ paths: type: - boolean - 'null' - text_matches: *662 + text_matches: *661 blog: type: - string @@ -107724,7 +107756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &666 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -107736,9 +107768,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -107765,7 +107797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *666 + - *665 requestBody: required: true content: @@ -107829,16 +107861,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -107866,7 +107898,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *666 + - *665 responses: '204': description: Response @@ -107895,7 +107927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -107905,9 +107937,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 x-github: @@ -107933,7 +107965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *666 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -107984,7 +108016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108021,7 +108053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108061,7 +108093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108098,16 +108130,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '200': description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-user-is-a-team-maintainer: *667 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -108140,7 +108172,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 requestBody: required: false @@ -108166,9 +108198,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: *668 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -108202,7 +108234,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -108230,7 +108262,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -108240,9 +108272,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 '404': *6 @@ -108272,15 +108304,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *669 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -108430,9 +108462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 requestBody: required: false content: @@ -108482,9 +108514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '204': description: Response @@ -108509,7 +108541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -108519,9 +108551,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: *670 + response-if-child-teams-exist: *669 headers: Link: *66 '404': *6 @@ -108554,7 +108586,7 @@ paths: application/json: schema: oneOf: - - &671 + - &670 title: Private User description: Private User type: object @@ -108804,7 +108836,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &696 + - &695 title: Public User description: Public User type: object @@ -109138,7 +109170,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: default: value: @@ -109341,9 +109373,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -109482,17 +109514,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -109536,7 +109568,7 @@ paths: type: integer secrets: type: array - items: &672 + items: &671 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109578,7 +109610,7 @@ paths: - visibility - selected_repositories_url examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -109650,13 +109682,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *672 + schema: *671 examples: default: value: @@ -109686,7 +109718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 requestBody: required: true content: @@ -109731,7 +109763,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -109759,7 +109791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '204': description: Response @@ -109784,7 +109816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 responses: '200': description: Response @@ -109800,9 +109832,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *202 + default: *201 '401': *23 '403': *27 '404': *6 @@ -109827,7 +109859,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 requestBody: required: true content: @@ -109881,7 +109913,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -109914,7 +109946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -109946,15 +109978,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '401': *23 @@ -109980,7 +110012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 requestBody: required: false content: @@ -110010,9 +110042,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -110034,7 +110066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': *37 '304': *35 @@ -110063,13 +110095,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': description: Response content: application/json: - schema: &673 + schema: &672 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -110122,7 +110154,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &674 + default: &673 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -110154,7 +110186,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *252 - name: export_id in: path required: true @@ -110167,9 +110199,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *672 examples: - default: *674 + default: *673 '404': *6 x-github: githubCloudOnly: false @@ -110190,7 +110222,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *252 responses: '200': description: Response @@ -110206,9 +110238,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: *675 + default: *674 '304': *35 '500': *53 '401': *23 @@ -110237,7 +110269,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *252 requestBody: required: true content: @@ -110293,11 +110325,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *344 + repository: *343 machine: anyOf: - type: 'null' - - *461 + - *460 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -111094,15 +111126,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '400': *14 @@ -111134,15 +111166,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '500': *53 '401': *23 '403': *27 @@ -111172,9 +111204,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: &686 + default: &685 value: - id: 197 name: hello_docker @@ -111275,7 +111307,7 @@ paths: application/json: schema: type: array - items: &676 + items: &675 title: Email description: Email type: object @@ -111345,9 +111377,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: &688 + default: &687 value: - email: octocat@github.com verified: true @@ -111424,7 +111456,7 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: default: value: @@ -111682,7 +111714,7 @@ paths: application/json: schema: type: array - items: &677 + items: &676 title: GPG Key description: A unique encryption key type: object @@ -111827,7 +111859,7 @@ paths: - subkeys - revoked examples: - default: &706 + default: &705 value: - id: 3 name: Octocat's GPG Key @@ -111912,9 +111944,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *676 examples: - default: &678 + default: &677 value: id: 3 name: Octocat's GPG Key @@ -111971,7 +112003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &679 + - &678 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -111983,9 +112015,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *676 examples: - default: *678 + default: *677 '404': *6 '304': *35 '403': *27 @@ -112008,7 +112040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *679 + - *678 responses: '204': description: Response @@ -112210,7 +112242,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *148 + default: *147 headers: Link: *66 '404': *6 @@ -112236,7 +112268,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -112262,7 +112294,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -112296,12 +112328,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *238 '204': description: Response when there are no restrictions x-github: @@ -112325,7 +112357,7 @@ paths: required: true content: application/json: - schema: *533 + schema: *532 examples: default: value: @@ -112336,7 +112368,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -112417,7 +112449,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -112442,7 +112474,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -112475,7 +112507,7 @@ paths: application/json: schema: type: array - items: &680 + items: &679 title: Key description: Key type: object @@ -112578,9 +112610,9 @@ paths: description: Response content: application/json: - schema: *680 + schema: *679 examples: - default: &681 + default: &680 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -112613,15 +112645,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '200': description: Response content: application/json: - schema: *680 + schema: *679 examples: - default: *681 + default: *680 '404': *6 '304': *35 '403': *27 @@ -112644,7 +112676,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '204': description: Response @@ -112677,7 +112709,7 @@ paths: application/json: schema: type: array - items: &682 + items: &681 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112756,7 +112788,7 @@ paths: - account - plan examples: - default: &683 + default: &682 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112818,9 +112850,9 @@ paths: application/json: schema: type: array - items: *682 + items: *681 examples: - default: *683 + default: *682 headers: Link: *66 '304': *35 @@ -112860,7 +112892,7 @@ paths: application/json: schema: type: array - items: *255 + items: *254 examples: default: value: @@ -112974,7 +113006,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -113061,7 +113093,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -113133,7 +113165,7 @@ paths: application/json: schema: type: array - items: *257 + items: *256 examples: default: value: @@ -113395,7 +113427,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -113575,7 +113607,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *257 - name: exclude in: query required: false @@ -113588,7 +113620,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -113782,7 +113814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *257 responses: '302': description: Response @@ -113808,7 +113840,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *257 responses: '204': description: Response @@ -113837,8 +113869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *684 + - *257 + - *683 responses: '204': description: Response @@ -113862,7 +113894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *257 - *17 - *19 responses: @@ -113951,7 +113983,7 @@ paths: - docker - nuget - container - - *685 + - *684 - *19 - *17 responses: @@ -113961,10 +113993,10 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *686 - '400': *687 + default: *685 + '400': *686 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113984,16 +114016,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: &707 + default: &706 value: id: 40201 name: octo-name @@ -114106,8 +114138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '204': description: Response @@ -114137,8 +114169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - name: token description: package token schema: @@ -114170,8 +114202,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: + - *264 - *265 - - *266 - *19 - *17 - name: state @@ -114191,7 +114223,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -114240,15 +114272,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -114284,9 +114316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -114316,9 +114348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -114355,9 +114387,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: *688 + default: *687 headers: Link: *66 '304': *35 @@ -114470,7 +114502,7 @@ paths: type: array items: *78 examples: - default: &695 + default: &694 summary: Default response value: - id: 1296269 @@ -114788,9 +114820,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -114829,9 +114861,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: *689 + default: *688 headers: Link: *66 '304': *35 @@ -114854,7 +114886,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -114878,7 +114910,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -114911,7 +114943,7 @@ paths: application/json: schema: type: array - items: &690 + items: &689 title: Social account description: Social media account type: object @@ -114928,7 +114960,7 @@ paths: - provider - url examples: - default: &691 + default: &690 value: - provider: twitter url: https://twitter.com/github @@ -114991,9 +115023,9 @@ paths: application/json: schema: type: array - items: *690 + items: *689 examples: - default: *691 + default: *690 '422': *15 '304': *35 '404': *6 @@ -115081,7 +115113,7 @@ paths: application/json: schema: type: array - items: &692 + items: &691 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -115101,7 +115133,7 @@ paths: - title - created_at examples: - default: &724 + default: &723 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115166,9 +115198,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *691 examples: - default: &693 + default: &692 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115198,7 +115230,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: - - &694 + - &693 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -115210,9 +115242,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *691 examples: - default: *693 + default: *692 '404': *6 '304': *35 '403': *27 @@ -115235,7 +115267,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: - - *694 + - *693 responses: '204': description: Response @@ -115264,7 +115296,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &725 + - &724 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 @@ -115289,11 +115321,11 @@ paths: type: array items: *78 examples: - default-response: *695 + default-response: *694 application/vnd.github.v3.star+json: schema: type: array - items: &726 + items: &725 title: Starred Repository description: Starred Repository type: object @@ -115449,8 +115481,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: + - *340 - *341 - - *342 responses: '204': description: Response if this repository is starred by you @@ -115478,8 +115510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -115503,8 +115535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -115537,9 +115569,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 '304': *35 @@ -115576,7 +115608,7 @@ paths: application/json: schema: type: array - items: *337 + items: *336 examples: default: value: @@ -115662,10 +115694,10 @@ paths: application/json: schema: oneOf: - - *671 - - *696 + - *670 + - *695 examples: - default-response: &700 + default-response: &699 summary: Default response value: login: octocat @@ -115700,7 +115732,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &701 + response-with-git-hub-plan-information: &700 summary: Response with GitHub plan information value: login: octocat @@ -115757,14 +115789,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &698 + - &697 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -115798,9 +115830,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: - draft_issue: *287 + draft_issue: *286 '304': *35 '403': *27 '401': *23 @@ -115823,7 +115855,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *697 + - *696 - *17 responses: '200': @@ -115858,8 +115890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *698 - - *281 + - *697 + - *280 requestBody: required: true content: @@ -115933,17 +115965,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *699 + schema: *698 examples: table_view: summary: Response for creating a table view - value: *291 + value: *290 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -115985,11 +116017,11 @@ paths: application/json: schema: oneOf: - - *671 - - *696 + - *670 + - *695 examples: - default-response: *700 - response-with-git-hub-plan-information: *701 + default-response: *699 + response-with-git-hub-plan-information: *700 '404': *6 x-github: githubCloudOnly: false @@ -116039,8 +116071,8 @@ paths: required: - subject_digests examples: - default: *702 - withPredicateType: *703 + default: *701 + withPredicateType: *702 responses: '200': description: Response @@ -116080,7 +116112,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *704 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116269,12 +116301,12 @@ paths: initiator: type: string examples: - default: *401 + default: *400 '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -116336,7 +116368,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *197 + items: *196 examples: default: summary: Example response for listing user copilot spaces @@ -116551,9 +116583,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &705 + default: &704 summary: Example response for a user copilot space value: id: 42 @@ -116652,9 +116684,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 x-github: @@ -116778,9 +116810,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 '422': *15 @@ -116857,7 +116889,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *199 + items: *198 examples: default: value: @@ -117000,7 +117032,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -117111,7 +117143,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -117241,7 +117273,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *200 + items: *199 examples: default: value: @@ -117333,7 +117365,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117349,7 +117381,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117402,7 +117434,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117469,7 +117501,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -117546,9 +117578,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *686 + default: *685 '403': *27 '401': *23 x-github: @@ -117932,9 +117964,9 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: - default: *706 + default: *705 headers: Link: *66 x-github: @@ -118038,7 +118070,7 @@ paths: application/json: schema: *20 examples: - default: *532 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118163,7 +118195,7 @@ paths: - docker - nuget - container - - *685 + - *684 - *70 - *19 - *17 @@ -118174,12 +118206,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *686 + default: *685 '403': *27 '401': *23 - '400': *687 + '400': *686 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118199,17 +118231,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: *707 + default: *706 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118230,8 +118262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '204': @@ -118264,8 +118296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 - name: token description: package token @@ -118298,8 +118330,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: + - *264 - *265 - - *266 - *70 responses: '200': @@ -118308,7 +118340,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -118366,16 +118398,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 - *70 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -118410,10 +118442,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -118445,10 +118477,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -118489,9 +118521,9 @@ paths: application/json: schema: type: array - items: *279 + items: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -118513,16 +118545,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *280 - *70 responses: '200': description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -118544,7 +118576,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *280 - *70 - *17 - *45 @@ -118556,9 +118588,9 @@ paths: application/json: schema: type: array - items: *284 + items: *283 examples: - default: *708 + default: *707 headers: Link: *66 '304': *35 @@ -118580,7 +118612,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true content: @@ -118618,7 +118650,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *709 + items: *708 required: - name - data_type @@ -118634,7 +118666,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *710 + iteration_configuration: *709 required: - name - data_type @@ -118656,20 +118688,20 @@ paths: value: name: Due date data_type: date - single_select_field: *711 - iteration_field: *712 + single_select_field: *710 + iteration_field: *711 responses: '201': description: Response content: application/json: - schema: *284 + schema: *283 examples: - text_field: *713 - number_field: *714 - date_field: *715 - single_select_field: *716 - iteration_field: *717 + text_field: *712 + number_field: *713 + date_field: *714 + single_select_field: *715 + iteration_field: *716 '304': *35 '403': *27 '401': *23 @@ -118690,17 +118722,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *718 + - *280 + - *717 - *70 responses: '200': description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: *719 + default: *718 headers: Link: *66 '304': *35 @@ -118723,7 +118755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - *45 - *46 @@ -118756,9 +118788,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -118780,7 +118812,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -118850,22 +118882,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -118885,9 +118917,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - - *290 + - *289 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -118907,9 +118939,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -118930,9 +118962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -119005,13 +119037,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -119031,9 +119063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 responses: '204': description: Response @@ -119055,9 +119087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *280 - *70 - - *720 + - *719 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -119083,9 +119115,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -119304,9 +119336,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 x-github: @@ -119329,11 +119361,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing AI credit usage report @@ -119462,11 +119494,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -119595,9 +119627,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *70 - - *117 - - *721 - - *119 + - *116 + - *720 + - *118 responses: '200': description: Response when getting a billing usage report @@ -119692,12 +119724,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *721 + - *121 - *722 - - *122 - - *723 responses: '200': description: Response when getting a billing usage summary @@ -119831,9 +119863,9 @@ paths: application/json: schema: type: array - items: *690 + items: *689 examples: - default: *691 + default: *690 headers: Link: *66 x-github: @@ -119863,9 +119895,9 @@ paths: application/json: schema: type: array - items: *692 + items: *691 examples: - default: *724 + default: *723 headers: Link: *66 x-github: @@ -119890,7 +119922,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *725 + - *724 - *60 - *17 - *19 @@ -119902,11 +119934,11 @@ paths: schema: anyOf: - type: array - items: *726 + items: *725 - type: array items: *78 examples: - default-response: *695 + default-response: *694 headers: Link: *66 x-github: @@ -119935,9 +119967,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *276 + default: *275 headers: Link: *66 x-github: @@ -120066,7 +120098,7 @@ webhooks: type: string enum: - disabled - enterprise: &727 + enterprise: &726 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120135,7 +120167,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &728 + installation: &727 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120156,7 +120188,7 @@ webhooks: required: - id - node_id - organization: &729 + organization: &728 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120229,7 +120261,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &730 + repository: &729 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -121144,10 +121176,10 @@ webhooks: type: string enum: - enabled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -121223,11 +121255,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: &731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: &730 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) @@ -121450,11 +121482,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -121642,11 +121674,11 @@ webhooks: - everyone required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -121730,7 +121762,7 @@ webhooks: type: string enum: - completed - check_run: &733 + check_run: &732 title: CheckRun description: A check performed on the code of a given code change type: object @@ -121796,7 +121828,7 @@ webhooks: pull_requests: type: array items: *85 - repository: *156 + repository: *155 status: type: string enum: @@ -121840,7 +121872,7 @@ webhooks: - examples: - neutral - deployment: *732 + deployment: *731 details_url: type: string examples: @@ -121938,10 +121970,10 @@ webhooks: - output - app - pull_requests - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -122332,11 +122364,11 @@ webhooks: type: string enum: - created - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -122730,11 +122762,11 @@ webhooks: type: string enum: - requested_action - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 requested_action: description: The action requested by the user. type: object @@ -123137,11 +123169,11 @@ webhooks: type: string enum: - rerequested - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -124126,10 +124158,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -124838,10 +124870,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -125544,10 +125576,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -125716,7 +125748,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -125868,20 +125900,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &734 + commit_oid: &733 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: *727 - installation: *728 - organization: *729 - ref: &735 + enterprise: *726 + installation: *727 + organization: *728 + ref: &734 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: *730 + repository: *729 sender: *4 required: - action @@ -126048,7 +126080,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126289,12 +126321,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -126392,7 +126424,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -126577,12 +126609,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -126751,7 +126783,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126928,12 +126960,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -127034,7 +127066,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127223,9 +127255,9 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -127233,7 +127265,7 @@ webhooks: type: - string - 'null' - repository: *730 + repository: *729 sender: *4 required: - action @@ -127332,7 +127364,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127479,12 +127511,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -127653,7 +127685,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127805,10 +127837,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -128068,10 +128100,10 @@ webhooks: - updated_at - author_association - body - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -128152,18 +128184,18 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *729 - pusher_type: &736 + organization: *728 + pusher_type: &735 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &737 + ref: &736 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -128173,7 +128205,7 @@ webhooks: enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -128255,10 +128287,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128343,9 +128375,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128422,10 +128454,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128502,10 +128534,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -128582,19 +128614,19 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - repository: *730 - organization: *729 + enterprise: *726 + installation: *727 + repository: *729 + organization: *728 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *295 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *295 required: - action - repository @@ -128670,18 +128702,18 @@ webhooks: title: delete event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - pusher_type: *736 - ref: *737 + enterprise: *726 + installation: *727 + organization: *728 + pusher_type: *735 + ref: *736 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -128761,11 +128793,11 @@ webhooks: type: string enum: - assignees_changed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -128845,11 +128877,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -128930,11 +128962,11 @@ webhooks: type: string enum: - auto_reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129015,11 +129047,11 @@ webhooks: type: string enum: - created - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129098,11 +129130,11 @@ webhooks: type: string enum: - dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129181,11 +129213,11 @@ webhooks: type: string enum: - fixed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129265,11 +129297,11 @@ webhooks: type: string enum: - reintroduced - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129348,11 +129380,11 @@ webhooks: type: string enum: - reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -129429,9 +129461,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - key: &738 + enterprise: *726 + installation: *727 + key: &737 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -129469,8 +129501,8 @@ webhooks: - verified - created_at - read_only - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -129547,11 +129579,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - key: *738 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + key: *737 + organization: *728 + repository: *729 sender: *4 required: - action @@ -130118,12 +130150,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: &742 + workflow: &741 title: Workflow type: - object @@ -130874,13 +130906,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *499 + - *498 pull_requests: type: array - items: *582 - repository: *730 - organization: *729 - installation: *728 + items: *581 + repository: *729 + organization: *728 + installation: *727 sender: *4 responses: '200': @@ -130951,7 +130983,7 @@ webhooks: type: string enum: - approved - approver: &739 + approver: &738 type: object properties: avatar_url: @@ -130994,11 +131026,11 @@ webhooks: type: string comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: &740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: &739 type: array items: type: object @@ -131079,7 +131111,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &740 type: object properties: conclusion: @@ -131825,18 +131857,18 @@ webhooks: type: string enum: - rejected - approver: *739 + approver: *738 comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: *740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: *739 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *740 workflow_job_runs: type: array items: @@ -132553,13 +132585,13 @@ webhooks: type: string enum: - requested - enterprise: *727 + enterprise: *726 environment: type: string - installation: *728 - organization: *729 - repository: *730 - requestor: &747 + installation: *727 + organization: *728 + repository: *729 + requestor: &746 title: User type: - object @@ -134492,12 +134524,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Deployment Workflow Run type: @@ -135188,7 +135220,7 @@ webhooks: type: string enum: - answered - answer: &745 + answer: &744 type: object properties: author_association: @@ -135348,11 +135380,11 @@ webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135479,11 +135511,11 @@ webhooks: - from required: - category - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135566,11 +135598,11 @@ webhooks: type: string enum: - closed - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135652,7 +135684,7 @@ webhooks: type: string enum: - created - comment: &744 + comment: &743 type: object properties: author_association: @@ -135812,11 +135844,11 @@ webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135899,12 +135931,12 @@ webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -135999,12 +136031,12 @@ webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136088,11 +136120,11 @@ webhooks: type: string enum: - created - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136174,11 +136206,11 @@ webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136278,11 +136310,11 @@ webhooks: type: string required: - from - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136364,10 +136396,10 @@ webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *727 - installation: *728 - label: &746 + discussion: *742 + enterprise: *726 + installation: *727 + label: &745 title: Label type: object properties: @@ -136400,8 +136432,8 @@ webhooks: - color - default - description - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136484,11 +136516,11 @@ webhooks: type: string enum: - locked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136570,11 +136602,11 @@ webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136656,11 +136688,11 @@ webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136745,16 +136777,16 @@ webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *730 + new_discussion: *742 + new_repository: *729 required: - new_discussion - new_repository - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136837,10 +136869,10 @@ webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *729 - repository: *730 + discussion: *742 + old_answer: *744 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136922,12 +136954,12 @@ webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137010,11 +137042,11 @@ webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137096,11 +137128,11 @@ webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137173,7 +137205,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *727 + enterprise: *726 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -137851,9 +137883,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - forkee @@ -137999,9 +138031,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pages: description: The pages that were updated. type: array @@ -138039,7 +138071,7 @@ webhooks: - action - sha - html_url - repository: *730 + repository: *729 sender: *4 required: - pages @@ -138115,10 +138147,10 @@ webhooks: type: string enum: - created - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: &748 + organization: *728 + repositories: &747 description: An array of repository objects that the installation can access. type: array @@ -138144,8 +138176,8 @@ webhooks: - name - full_name - private - repository: *730 - requester: *747 + repository: *729 + requester: *746 sender: *4 required: - action @@ -138220,11 +138252,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -138301,11 +138333,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -138382,10 +138414,10 @@ webhooks: type: string enum: - added - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: &749 + organization: *728 + repositories_added: &748 description: An array of repository objects, which were added to the installation. type: array @@ -138431,15 +138463,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *730 - repository_selection: &750 + repository: *729 + repository_selection: &749 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *746 sender: *4 required: - action @@ -138518,10 +138550,10 @@ webhooks: type: string enum: - removed - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: *749 + organization: *728 + repositories_added: *748 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -138548,9 +138580,9 @@ webhooks: - name - full_name - private - repository: *730 - repository_selection: *750 - requester: *747 + repository: *729 + repository_selection: *749 + requester: *746 sender: *4 required: - action @@ -138629,11 +138661,11 @@ webhooks: type: string enum: - suspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -138815,10 +138847,10 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 target_type: type: string @@ -138897,11 +138929,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -139067,7 +139099,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 user: title: User type: @@ -139153,8 +139185,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139966,8 +139998,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139984,7 +140016,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -140328,8 +140360,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -140409,7 +140441,7 @@ webhooks: type: string enum: - deleted - comment: &751 + comment: &750 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -140566,7 +140598,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 required: - url - html_url @@ -140580,8 +140612,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141389,8 +141421,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141407,7 +141439,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -141753,8 +141785,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -141834,7 +141866,7 @@ webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -141846,9 +141878,9 @@ webhooks: type: string required: - from - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142659,8 +142691,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142677,7 +142709,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -143021,8 +143053,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -143103,9 +143135,9 @@ webhooks: type: string enum: - pinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143918,8 +143950,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143936,7 +143968,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -144282,8 +144314,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -144363,9 +144395,9 @@ webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145178,8 +145210,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145196,7 +145228,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -145542,8 +145574,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145632,9 +145664,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145723,9 +145755,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145813,9 +145845,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145904,9 +145936,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145986,10 +146018,10 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - issue: &752 + assignee: *746 + enterprise: *726 + installation: *727 + issue: &751 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146800,11 +146832,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146821,7 +146853,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -146924,8 +146956,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147005,8 +147037,8 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147822,11 +147854,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147843,7 +147875,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -148089,8 +148121,8 @@ webhooks: required: - state - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -148169,8 +148201,8 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148977,11 +149009,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148998,7 +149030,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -149100,8 +149132,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -149180,8 +149212,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150011,11 +150043,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150032,7 +150064,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -150113,7 +150145,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &753 + milestone: &752 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150256,8 +150288,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -150356,8 +150388,8 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151168,11 +151200,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151186,7 +151218,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -151292,9 +151324,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -151374,9 +151406,9 @@ webhooks: type: string enum: - field_added - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was set or updated on the @@ -151495,8 +151527,8 @@ webhooks: - id required: - from - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -151576,9 +151608,9 @@ webhooks: type: string enum: - field_removed - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -151641,8 +151673,8 @@ webhooks: - 'null' required: - id - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -151722,8 +151754,8 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152533,11 +152565,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152551,7 +152583,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -152657,9 +152689,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -152739,8 +152771,8 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153575,11 +153607,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153593,7 +153625,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -153676,8 +153708,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -153756,8 +153788,8 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154586,11 +154618,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154607,7 +154639,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -154687,9 +154719,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *753 - organization: *729 - repository: *730 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -155576,11 +155608,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155680,7 +155712,7 @@ webhooks: required: - login - id - type: *246 + type: *245 required: - id - number @@ -156172,8 +156204,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156980,11 +157012,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157001,7 +157033,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -157107,8 +157139,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -157188,9 +157220,9 @@ webhooks: type: string enum: - pinned - enterprise: *727 - installation: *728 - issue: &754 + enterprise: *726 + installation: *727 + issue: &753 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -157995,11 +158027,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158016,7 +158048,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -158118,8 +158150,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -158198,8 +158230,8 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159032,11 +159064,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159133,9 +159165,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *729 - repository: *730 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -160023,11 +160055,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160044,7 +160076,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -160637,11 +160669,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -160721,12 +160753,12 @@ webhooks: type: string enum: - typed - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -160807,7 +160839,7 @@ webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: - object @@ -160879,11 +160911,11 @@ webhooks: required: - login - id - enterprise: *727 - installation: *728 - issue: *752 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + organization: *728 + repository: *729 sender: *4 required: - action @@ -160962,12 +160994,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - issue: *752 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161047,8 +161079,8 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161881,11 +161913,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161902,7 +161934,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -161982,8 +162014,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162063,11 +162095,11 @@ webhooks: type: string enum: - unpinned - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162146,12 +162178,12 @@ webhooks: type: string enum: - untyped - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162231,11 +162263,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162313,11 +162345,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162427,11 +162459,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162513,9 +162545,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: &755 + enterprise: *726 + installation: *727 + marketplace_purchase: &754 title: Marketplace Purchase type: object required: @@ -162603,8 +162635,8 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: &756 + organization: *728 + previous_marketplace_purchase: &755 title: Marketplace Purchase type: object properties: @@ -162688,7 +162720,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -162768,10 +162800,10 @@ webhooks: - changed effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162859,7 +162891,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -162941,10 +162973,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163030,7 +163062,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -163111,8 +163143,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 marketplace_purchase: title: Marketplace Purchase type: object @@ -163198,9 +163230,9 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -163280,12 +163312,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -163387,11 +163419,11 @@ webhooks: type: string required: - to - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163493,11 +163525,11 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163576,11 +163608,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163658,11 +163690,11 @@ webhooks: type: string enum: - added - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163740,7 +163772,7 @@ webhooks: required: - login - id - team: &757 + team: &756 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163970,11 +164002,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164053,7 +164085,7 @@ webhooks: required: - login - id - team: *757 + team: *756 required: - action - scope @@ -164135,8 +164167,8 @@ webhooks: type: string enum: - checks_requested - installation: *728 - merge_group: &758 + installation: *727 + merge_group: &757 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164155,15 +164187,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *421 + head_commit: *420 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164249,10 +164281,10 @@ webhooks: - merged - invalidated - dequeued - installation: *728 - merge_group: *758 - organization: *729 - repository: *730 + installation: *727 + merge_group: *757 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164325,7 +164357,7 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -164434,12 +164466,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *728 - organization: *729 + installation: *727 + organization: *728 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -164519,11 +164551,11 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164602,9 +164634,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - milestone: &759 + enterprise: *726 + installation: *727 + milestone: &758 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164746,8 +164778,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164826,11 +164858,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164940,11 +164972,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165024,11 +165056,11 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - milestone: *759 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *758 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165107,11 +165139,11 @@ webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165190,11 +165222,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165273,9 +165305,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - membership: &760 + enterprise: *726 + installation: *727 + membership: &759 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -165385,8 +165417,8 @@ webhooks: - role - organization_url - user - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165464,11 +165496,11 @@ webhooks: type: string enum: - member_added - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165547,8 +165579,8 @@ webhooks: type: string enum: - member_invited - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -165670,10 +165702,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 - user: *747 + user: *746 required: - action - invitation @@ -165751,11 +165783,11 @@ webhooks: type: string enum: - member_removed - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165842,11 +165874,11 @@ webhooks: properties: from: type: string - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165923,9 +165955,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -166448,7 +166480,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &761 + items: &760 title: Ruby Gems metadata type: object properties: @@ -166545,7 +166577,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -166621,9 +166653,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -166985,7 +167017,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 source_url: type: string format: uri @@ -167056,7 +167088,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -167236,12 +167268,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *727 + enterprise: *726 id: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - id @@ -167318,7 +167350,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &762 + personal_access_token_request: &761 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -167468,10 +167500,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *727 - organization: *729 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -167548,11 +167580,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -167628,11 +167660,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -167707,11 +167739,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *762 - organization: *729 - enterprise: *727 + personal_access_token_request: *761 + organization: *728 + enterprise: *726 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -167816,7 +167848,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *763 + last_response: *762 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -167848,8 +167880,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 zen: description: Random string of GitHub zen. @@ -168094,10 +168126,10 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: &764 + enterprise: *726 + installation: *727 + organization: *728 + project_card: &763 title: Project Card type: object properties: @@ -168220,7 +168252,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -168301,11 +168333,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -168385,9 +168417,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: title: Project Card type: object @@ -168517,7 +168549,7 @@ webhooks: repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -168611,11 +168643,11 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -168709,9 +168741,9 @@ webhooks: - from required: - column_id - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: allOf: - title: Project Card @@ -168908,7 +168940,7 @@ webhooks: type: string required: - after_id - repository: *730 + repository: *729 sender: *4 required: - action @@ -168988,10 +169020,10 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - organization: *729 - project: &766 + enterprise: *726 + installation: *727 + organization: *728 + project: &765 title: Project type: object properties: @@ -169118,7 +169150,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -169198,10 +169230,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_column: &765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: &764 title: Project Column type: object properties: @@ -169241,7 +169273,7 @@ webhooks: - name - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -169320,14 +169352,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -169416,11 +169448,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -169500,11 +169532,11 @@ webhooks: type: string enum: - moved - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -169584,11 +169616,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -169668,14 +169700,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project: *766 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -169776,11 +169808,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -169859,11 +169891,11 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -169944,9 +169976,9 @@ webhooks: type: string enum: - closed - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170027,9 +170059,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170110,9 +170142,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170233,9 +170265,9 @@ webhooks: type: string to: type: string - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -170318,7 +170350,7 @@ webhooks: type: string enum: - archived - changes: &770 + changes: &769 type: object properties: archived_at: @@ -170334,9 +170366,9 @@ webhooks: - string - 'null' format: date-time - installation: *728 - organization: *729 - projects_v2_item: &767 + installation: *727 + organization: *728 + projects_v2_item: &766 title: Projects v2 Item description: An item belonging to a project type: object @@ -170354,7 +170386,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *284 creator: *4 created_at: type: string @@ -170476,9 +170508,9 @@ webhooks: - 'null' to: type: string - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -170560,9 +170592,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -170643,9 +170675,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -170750,7 +170782,7 @@ webhooks: oneOf: - type: string - type: integer - - &768 + - &767 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -170774,7 +170806,7 @@ webhooks: required: - id - name - - &769 + - &768 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170814,8 +170846,8 @@ webhooks: oneOf: - type: string - type: integer + - *767 - *768 - - *769 type: - 'null' - string @@ -170838,9 +170870,9 @@ webhooks: - 'null' required: - body - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -170937,9 +170969,9 @@ webhooks: type: - string - 'null' - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171022,10 +171054,10 @@ webhooks: type: string enum: - restored - changes: *770 - installation: *728 - organization: *729 - projects_v2_item: *767 + changes: *769 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171107,9 +171139,9 @@ webhooks: type: string enum: - reopened - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171190,9 +171222,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171273,9 +171305,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171421,9 +171453,9 @@ webhooks: - string - 'null' format: date - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -171494,10 +171526,10 @@ webhooks: title: public event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - repository @@ -171574,13 +171606,13 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - number: &772 + assignee: *746 + enterprise: *726 + installation: *727 + number: &771 description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -173932,7 +173964,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -174014,11 +174046,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -176363,7 +176395,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -176445,11 +176477,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -178794,7 +178826,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -178876,13 +178908,13 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: &773 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: &772 allOf: - - *582 + - *581 - type: object properties: allow_auto_merge: @@ -178944,7 +178976,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *730 + repository: *729 sender: *4 required: - action @@ -179025,12 +179057,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -179110,11 +179142,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: &774 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: &773 title: Pull Request type: object properties: @@ -181458,7 +181490,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -181537,11 +181569,11 @@ webhooks: type: string enum: - dequeued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -183904,7 +183936,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *730 + repository: *729 sender: *4 required: - action @@ -184028,12 +184060,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -184113,11 +184145,11 @@ webhooks: type: string enum: - enqueued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -186465,7 +186497,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -186545,11 +186577,11 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -188900,7 +188932,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -188981,10 +189013,10 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -191333,7 +191365,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -191413,12 +191445,12 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: *774 - repository: *730 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: *773 + repository: *729 sender: *4 required: - action @@ -191497,12 +191529,12 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -191583,12 +191615,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -191668,12 +191700,12 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -192048,9 +192080,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -194283,7 +194315,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -194363,7 +194395,7 @@ webhooks: type: string enum: - deleted - comment: &776 + comment: &775 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -194656,9 +194688,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -196879,7 +196911,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -196959,11 +196991,11 @@ webhooks: type: string enum: - edited - changes: *775 - comment: *776 - enterprise: *727 - installation: *728 - organization: *729 + changes: *774 + comment: *775 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -199187,7 +199219,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -199268,9 +199300,9 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -201506,7 +201538,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 review: description: The review that was affected. type: object @@ -201757,9 +201789,9 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -203868,8 +203900,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: &777 + repository: *729 + review: &776 description: The review that was affected. type: object properties: @@ -204107,12 +204139,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -206462,7 +206494,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -206548,12 +206580,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -208910,7 +208942,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209105,12 +209137,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -211462,7 +211494,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -211549,12 +211581,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -213897,7 +213929,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214081,9 +214113,9 @@ webhooks: type: string enum: - submitted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -216322,8 +216354,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: *777 + repository: *729 + review: *776 sender: *4 required: - action @@ -216403,9 +216435,9 @@ webhooks: type: string enum: - resolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -218553,7 +218585,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -218950,9 +218982,9 @@ webhooks: type: string enum: - unresolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -221083,7 +221115,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -221482,10 +221514,10 @@ webhooks: type: string before: type: string - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -223823,7 +223855,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -223905,11 +223937,11 @@ webhooks: type: string enum: - unassigned - assignee: *778 - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + assignee: *777 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -226262,7 +226294,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -226341,11 +226373,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -228687,7 +228719,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -228768,10 +228800,10 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -231103,7 +231135,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -231306,7 +231338,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *727 + enterprise: *726 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -231401,8 +231433,8 @@ webhooks: - url - author - committer - installation: *728 - organization: *729 + installation: *727 + organization: *728 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232001,9 +232033,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -232480,7 +232512,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -232536,7 +232568,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -232614,9 +232646,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -232928,7 +232960,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -232978,7 +233010,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -233055,10 +233087,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - release: &779 + enterprise: *726 + installation: *727 + organization: *728 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -233389,7 +233421,7 @@ webhooks: - updated_at - zipball_url - body - repository: *730 + repository: *729 sender: *4 required: - action @@ -233466,11 +233498,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -233587,11 +233619,11 @@ webhooks: type: boolean required: - to - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -233669,9 +233701,9 @@ webhooks: type: string enum: - prereleased - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -234007,7 +234039,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -234083,10 +234115,10 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - release: &780 + enterprise: *726 + installation: *727 + organization: *728 + release: &779 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234419,7 +234451,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -234495,11 +234527,11 @@ webhooks: type: string enum: - released - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -234575,11 +234607,11 @@ webhooks: type: string enum: - unpublished - enterprise: *727 - installation: *728 - organization: *729 - release: *780 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *779 + repository: *729 sender: *4 required: - action @@ -234655,11 +234687,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -234735,11 +234767,11 @@ webhooks: type: string enum: - reported - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -234815,10 +234847,10 @@ webhooks: type: string enum: - archived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -234895,10 +234927,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -234976,10 +235008,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235064,10 +235096,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235182,10 +235214,10 @@ webhooks: - 'null' items: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235257,10 +235289,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 status: type: string @@ -235341,10 +235373,10 @@ webhooks: type: string enum: - privatized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235421,10 +235453,10 @@ webhooks: type: string enum: - publicized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235518,10 +235550,10 @@ webhooks: - name required: - repository - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -235601,11 +235633,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -235683,11 +235715,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -235765,11 +235797,11 @@ webhooks: type: string enum: - edited - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 changes: type: object properties: @@ -235788,16 +235820,16 @@ webhooks: properties: added: type: array - items: *298 + items: *297 deleted: type: array - items: *298 + items: *297 updated: type: array items: type: object properties: - condition: *298 + condition: *297 changes: type: object properties: @@ -235830,16 +235862,16 @@ webhooks: properties: added: type: array - items: *602 + items: *601 deleted: type: array - items: *602 + items: *601 updated: type: array items: type: object properties: - rule: *602 + rule: *601 changes: type: object properties: @@ -236076,10 +236108,10 @@ webhooks: - from required: - owner - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236157,10 +236189,10 @@ webhooks: type: string enum: - unarchived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236238,7 +236270,7 @@ webhooks: type: string enum: - create - alert: &781 + alert: &780 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -236363,10 +236395,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236576,10 +236608,10 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236657,11 +236689,11 @@ webhooks: type: string enum: - reopen - alert: *781 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *780 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236863,10 +236895,10 @@ webhooks: enum: - fixed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -236944,17 +236976,17 @@ webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri @@ -237084,10 +237116,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237165,11 +237197,11 @@ webhooks: type: string enum: - created - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237250,11 +237282,11 @@ webhooks: type: string enum: - created - alert: *782 - installation: *728 - location: *783 - organization: *729 - repository: *730 + alert: *781 + installation: *727 + location: *782 + organization: *728 + repository: *729 sender: *4 required: - location @@ -237492,11 +237524,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237574,11 +237606,11 @@ webhooks: type: string enum: - reopened - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237656,11 +237688,11 @@ webhooks: type: string enum: - resolved - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237738,12 +237770,12 @@ webhooks: type: string enum: - unassigned - alert: *782 + alert: *781 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237821,11 +237853,11 @@ webhooks: type: string enum: - validated - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237955,10 +237987,10 @@ webhooks: - organization - enterprise - - repository: *730 - enterprise: *727 - installation: *728 - organization: *729 + repository: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -238036,11 +238068,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: &784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: &783 description: The details of the security advisory, including summary, description, and severity. type: object @@ -238213,11 +238245,11 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: *784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: *783 sender: *4 required: - action @@ -238290,10 +238322,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -238466,11 +238498,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *727 - installation: *728 - organization: *729 - repository: *344 + security_and_analysis: *296 + enterprise: *726 + installation: *727 + organization: *728 + repository: *343 sender: *4 required: - changes @@ -238548,12 +238580,12 @@ webhooks: type: string enum: - cancelled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: &785 + sponsorship: &784 type: object properties: created_at: @@ -238858,12 +238890,12 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -238951,12 +238983,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -239033,17 +239065,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &786 + effective_date: &785 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: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -239117,7 +239149,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -239161,13 +239193,13 @@ webhooks: - from required: - tier - effective_date: *786 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + effective_date: *785 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -239244,13 +239276,13 @@ webhooks: type: string enum: - tier_changed - changes: *787 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + changes: *786 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -239324,10 +239356,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239411,10 +239443,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239848,15 +239880,15 @@ webhooks: type: - string - 'null' - enterprise: *727 + enterprise: *726 id: description: The unique identifier of the status. type: integer - installation: *728 + installation: *727 name: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 sha: description: The Commit SHA. @@ -239972,9 +240004,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240063,9 +240095,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240154,9 +240186,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240245,9 +240277,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240323,12 +240355,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - team: &788 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -240558,9 +240590,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -241030,7 +241062,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -241106,9 +241138,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -241578,7 +241610,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -241655,9 +241687,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -242127,7 +242159,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -242271,9 +242303,9 @@ webhooks: - from required: - permissions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -242743,7 +242775,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -242821,9 +242853,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -243293,7 +243325,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -243369,10 +243401,10 @@ webhooks: type: string enum: - started - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -243445,17 +243477,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *727 + enterprise: *726 inputs: type: - object - 'null' additionalProperties: true - installation: *728 - organization: *729 + installation: *727 + organization: *728 ref: type: string - repository: *730 + repository: *729 sender: *4 workflow: type: string @@ -243537,10 +243569,10 @@ webhooks: type: string enum: - completed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -243796,7 +243828,7 @@ webhooks: type: string required: - conclusion - deployment: *499 + deployment: *498 required: - action - repository @@ -243875,10 +243907,10 @@ webhooks: type: string enum: - in_progress - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -244160,7 +244192,7 @@ webhooks: required: - status - steps - deployment: *499 + deployment: *498 required: - action - repository @@ -244239,10 +244271,10 @@ webhooks: type: string enum: - queued - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: type: object @@ -244388,7 +244420,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *499 + deployment: *498 required: - action - repository @@ -244467,10 +244499,10 @@ webhooks: type: string enum: - waiting - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: type: object @@ -244617,7 +244649,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *499 + deployment: *498 required: - action - repository @@ -244697,12 +244729,12 @@ webhooks: type: string enum: - completed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object @@ -245721,12 +245753,12 @@ webhooks: type: string enum: - in_progress - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object @@ -246730,12 +246762,12 @@ webhooks: type: string enum: - requested - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 925a45e410..1330a73d3d 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -89875,9 +89875,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully created." - ] + "description": "A message indicating the result of the create operation" }, "budget": { "type": "object", @@ -89886,49 +89884,49 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded. For `user` and `multi_user_customer` scopes, this must be `true`." - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ + "enterprise", "organization", "repository", + "cost_center", "multi_user_customer", "user" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -89945,154 +89943,57 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "message", + "budget" + ] }, "examples": { "create-organization-budget": { "value": { "message": "Budget successfully created.", "budget": { - "description": "Response when updating a budget", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "ID of the budget." - }, - "budget_scope": { - "type": "string", - "description": "The type of scope for the budget", - "enum": [ - "enterprise", - "organization", - "repository", - "cost_center", - "multi_user_customer", - "user" - ], - "examples": [ - "enterprise" - ] - }, - "budget_entity_name": { - "type": "string", - "description": "The name of the entity to apply the budget to", - "examples": [ - "octocat/hello-world" - ] - }, - "user": { - "type": "string", - "description": "The user login when the budget is scoped to a single user (`user` scope).", - "examples": [ - "octocat" - ] - }, - "budget_amount": { - "type": "integer", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded", - "examples": [ - true - ] - }, - "budget_product_sku": { - "type": "string", - "description": "A single product or sku to apply the budget to.", - "examples": [ - "actions_linux" - ] - }, - "budget_type": { - "description": "The type of pricing for the budget", - "oneOf": [ - { - "type": "string", - "enum": [ - "ProductPricing" - ] - }, - { - "type": "string", - "enum": [ - "SkuPricing" - ] - } - ], - "examples": [ - "ProductPricing" - ] - }, - "budget_alerting": { - "type": "object", - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget", - "examples": [ - true - ] - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts", - "examples": [ - "mona", - "lisa" - ] - } - } - } - }, - "required": [ - "id", - "budget_amount", - "prevent_further_usage", - "budget_product_sku", - "budget_type", - "budget_alerting", - "budget_scope", - "budget_entity_name" - ] - }, - "examples": { - "default": { - "value": { - "id": "2066deda-923f-43f9-88d2-62395a28c0cdd", - "budget_type": "ProductPricing", - "budget_product_sku": "actions_linux", - "budget_scope": "repository", - "budget_entity_name": "example-repo-name", - "budget_amount": 0.0, - "prevent_further_usage": true, - "budget_alerting": { - "will_alert": true, - "alert_recipients": [ - "mona", - "lisa" - ] - } - } - } - } - } + "id": "f5236c62-157f-4d8f-a79e-ffb91058ee97", + "budget_type": "ProductPricing", + "budget_product_sku": "actions", + "budget_scope": "organization", + "budget_entity_name": "example-organization", + "budget_amount": 100, + "prevent_further_usage": true, + "budget_alerting": { + "will_alert": false, + "alert_recipients": [] } } } @@ -90852,9 +90753,7 @@ "properties": { "message": { "type": "string", - "examples": [ - "Budget successfully updated." - ] + "description": "A message indicating the result of the update operation" }, "budget": { "type": "object", @@ -90863,51 +90762,47 @@ "type": "string", "description": "ID of the budget." }, - "budget_amount": { - "type": "number", - "format": "float", - "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses." - }, - "prevent_further_usage": { - "type": "boolean", - "description": "Whether to prevent additional spending once the budget is exceeded" - }, - "budget_alerting": { - "type": "object", - "required": [ - "will_alert", - "alert_recipients" - ], - "properties": { - "will_alert": { - "type": "boolean", - "description": "Whether alerts are enabled for this budget" - }, - "alert_recipients": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Array of user login names who will receive alerts" - } - } - }, "budget_scope": { "type": "string", - "description": "The scope of the budget", + "description": "The type of scope for the budget", "enum": [ "enterprise", "organization", "repository", - "cost_center", - "multi_user_customer", - "user" + "cost_center" + ], + "examples": [ + "enterprise" ] }, "budget_entity_name": { "type": "string", "description": "The name of the entity to apply the budget to", - "default": "" + "examples": [ + "example-repository-name" + ] + }, + "budget_amount": { + "type": "integer", + "description": "The budget amount in whole dollars. For license-based products, this represents the number of licenses.", + "minimum": 0, + "examples": [ + 100 + ] + }, + "prevent_further_usage": { + "type": "boolean", + "description": "Whether to prevent additional spending once the budget is exceeded", + "examples": [ + true + ] + }, + "budget_product_sku": { + "type": "string", + "description": "A single product or sku to apply the budget to.", + "examples": [ + "actions_linux" + ] }, "budget_type": { "description": "The type of pricing for the budget", @@ -90924,15 +90819,41 @@ "SkuPricing" ] } + ], + "examples": [ + "ProductPricing" ] }, - "budget_product_sku": { - "type": "string", - "description": "A single product or SKU that will be covered in the budget" + "budget_alerting": { + "type": "object", + "properties": { + "will_alert": { + "type": "boolean", + "description": "Whether alerts are enabled for this budget", + "examples": [ + true + ] + }, + "alert_recipients": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Array of user login names who will receive alerts", + "examples": [ + "mona", + "lisa" + ] + } + } } } } - } + }, + "required": [ + "budget", + "message" + ] }, "examples": { "update-budget": { @@ -90944,7 +90865,7 @@ "budget_product_sku": "actions_linux", "budget_scope": "repository", "budget_entity_name": "org-name/example-repo-name", - "budget_amount": 0.0, + "budget_amount": 10, "prevent_further_usage": true, "budget_alerting": { "will_alert": true, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 901158f03c..4b0b7b27fa 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -938,7 +938,7 @@ paths: - subscriptions_url - type - url - type: &330 + type: &329 type: string description: The type of credit the user is receiving. enum: @@ -1098,7 +1098,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &126 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1131,7 +1131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &653 + - &652 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4253,7 +4253,7 @@ paths: schema: type: integer default: 30 - - &220 + - &219 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 @@ -4262,7 +4262,7 @@ paths: required: false schema: type: string - - &221 + - &220 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4282,7 +4282,7 @@ paths: application/json: schema: type: array - items: &222 + items: &221 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4378,7 +4378,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &222 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4441,7 +4441,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &125 + schema: &124 title: Validation Error description: Validation Error type: object @@ -4513,7 +4513,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &223 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4648,7 +4648,7 @@ paths: - request - response examples: - default: &225 + default: &224 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -10323,7 +10323,7 @@ paths: required: true content: application/json: - schema: &138 + schema: &137 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11035,7 +11035,7 @@ paths: description: Response content: application/json: - schema: &192 + schema: &191 type: array description: A list of default code security configurations items: @@ -11051,7 +11051,7 @@ paths: default configuration: *47 examples: - default: &193 + default: &192 value: - default_for_new_repos: public configuration: @@ -11513,7 +11513,7 @@ paths: default: value: default_for_new_repos: all - configuration: &191 + configuration: &190 value: id: 1325 target_type: organization @@ -11603,7 +11603,7 @@ paths: application/json: schema: type: array - items: &194 + items: &193 type: object description: Repositories associated with a code security configuration and attachment status @@ -11948,7 +11948,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &195 + repository: &194 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -12490,7 +12490,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &203 + - &202 name: classification in: query description: |- @@ -12499,7 +12499,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &204 + - &203 name: state in: query description: |- @@ -12508,7 +12508,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &205 + - &204 name: severity in: query description: |- @@ -12517,7 +12517,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &206 + - &205 name: ecosystem in: query description: |- @@ -12526,14 +12526,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &207 + - &206 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 - - &208 + - &207 name: epss_percentage in: query description: |- @@ -12545,7 +12545,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 - - &488 + - &487 name: has in: query description: |- @@ -12559,7 +12559,7 @@ paths: type: string enum: - patch - - &209 + - &208 name: assignee in: query description: |- @@ -12568,7 +12568,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &210 + - &209 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12578,7 +12578,7 @@ paths: enum: - development - runtime - - &211 + - &210 name: sort in: query description: |- @@ -12604,11 +12604,11 @@ paths: application/json: schema: type: array - items: &212 + items: &211 type: object description: A Dependabot alert. properties: - number: &181 + number: &180 type: integer description: The security alert number. readOnly: true @@ -12675,7 +12675,7 @@ paths: - transitive - inconclusive - - security_advisory: &489 + security_advisory: &488 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12908,29 +12908,29 @@ paths: - withdrawn_at version: '2026-03-10' security_vulnerability: *64 - url: &184 + url: &183 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &185 + html_url: &184 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &182 + created_at: &181 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: &183 + updated_at: &182 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: &187 + dismissed_at: &186 type: - string - 'null' @@ -12961,7 +12961,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &186 + fixed_at: &185 type: - string - 'null' @@ -12969,7 +12969,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &490 + auto_dismissed_at: &489 type: - string - 'null' @@ -12977,7 +12977,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &491 + dismissal_request: &490 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -13040,7 +13040,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &212 value: - number: 2 state: dismissed @@ -13425,7 +13425,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &213 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13451,7 +13451,7 @@ paths: - *65 additionalProperties: false examples: - default: &215 + default: &214 value: default_level: public accessible_repositories: @@ -14696,7 +14696,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &742 title: Discussion description: A Discussion in a repository. type: object @@ -15197,7 +15197,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &281 title: Milestone description: A collection of related issues and pull requests. @@ -15369,7 +15369,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &245 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15482,7 +15482,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &664 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -15566,7 +15566,7 @@ paths: pin: anyOf: - type: 'null' - - &561 + - &560 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15593,7 +15593,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &665 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -15612,7 +15612,7 @@ paths: - total_blocking issue_field_values: type: array - items: &545 + items: &544 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16436,7 +16436,7 @@ paths: type: string release: allOf: - - &593 + - &592 title: Release description: A release. type: object @@ -16518,7 +16518,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &593 title: Release Asset description: Data related to a release. type: object @@ -17150,7 +17150,7 @@ paths: url: type: string format: uri - user: &671 + user: &670 title: Public User description: Public User type: object @@ -19066,7 +19066,7 @@ paths: - closed - all default: open - - &249 + - &248 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -19117,7 +19117,7 @@ paths: type: array items: *82 examples: - default: &250 + default: &249 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20529,14 +20529,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &341 + - &340 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &342 + - &341 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20598,7 +20598,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &345 + '301': &344 description: Moved permanently content: application/json: @@ -20620,7 +20620,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &568 name: all description: If `true`, show notifications marked as read. in: query @@ -20628,7 +20628,7 @@ paths: schema: type: boolean default: false - - &570 + - &569 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20638,7 +20638,7 @@ paths: type: boolean default: false - *87 - - &571 + - &570 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: @@ -20670,7 +20670,7 @@ paths: properties: id: type: string - repository: &156 + repository: &155 title: Minimal Repository description: Minimal Repository type: object @@ -21020,7 +21020,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &296 type: - object - 'null' @@ -21237,7 +21237,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &571 value: - id: '1' repository: @@ -21963,7 +21963,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-an-organization parameters: - *74 - - &117 + - &116 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, @@ -21972,7 +21972,7 @@ paths: required: false schema: type: integer - - &118 + - &117 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 @@ -21981,7 +21981,7 @@ paths: required: false schema: type: integer - - &119 + - &118 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 @@ -21990,21 +21990,21 @@ paths: required: false schema: type: integer - - &120 + - &119 name: user description: The user name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &121 + - &120 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &122 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -22471,51 +22471,48 @@ paths: properties: message: type: string - examples: - - Budget successfully created. + description: A message indicating the result of the create operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded. For `user` and `multi_user_customer` - scopes, this must be `true`. - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: + - enterprise - organization - repository + - cost_center - multi_user_customer - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -22525,118 +22522,43 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - message + - budget examples: create-organization-budget: value: message: Budget successfully created. - budget: &115 - description: Response when updating a budget - content: - application/json: - schema: - type: object - properties: - id: - type: string - description: ID of the budget. - budget_scope: - type: string - description: The type of scope for the budget - enum: - - enterprise - - organization - - repository - - cost_center - - multi_user_customer - - user - examples: - - enterprise - budget_entity_name: - type: string - description: The name of the entity to apply the budget - to - examples: - - octocat/hello-world - user: - type: string - description: The user login when the budget is scoped - to a single user (`user` scope). - examples: - - octocat - budget_amount: - type: integer - description: The budget amount in whole dollars. For - license-based products, this represents the number - of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending - once the budget is exceeded - examples: - - true - budget_product_sku: - type: string - description: A single product or sku to apply the - budget to. - examples: - - actions_linux - budget_type: - description: The type of pricing for the budget - oneOf: - - type: string - enum: - - ProductPricing - - type: string - enum: - - SkuPricing - examples: - - ProductPricing - budget_alerting: - type: object - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this - budget - examples: - - true - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will - receive alerts - examples: - - mona - - lisa - required: - - id - - budget_amount - - prevent_further_usage - - budget_product_sku - - budget_type - - budget_alerting - - budget_scope - - budget_entity_name - examples: - default: - value: - id: 2066deda-923f-43f9-88d2-62395a28c0cdd - budget_type: ProductPricing - budget_product_sku: actions_linux - budget_scope: repository - budget_entity_name: example-repo-name - budget_amount: 0.0 - prevent_further_usage: true - budget_alerting: - will_alert: true - alert_recipients: - - mona - - lisa + budget: + id: f5236c62-157f-4d8f-a79e-ffb91058ee97 + budget_type: ProductPricing + budget_product_sku: actions + budget_scope: organization + budget_entity_name: example-organization + budget_amount: 100 + prevent_further_usage: true + budget_alerting: + will_alert: false + alert_recipients: [] '400': *14 '401': *23 '403': @@ -22688,7 +22610,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *74 - - &116 + - &115 name: budget_id description: The ID corresponding to the budget. in: path @@ -22696,7 +22618,105 @@ paths: schema: type: string responses: - '200': *115 + '200': + description: Response when updating a budget + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: ID of the budget. + budget_scope: + type: string + description: The type of scope for the budget + enum: + - enterprise + - organization + - repository + - cost_center + - multi_user_customer + - user + examples: + - enterprise + budget_entity_name: + type: string + description: The name of the entity to apply the budget to + examples: + - octocat/hello-world + user: + type: string + description: The user login when the budget is scoped to a single + user (`user` scope). + examples: + - octocat + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the budget + is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux + budget_type: + description: The type of pricing for the budget + oneOf: + - type: string + enum: + - ProductPricing + - type: string + enum: + - SkuPricing + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive alerts + examples: + - mona + - lisa + required: + - id + - budget_amount + - prevent_further_usage + - budget_product_sku + - budget_type + - budget_alerting + - budget_scope + - budget_entity_name + examples: + default: + value: + id: 2066deda-923f-43f9-88d2-62395a28c0cdd + budget_type: ProductPricing + budget_product_sku: actions_linux + budget_scope: repository + budget_entity_name: example-repo-name + budget_amount: 0.0 + prevent_further_usage: true + budget_alerting: + will_alert: true + alert_recipients: + - mona + - lisa '400': *14 '404': *6 '403': *27 @@ -22719,7 +22739,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 requestBody: required: true content: @@ -22792,52 +22812,46 @@ paths: properties: message: type: string - examples: - - Budget successfully updated. + description: A message indicating the result of the update operation budget: type: object properties: id: type: string description: ID of the budget. - budget_amount: - type: number - format: float - description: The budget amount in whole dollars. For license-based - products, this represents the number of licenses. - prevent_further_usage: - type: boolean - description: Whether to prevent additional spending once the - budget is exceeded - budget_alerting: - type: object - required: - - will_alert - - alert_recipients - properties: - will_alert: - type: boolean - description: Whether alerts are enabled for this budget - alert_recipients: - type: array - items: - type: string - description: Array of user login names who will receive - alerts budget_scope: type: string - description: The scope of the budget + description: The type of scope for the budget enum: - enterprise - organization - repository - cost_center - - multi_user_customer - - user + examples: + - enterprise budget_entity_name: type: string description: The name of the entity to apply the budget to - default: '' + examples: + - example-repository-name + budget_amount: + type: integer + description: The budget amount in whole dollars. For license-based + products, this represents the number of licenses. + minimum: 0 + examples: + - 100 + prevent_further_usage: + type: boolean + description: Whether to prevent additional spending once the + budget is exceeded + examples: + - true + budget_product_sku: + type: string + description: A single product or sku to apply the budget to. + examples: + - actions_linux budget_type: description: The type of pricing for the budget oneOf: @@ -22847,10 +22861,28 @@ paths: - type: string enum: - SkuPricing - budget_product_sku: - type: string - description: A single product or SKU that will be covered - in the budget + examples: + - ProductPricing + budget_alerting: + type: object + properties: + will_alert: + type: boolean + description: Whether alerts are enabled for this budget + examples: + - true + alert_recipients: + type: array + items: + type: string + description: Array of user login names who will receive + alerts + examples: + - mona + - lisa + required: + - budget + - message examples: update-budget: value: @@ -22861,7 +22893,7 @@ paths: budget_product_sku: actions_linux budget_scope: repository budget_entity_name: org-name/example-repo-name - budget_amount: 0.0 + budget_amount: 10 prevent_further_usage: true budget_alerting: will_alert: true @@ -22914,7 +22946,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *74 - - *116 + - *115 responses: '200': description: Response when deleting a budget @@ -22962,12 +22994,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *74 + - *116 - *117 - *118 - *119 - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -23099,8 +23131,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *74 - - *117 - - &721 + - *116 + - &720 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 @@ -23109,7 +23141,7 @@ paths: required: false schema: type: integer - - *119 + - *118 responses: '200': description: Billing usage report response for an organization @@ -23209,18 +23241,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *74 + - *116 - *117 - *118 - - *119 - - &722 + - &721 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *122 - - &723 + - *121 + - &722 name: sku description: The SKU to query for usage. in: query @@ -23363,7 +23395,7 @@ paths: description: Response content: application/json: - schema: &123 + schema: &122 title: Organization Full description: Organization Full type: object @@ -23764,7 +23796,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &124 + default-response: &123 value: login: github id: 1 @@ -24087,17 +24119,17 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *124 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: + - *124 - *125 - - *126 '409': *52 x-github: githubCloudOnly: false @@ -24227,7 +24259,7 @@ paths: type: integer repository_cache_usages: type: array - items: &352 + items: &351 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24303,7 +24335,7 @@ paths: type: integer runners: type: array - items: &127 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -24366,7 +24398,7 @@ paths: - size_gb - display_name - source - machine_size_details: &135 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -24475,7 +24507,7 @@ paths: - public_ip_enabled - platform examples: - default: &155 + default: &154 value: total_count: 2 runners: @@ -24613,9 +24645,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: &136 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -24672,7 +24704,7 @@ paths: type: integer images: type: array - items: &128 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -24731,7 +24763,7 @@ paths: - latest_version - state examples: - default: &130 + default: &129 value: total_count: 2 image_versions: @@ -24763,7 +24795,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *74 - - &129 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -24775,7 +24807,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *127 examples: default: value: @@ -24806,7 +24838,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *74 - - *129 + - *128 responses: '204': description: Response @@ -24829,7 +24861,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: - - *129 + - *128 - *74 responses: '200': @@ -24846,7 +24878,7 @@ paths: type: integer image_versions: type: array - items: &131 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -24884,7 +24916,7 @@ paths: - created_on - state_details examples: - default: *130 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24905,8 +24937,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: - *74 - - *129 - - &132 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -24919,7 +24951,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *130 examples: default: value: @@ -24946,8 +24978,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *74 - - *129 - - *132 + - *128 + - *131 responses: '204': description: Response @@ -24984,7 +25016,7 @@ paths: type: integer images: type: array - items: &133 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -25024,7 +25056,7 @@ paths: - display_name - source examples: - default: &134 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -25064,9 +25096,9 @@ paths: type: integer images: type: array - items: *133 + items: *132 examples: - default: *134 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25154,7 +25186,7 @@ paths: type: integer machine_specs: type: array - items: *135 + items: *134 examples: default: value: @@ -25224,7 +25256,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *74 - - &137 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -25236,9 +25268,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 headers: Link: *66 x-github: @@ -25259,7 +25291,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 requestBody: required: true content: @@ -25326,9 +25358,9 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -25345,15 +25377,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *74 - - *137 + - *136 responses: '202': description: Response content: application/json: - schema: *127 + schema: *126 examples: - default: *136 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25411,7 +25443,7 @@ paths: required: true content: application/json: - schema: *138 + schema: *137 examples: default: *44 responses: @@ -25504,7 +25536,7 @@ paths: required: - include_claim_keys examples: - default: &139 + default: &138 value: include_claim_keys: - repo @@ -25549,13 +25581,13 @@ paths: format. type: boolean examples: - default: *139 + default: *138 responses: '201': description: Empty response content: application/json: - schema: &165 + schema: &164 title: Empty Object description: An object without any properties. type: object @@ -25594,7 +25626,7 @@ paths: schema: type: object properties: - enabled_repositories: &140 + enabled_repositories: &139 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -25607,7 +25639,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: &141 + allowed_actions: &140 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -25615,12 +25647,12 @@ paths: - all - local_only - selected - selected_actions_url: &357 + selected_actions_url: &356 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: &142 + sha_pinning_required: &141 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -25662,9 +25694,9 @@ paths: schema: type: object properties: - enabled_repositories: *140 - allowed_actions: *141 - sha_pinning_required: *142 + enabled_repositories: *139 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled_repositories examples: @@ -25698,7 +25730,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &360 type: object properties: days: @@ -25740,7 +25772,7 @@ paths: required: true content: application/json: - schema: &362 + schema: &361 type: object properties: days: @@ -25783,7 +25815,7 @@ paths: description: Response content: application/json: - schema: &143 + schema: &142 type: object properties: approval_policy: @@ -25797,7 +25829,7 @@ paths: required: - approval_policy examples: - default: &363 + default: &362 value: approval_policy: first_time_contributors '404': *6 @@ -25828,7 +25860,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -25856,7 +25888,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &363 type: object required: - run_workflows_from_fork_pull_requests @@ -25882,7 +25914,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &144 + default: &143 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -25910,7 +25942,7 @@ paths: required: true content: application/json: - schema: &365 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -25933,7 +25965,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -25983,7 +26015,7 @@ paths: type: array items: *78 examples: - default: &148 + default: &147 value: total_count: 1 repositories: @@ -26168,7 +26200,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - &145 + - &144 name: repository_id description: The unique identifier of the repository. in: path @@ -26197,7 +26229,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -26226,7 +26258,7 @@ paths: description: Response content: application/json: - schema: &146 + schema: &145 type: object properties: github_owned_allowed: @@ -26248,7 +26280,7 @@ paths: items: type: string examples: - default: &147 + default: &146 value: github_owned_allowed: true verified_allowed: false @@ -26281,9 +26313,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -26415,7 +26447,7 @@ paths: type: array items: *78 examples: - default: *148 + default: *147 '403': *27 '404': *6 x-github: @@ -26484,7 +26516,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -26511,7 +26543,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: - *74 - - *145 + - *144 responses: '204': description: No content @@ -26545,17 +26577,17 @@ paths: description: Response content: application/json: - schema: &366 + schema: &365 type: object properties: - default_workflow_permissions: &149 + default_workflow_permissions: &148 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &150 + can_approve_pull_request_reviews: &149 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -26563,7 +26595,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &151 + default: &150 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -26596,13 +26628,13 @@ paths: required: false content: application/json: - schema: &367 + schema: &366 type: object properties: - default_workflow_permissions: *149 - can_approve_pull_request_reviews: *150 + default_workflow_permissions: *148 + can_approve_pull_request_reviews: *149 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26647,7 +26679,7 @@ paths: type: number runner_groups: type: array - items: &152 + items: &151 type: object properties: id: @@ -26837,9 +26869,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: &154 + default: &153 value: id: 2 name: octo-runner-group @@ -26875,7 +26907,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - &153 + - &152 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -26887,7 +26919,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -26924,7 +26956,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -26980,9 +27012,9 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: - default: *154 + default: *153 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -27002,7 +27034,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *74 - - *153 + - *152 responses: '204': description: Response @@ -27026,7 +27058,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -27044,9 +27076,9 @@ paths: type: number runners: type: array - items: *127 + items: *126 examples: - default: *155 + default: *154 headers: Link: *66 x-github: @@ -27069,7 +27101,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: - *74 - - *153 + - *152 - *19 - *17 responses: @@ -27087,9 +27119,9 @@ paths: type: number repositories: type: array - items: *156 + items: *155 examples: - default: &202 + default: &201 value: total_count: 1 repositories: @@ -27342,7 +27374,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: - *74 - - *153 + - *152 requestBody: required: true content: @@ -27387,8 +27419,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -27411,8 +27443,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: - *74 - - *153 - - *145 + - *152 + - *144 responses: '204': description: Response @@ -27436,7 +27468,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 - *17 - *19 responses: @@ -27454,7 +27486,7 @@ paths: type: number runners: type: array - items: &158 + items: &157 title: Self hosted runners description: A self hosted runner type: object @@ -27488,7 +27520,7 @@ paths: type: boolean labels: type: array - items: &161 + items: &160 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -27527,7 +27559,7 @@ paths: - busy - labels examples: - default: &159 + default: &158 value: total_count: 2 runners: @@ -27589,7 +27621,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *74 - - *153 + - *152 requestBody: required: true content: @@ -27634,8 +27666,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: - *74 - - *153 - - &157 + - *152 + - &156 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -27664,8 +27696,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: - *74 - - *153 - - *157 + - *152 + - *156 responses: '204': description: Response @@ -27713,9 +27745,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -27747,7 +27779,7 @@ paths: application/json: schema: type: array - items: &368 + items: &367 title: Runner Application description: Runner Application type: object @@ -27772,7 +27804,7 @@ paths: - download_url - filename examples: - default: &369 + default: &368 value: - os: osx architecture: x64 @@ -27858,7 +27890,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &370 + '201': &369 description: Response content: application/json: @@ -27868,7 +27900,7 @@ paths: - runner - encoded_jit_config properties: - runner: *158 + runner: *157 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -27931,7 +27963,7 @@ paths: description: Response content: application/json: - schema: &160 + schema: &159 title: Authentication Token description: Authentication Token type: object @@ -27973,7 +28005,7 @@ paths: - token - expires_at examples: - default: &371 + default: &370 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -28010,9 +28042,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: &372 + default: &371 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -28038,15 +28070,15 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: &373 + default: &372 value: id: 23 name: MBP @@ -28089,7 +28121,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *74 - - *157 + - *156 responses: '204': description: Response @@ -28116,9 +28148,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 responses: - '200': &162 + '200': &161 description: Response content: application/json: @@ -28132,7 +28164,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -28172,7 +28204,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -28196,7 +28228,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -28221,7 +28253,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *74 - - *157 + - *156 requestBody: required: true content: @@ -28246,7 +28278,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -28271,9 +28303,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: - *74 - - *157 + - *156 responses: - '200': &374 + '200': &373 description: Response content: application/json: @@ -28287,7 +28319,7 @@ paths: type: integer labels: type: array - items: *161 + items: *160 examples: default: value: @@ -28329,8 +28361,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: - *74 - - *157 - - &375 + - *156 + - &374 name: name description: The name of a self-hosted runner's custom label. in: path @@ -28338,7 +28370,7 @@ paths: schema: type: string responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -28381,7 +28413,7 @@ paths: type: integer secrets: type: array - items: &163 + items: &162 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -28415,7 +28447,7 @@ paths: - updated_at - visibility examples: - default: &169 + default: &168 value: total_count: 3 secrets: @@ -28462,7 +28494,7 @@ paths: description: Response content: application/json: - schema: &170 + schema: &169 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28497,7 +28529,7 @@ paths: - key_id - key examples: - default: &171 + default: &170 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28523,7 +28555,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *74 - - &164 + - &163 name: secret_name description: The name of the secret. in: path @@ -28535,9 +28567,9 @@ paths: description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: &172 + default: &171 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28566,7 +28598,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28623,7 +28655,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -28650,7 +28682,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -28677,7 +28709,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -28695,9 +28727,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: &168 + default: &167 value: total_count: 1 repositories: @@ -28790,7 +28822,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -28843,7 +28875,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28877,7 +28909,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -28910,7 +28942,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *74 - - &173 + - &172 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)." @@ -28934,7 +28966,7 @@ paths: type: integer variables: type: array - items: &166 + items: &165 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -28982,7 +29014,7 @@ paths: - updated_at - visibility examples: - default: &174 + default: &173 value: total_count: 3 variables: @@ -29072,7 +29104,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29098,7 +29130,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *74 - - &167 + - &166 name: name description: The name of the variable. in: path @@ -29110,9 +29142,9 @@ paths: description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: &175 + default: &174 value: name: USERNAME value: octocat @@ -29141,7 +29173,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29204,7 +29236,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -29231,7 +29263,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -29249,9 +29281,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -29278,7 +29310,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29328,7 +29360,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29363,7 +29395,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -29415,9 +29447,9 @@ paths: type: integer secrets: type: array - items: *163 + items: *162 examples: - default: *169 + default: *168 headers: Link: *66 x-github: @@ -29448,9 +29480,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29473,15 +29505,15 @@ paths: url: https://docs.github.com/rest/agents/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *163 + schema: *162 examples: - default: *172 + default: *171 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29504,7 +29536,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -29561,7 +29593,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29588,7 +29620,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -29615,7 +29647,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -29633,9 +29665,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29659,7 +29691,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -29712,7 +29744,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29746,7 +29778,7 @@ paths: url: https://docs.github.com/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -29780,7 +29812,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-organization-variables parameters: - *74 - - *173 + - *172 - *19 responses: '200': @@ -29797,9 +29829,9 @@ paths: type: integer variables: type: array - items: *166 + items: *165 examples: - default: *174 + default: *173 headers: Link: *66 x-github: @@ -29870,7 +29902,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -29896,15 +29928,15 @@ paths: url: https://docs.github.com/rest/agents/variables#get-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *166 + schema: *165 examples: - default: *175 + default: *174 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29926,7 +29958,7 @@ paths: url: https://docs.github.com/rest/agents/variables#update-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -29989,7 +30021,7 @@ paths: url: https://docs.github.com/rest/agents/variables#delete-an-organization-variable parameters: - *74 - - *167 + - *166 responses: '204': description: Response @@ -30016,7 +30048,7 @@ paths: url: https://docs.github.com/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 - *19 - *17 responses: @@ -30034,9 +30066,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '409': description: Response when the visibility of the variable is not set to `selected` @@ -30063,7 +30095,7 @@ paths: url: https://docs.github.com/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *167 + - *166 requestBody: required: true content: @@ -30113,7 +30145,7 @@ paths: url: https://docs.github.com/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -30148,7 +30180,7 @@ paths: url: https://docs.github.com/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *167 + - *166 - name: repository_id in: path required: true @@ -30315,7 +30347,7 @@ paths: type: integer deployment_records: type: array - items: &176 + items: &175 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -30362,7 +30394,7 @@ paths: required: - total_count examples: - default: &177 + default: &176 value: total_count: 1 deployment_records: @@ -30542,11 +30574,11 @@ paths: type: integer deployment_records: type: array - items: *176 + items: *175 required: - total_count examples: - default: *177 + default: *176 '403': description: Forbidden content: @@ -30798,9 +30830,9 @@ paths: - 3 deployment_records: type: array - items: *176 + items: *175 examples: - default: *177 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30930,12 +30962,12 @@ paths: required: - subject_digests examples: - default: &702 + default: &701 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &703 + withPredicateType: &702 value: subject_digests: - sha256:abc123 @@ -30994,7 +31026,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &704 + default: &703 value: attestations_subject_digests: - sha256:abc: @@ -31360,7 +31392,7 @@ paths: initiator: type: string examples: - default: &401 + default: &400 value: attestations: - bundle: @@ -31593,7 +31625,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &178 + schema: &177 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -31619,7 +31651,7 @@ paths: application/json: schema: type: array - items: &179 + items: &178 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -31650,7 +31682,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &201 + items: &200 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -31727,7 +31759,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &260 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -31863,7 +31895,7 @@ paths: - string - 'null' format: date-time - state: *178 + state: *177 contact_link: description: The contact link of the campaign. type: @@ -32086,9 +32118,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: &180 + default: &179 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -32171,9 +32203,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '404': *6 '422': description: Unprocessable Entity @@ -32251,7 +32283,7 @@ paths: - string - 'null' format: uri - state: *178 + state: *177 examples: default: value: @@ -32261,9 +32293,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *178 examples: - default: *180 + default: *179 '400': description: Bad Request content: @@ -32330,17 +32362,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *74 - - &425 + - &424 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: &188 + schema: &187 type: string description: The name of the tool used to generate the code scanning analysis. - - &426 + - &425 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 @@ -32348,7 +32380,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &189 + schema: &188 type: - string - 'null' @@ -32364,7 +32396,7 @@ paths: be returned. in: query required: false - schema: &428 + schema: &427 type: string description: State of a code scanning alert. enum: @@ -32387,7 +32419,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &428 type: string description: Severity of a code scanning alert. enum: @@ -32416,18 +32448,18 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: &430 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: &429 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &190 + state: &189 type: - string - 'null' @@ -32437,13 +32469,13 @@ paths: - dismissed - fixed - - fixed_at: *186 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: &431 + dismissed_at: *186 + dismissed_reason: &430 type: - string - 'null' @@ -32454,14 +32486,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &432 + dismissed_comment: &431 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &433 + rule: &432 type: object properties: id: @@ -32522,43 +32554,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &434 + tool: &433 type: object properties: - name: *188 + name: *187 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *189 - most_recent_instance: &435 + guid: *188 + most_recent_instance: &434 type: object properties: - ref: &427 + ref: &426 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &445 + analysis_key: &444 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: &446 + environment: &445 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: &447 + category: &446 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: *190 + state: *189 commit_sha: type: string message: @@ -32572,7 +32604,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: &448 + location: &447 type: object description: Describe a region within a file for the alert. properties: @@ -32593,7 +32625,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: &449 + items: &448 type: - string - 'null' @@ -33231,7 +33263,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33259,9 +33291,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *191 examples: - default: *193 + default: *192 '304': *35 '403': *27 '404': *6 @@ -33350,7 +33382,7 @@ paths: application/json: schema: *47 examples: - default: *191 + default: *190 '304': *35 '403': *27 '404': *6 @@ -33795,7 +33827,7 @@ paths: default: value: default_for_new_repos: all - configuration: *191 + configuration: *190 '403': *27 '404': *6 x-github: @@ -33848,13 +33880,13 @@ paths: application/json: schema: type: array - items: *194 + items: *193 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *195 + repository: *194 '403': *27 '404': *6 x-github: @@ -33894,7 +33926,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &250 type: object title: Codespace description: A codespace. @@ -33925,11 +33957,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *156 + repository: *155 machine: anyOf: - type: 'null' - - &461 + - &460 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -34216,7 +34248,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &251 value: total_count: 3 codespaces: @@ -34840,7 +34872,7 @@ paths: type: integer secrets: type: array - items: &196 + items: &195 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -34881,7 +34913,7 @@ paths: - updated_at - visibility examples: - default: &462 + default: &461 value: total_count: 2 secrets: @@ -34919,7 +34951,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &462 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34954,7 +34986,7 @@ paths: - key_id - key examples: - default: &464 + default: &463 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34978,15 +35010,15 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *196 + schema: *195 examples: - default: &466 + default: &465 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -35014,7 +35046,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -35069,7 +35101,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -35096,7 +35128,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -35122,7 +35154,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -35140,9 +35172,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 '404': *6 x-github: githubCloudOnly: false @@ -35165,7 +35197,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -35216,7 +35248,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -35250,7 +35282,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -35320,7 +35352,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &197 + items: &196 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -35717,9 +35749,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &198 + default: &197 summary: Example response for an organization copilot space value: id: 84 @@ -35824,9 +35856,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 x-github: @@ -35955,9 +35987,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '403': *27 '404': *6 '422': *15 @@ -36040,7 +36072,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &199 + items: &198 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -36265,7 +36297,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -36395,7 +36427,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: user: value: @@ -36546,7 +36578,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &200 + items: &199 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -36690,7 +36722,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36706,7 +36738,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36761,7 +36793,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -36830,7 +36862,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -37072,7 +37104,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &253 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -37090,7 +37122,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *201 + - *200 - *67 type: - 'null' @@ -37703,12 +37735,12 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 required: - total_count - repositories examples: - default: *202 + default: *201 '500': *53 '401': *23 '403': *27 @@ -37794,7 +37826,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -37828,7 +37860,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: No Content @@ -38043,7 +38075,7 @@ paths: application/json: schema: type: array - items: &334 + items: &333 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -38358,7 +38390,7 @@ paths: - date additionalProperties: true examples: - default: &335 + default: &334 value: - date: '2024-06-24' total_active_users: 24 @@ -38460,7 +38492,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &336 + '422': &335 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -38679,12 +38711,12 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *74 + - *202 - *203 - *204 - *205 - *206 - *207 - - *208 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -38714,7 +38746,7 @@ paths: enum: - patch - deployment - - *209 + - *208 - name: runtime_risk in: query description: |- @@ -38723,8 +38755,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *209 - *210 - - *211 - *60 - *45 - *46 @@ -38736,9 +38768,9 @@ paths: application/json: schema: type: array - items: *212 + items: *211 examples: - default: *213 + default: *212 '304': *35 '400': *14 '403': *27 @@ -38787,9 +38819,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *213 examples: - default: *215 + default: *214 '403': *27 '404': *6 x-github: @@ -38953,7 +38985,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &215 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -39032,7 +39064,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &493 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -39051,7 +39083,7 @@ paths: - key_id - key examples: - default: &495 + default: &494 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -39075,13 +39107,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *216 + schema: *215 examples: default: value: @@ -39110,7 +39142,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -39167,7 +39199,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -39200,7 +39232,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -39225,7 +39257,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 - *19 - *17 responses: @@ -39243,9 +39275,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39267,7 +39299,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -39318,7 +39350,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -39350,7 +39382,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *164 + - *163 - name: repository_id in: path required: true @@ -39388,7 +39420,7 @@ paths: application/json: schema: type: array - items: &263 + items: &262 title: Package description: A software package type: object @@ -39441,7 +39473,7 @@ paths: repository: anyOf: - type: 'null' - - *156 + - *155 created_at: type: string format: date-time @@ -39459,7 +39491,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &263 value: - id: 197 name: hello_docker @@ -39629,7 +39661,7 @@ paths: application/json: schema: type: array - items: &240 + items: &239 title: Organization Invitation description: Organization Invitation type: object @@ -39683,7 +39715,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &240 value: - id: 1 login: monalisa @@ -39750,7 +39782,7 @@ paths: application/json: schema: type: array - items: &217 + items: &216 title: Org Hook description: Org Hook type: object @@ -39935,9 +39967,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: &218 + default: &217 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39985,7 +40017,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *74 - - &219 + - &218 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. @@ -39998,9 +40030,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: - default: *218 + default: *217 '404': *6 x-github: githubCloudOnly: false @@ -40028,7 +40060,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -40074,7 +40106,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *216 examples: default: value: @@ -40116,7 +40148,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -40144,7 +40176,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 responses: '200': description: Response @@ -40175,7 +40207,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *74 - - *219 + - *218 requestBody: required: false content: @@ -40226,10 +40258,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -40237,9 +40269,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -40265,16 +40297,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -40300,7 +40332,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *74 - - *219 + - *218 - *16 responses: '202': *37 @@ -40330,7 +40362,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *74 - - *219 + - *218 responses: '204': description: Response @@ -40353,7 +40385,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *74 - - &230 + - &229 name: actor_type in: path description: The type of the actor @@ -40366,14 +40398,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &230 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &225 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`.' @@ -40381,7 +40413,7 @@ paths: required: true schema: type: string - - &227 + - &226 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) @@ -40476,12 +40508,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *74 + - *225 - *226 - - *227 - *19 - *17 - *60 - - &236 + - &235 name: sort description: The property to sort the results by. in: query @@ -40560,14 +40592,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *74 + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: &228 + schema: &227 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40583,7 +40615,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &228 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40604,23 +40636,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *74 - - &232 + - &231 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *225 - *226 - - *227 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -40639,18 +40671,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *74 + - *225 - *226 - - *227 + - *229 - *230 - - *231 responses: '200': description: Response content: application/json: - schema: *228 + schema: *227 examples: - default: *229 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -40668,9 +40700,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *74 + - *225 - *226 - - *227 - - &233 + - &232 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40683,7 +40715,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &233 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40699,7 +40731,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &234 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40736,18 +40768,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40765,19 +40797,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *74 + - *229 - *230 - - *231 + - *225 - *226 - - *227 - - *233 + - *232 responses: '200': description: Response content: application/json: - schema: *234 + schema: *233 examples: - default: *235 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -40795,13 +40827,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *74 - - *232 + - *231 + - *225 - *226 - - *227 - *19 - *17 - *60 - - *236 + - *235 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40885,7 +40917,7 @@ paths: application/json: schema: *20 examples: - default: &532 + default: &531 value: id: 1 account: @@ -41051,12 +41083,12 @@ paths: application/json: schema: anyOf: - - &238 + - &237 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &236 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -41084,7 +41116,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &238 value: limit: collaborators_only origin: organization @@ -41113,13 +41145,13 @@ paths: required: true content: application/json: - schema: &533 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *236 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -41144,9 +41176,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *239 + default: *238 '422': *15 x-github: githubCloudOnly: false @@ -41222,9 +41254,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 '404': *6 @@ -41301,7 +41333,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *239 examples: default: value: @@ -41356,7 +41388,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *74 - - &242 + - &241 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41387,7 +41419,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *74 - - *242 + - *241 - *17 - *19 responses: @@ -41397,9 +41429,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: &262 + default: &261 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41442,7 +41474,7 @@ paths: application/json: schema: type: array - items: &243 + items: &242 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -41685,9 +41717,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: &244 + default: &243 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41743,7 +41775,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *74 - - &245 + - &244 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41853,9 +41885,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *242 examples: - default: *244 + default: *243 '404': *6 '422': *7 x-github: @@ -41880,7 +41912,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *74 - - *245 + - *244 responses: '204': *59 '404': *6 @@ -41910,7 +41942,7 @@ paths: application/json: schema: type: array - items: *246 + items: *245 examples: default: value: @@ -41998,9 +42030,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: &247 + default: &246 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -42033,7 +42065,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *74 - - &248 + - &247 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -42089,9 +42121,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *245 examples: - default: *247 + default: *246 '404': *6 '422': *7 x-github: @@ -42116,7 +42148,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *74 - - *248 + - *247 responses: '204': description: Response @@ -42179,7 +42211,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: type description: Can be the name of an issue type. in: query @@ -42210,7 +42242,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -42375,9 +42407,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -42404,7 +42436,7 @@ paths: parameters: - *74 - *70 - - &253 + - &252 name: codespace_name in: path required: true @@ -42439,15 +42471,15 @@ paths: parameters: - *74 - *70 - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: &460 + default: &459 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42627,7 +42659,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *253 examples: default: value: @@ -42703,7 +42735,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &254 title: Org Membership description: Org Membership type: object @@ -42772,7 +42804,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &255 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42873,9 +42905,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *255 '422': *15 '403': *27 x-github: @@ -42953,7 +42985,7 @@ paths: application/json: schema: type: array - items: &257 + items: &256 title: Migration description: A migration. type: object @@ -43302,7 +43334,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -43481,7 +43513,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *74 - - &258 + - &257 name: migration_id description: The unique identifier of the migration. in: path @@ -43509,7 +43541,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -43679,7 +43711,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '302': description: Response @@ -43701,7 +43733,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *74 - - *258 + - *257 responses: '204': description: Response @@ -43725,8 +43757,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *74 - - *258 - - &685 + - *257 + - &684 name: repo_name description: repo_name parameter in: path @@ -43754,7 +43786,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *74 - - *258 + - *257 - *17 - *19 responses: @@ -43764,9 +43796,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: &269 + default: &268 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43939,7 +43971,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &259 title: Organization Role description: Organization roles type: object @@ -44116,7 +44148,7 @@ paths: parameters: - *74 - *76 - - &259 + - &258 name: role_id description: The unique identifier of the role. in: path @@ -44153,7 +44185,7 @@ paths: parameters: - *74 - *76 - - *259 + - *258 responses: '204': description: Response @@ -44206,7 +44238,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -44238,7 +44270,7 @@ paths: parameters: - *74 - *70 - - *259 + - *258 responses: '204': description: Response @@ -44267,13 +44299,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *74 - - *259 + - *258 responses: '200': description: Response content: application/json: - schema: *260 + schema: *259 examples: default: value: @@ -44324,7 +44356,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -44403,7 +44435,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 type: description: The ownership type of the team type: string @@ -44436,7 +44468,7 @@ paths: - type - parent examples: - default: *262 + default: *261 headers: Link: *66 '404': @@ -44466,7 +44498,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *74 - - *259 + - *258 - *17 - *19 responses: @@ -44495,7 +44527,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *260 name: type: - string @@ -44805,7 +44837,7 @@ paths: - nuget - container - *74 - - &686 + - &685 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44841,12 +44873,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *264 + default: *263 '403': *27 '401': *23 - '400': &688 + '400': &687 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44868,7 +44900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &264 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 @@ -44886,7 +44918,7 @@ paths: - docker - nuget - container - - &266 + - &265 name: package_name description: The name of the package. in: path @@ -44899,7 +44931,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *262 examples: default: value: @@ -44951,8 +44983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 responses: '204': @@ -44985,8 +45017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - name: token description: package token @@ -45019,8 +45051,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: + - *264 - *265 - - *266 - *74 - *19 - *17 @@ -45041,7 +45073,7 @@ paths: application/json: schema: type: array - items: &267 + items: &266 title: Package Version description: A version of a software package type: object @@ -45176,10 +45208,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - &268 + - &267 name: package_version_id description: Unique identifier of the package version. in: path @@ -45191,7 +45223,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -45227,10 +45259,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -45262,10 +45294,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *264 - *265 - - *266 - *74 - - *268 + - *267 responses: '204': description: Response @@ -45295,7 +45327,7 @@ paths: - *74 - *17 - *19 - - &270 + - &269 name: sort description: The property by which to sort the results. in: query @@ -45306,7 +45338,7 @@ paths: - created_at default: created_at - *60 - - &271 + - &270 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -45318,7 +45350,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &272 + - &271 name: repository description: The name of the repository to use to filter the results. in: query @@ -45327,7 +45359,7 @@ paths: type: string examples: - Hello-World - - &273 + - &272 name: permission description: The permission to use to filter the results. in: query @@ -45336,7 +45368,7 @@ paths: type: string examples: - issues_read - - &274 + - &273 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) @@ -45346,7 +45378,7 @@ paths: schema: type: string format: date-time - - &275 + - &274 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) @@ -45356,7 +45388,7 @@ paths: schema: type: string format: date-time - - &276 + - &275 name: token_id description: The ID of the token in: query @@ -45673,9 +45705,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -45701,14 +45733,14 @@ paths: - *74 - *17 - *19 - - *270 + - *269 - *60 + - *270 - *271 - *272 - *273 - *274 - *275 - - *276 responses: '500': *53 '422': *15 @@ -45990,9 +46022,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -46034,7 +46066,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &276 title: Organization private registry description: Private registry configuration for an organization type: object @@ -46551,7 +46583,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &277 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46643,15 +46675,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *276 examples: - default: *278 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -46674,7 +46706,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 requestBody: required: true content: @@ -46863,7 +46895,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *74 - - *164 + - *163 responses: '204': description: Response @@ -46903,7 +46935,7 @@ paths: application/json: schema: type: array - items: &279 + items: &278 title: Projects v2 Project description: A projects v2 project type: object @@ -46977,7 +47009,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &771 + - &770 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47062,7 +47094,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &279 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -47165,7 +47197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &280 name: project_number description: The project's number. in: path @@ -47178,9 +47210,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -47203,7 +47235,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -47237,7 +47269,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &285 title: Projects v2 Item description: An item belonging to a project type: object @@ -47251,7 +47283,7 @@ paths: content: oneOf: - *82 - - &475 + - &474 title: Pull Request Simple description: Pull Request Simple type: object @@ -47371,7 +47403,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -47420,7 +47452,7 @@ paths: items: *4 requested_teams: type: array - items: *201 + items: *200 head: type: object properties: @@ -47464,7 +47496,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &282 title: Link description: Hypermedia Link type: object @@ -47473,13 +47505,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -47490,7 +47522,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: &579 + auto_merge: &578 title: Auto merge description: The status of auto merging a pull request. type: @@ -47664,7 +47696,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &284 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47708,7 +47740,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &286 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47782,7 +47814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *280 - *74 - *17 - *45 @@ -47794,7 +47826,7 @@ paths: application/json: schema: type: array - items: &284 + items: &283 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47947,7 +47979,7 @@ paths: - updated_at - project_url examples: - default: &708 + default: &707 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48077,7 +48109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *280 - *74 requestBody: required: true @@ -48124,7 +48156,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &709 + items: &708 type: object properties: name: @@ -48161,7 +48193,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &710 + iteration_configuration: &709 type: object description: The configuration for iteration fields. properties: @@ -48211,7 +48243,7 @@ paths: value: name: Due date data_type: date - single_select_field: &711 + single_select_field: &710 summary: Create a single select field value: name: Priority @@ -48238,7 +48270,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &712 + iteration_field: &711 summary: Create an iteration field value: name: Sprint @@ -48262,9 +48294,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *283 examples: - text_field: &713 + text_field: &712 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -48273,7 +48305,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: &714 + number_field: &713 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -48282,7 +48314,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: &715 + date_field: &714 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -48291,7 +48323,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: &716 + single_select_field: &715 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48325,7 +48357,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &717 + iteration_field: &716 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -48370,8 +48402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &718 + - *280 + - &717 name: field_id description: The unique identifier of the field. in: path @@ -48384,9 +48416,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: &719 + default: &718 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48442,7 +48474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - 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) @@ -48475,7 +48507,7 @@ paths: application/json: schema: type: array - items: &288 + items: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -48492,7 +48524,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *284 content: type: - object @@ -48542,7 +48574,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &288 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -49240,7 +49272,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -49310,22 +49342,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -49345,9 +49377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *280 - *74 - - &290 + - &289 name: item_id description: The unique identifier of the project item. in: path @@ -49373,9 +49405,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -49396,9 +49428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -49471,13 +49503,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -49497,9 +49529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *280 - *74 - - *290 + - *289 responses: '204': description: Response @@ -49523,7 +49555,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *74 - - *281 + - *280 requestBody: required: true content: @@ -49597,7 +49629,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &699 + schema: &698 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49701,7 +49733,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &290 value: id: 1 number: 1 @@ -49747,10 +49779,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -49778,9 +49810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *280 - *74 - - &720 + - &719 name: view_number description: The number that identifies the project view. in: path @@ -49812,9 +49844,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -49847,7 +49879,7 @@ paths: application/json: schema: type: array - items: &292 + items: &291 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49925,7 +49957,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &292 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49985,7 +50017,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *291 minItems: 1 maxItems: 100 required: @@ -50015,9 +50047,9 @@ paths: application/json: schema: type: array - items: *292 + items: *291 examples: - default: *293 + default: *292 '403': *27 '404': *6 x-github: @@ -50039,7 +50071,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *74 - - &294 + - &293 name: custom_property_name description: The custom property name in: path @@ -50051,9 +50083,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: &295 + default: &294 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -50088,7 +50120,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 requestBody: required: true content: @@ -50168,9 +50200,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *291 examples: - default: *295 + default: *294 '403': *27 '404': *6 x-github: @@ -50194,7 +50226,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *74 - - *294 + - *293 responses: '204': *59 '403': *27 @@ -50258,7 +50290,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &295 title: Custom Property Value description: Custom property name and associated value type: object @@ -50348,7 +50380,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - repository_names - properties @@ -50538,9 +50570,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -50743,7 +50775,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &343 title: Full Repository description: Full Repository type: object @@ -51221,7 +51253,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &480 + code_of_conduct: &479 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -51251,7 +51283,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *296 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -51346,7 +51378,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &346 + default: &345 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51879,7 +51911,7 @@ paths: - *74 - *17 - *19 - - &601 + - &600 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51898,7 +51930,7 @@ paths: application/json: schema: type: array - items: &324 + items: &323 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51933,7 +51965,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &299 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51946,7 +51978,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &300 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -52018,7 +52050,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &297 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -52042,7 +52074,7 @@ paths: match. items: type: string - - &302 + - &301 title: Organization ruleset conditions type: object description: |- @@ -52056,7 +52088,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -52090,7 +52122,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -52112,7 +52144,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *297 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -52125,7 +52157,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &298 title: Repository ruleset property targeting definition type: object @@ -52158,7 +52190,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *298 required: - repository_property type: @@ -52166,12 +52198,12 @@ paths: - object rules: type: array - items: &602 + items: &601 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &302 title: creation description: Only allow users with bypass permission to create matching refs. @@ -52183,7 +52215,7 @@ paths: type: string enum: - creation - - &304 + - &303 title: update description: Only allow users with bypass permission to update matching refs. @@ -52204,7 +52236,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &304 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -52216,7 +52248,7 @@ paths: type: string enum: - deletion - - &306 + - &305 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -52228,7 +52260,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &599 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -52306,7 +52338,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &306 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -52330,7 +52362,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &307 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -52342,7 +52374,7 @@ paths: type: string enum: - required_signatures - - &309 + - &308 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -52448,7 +52480,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &309 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -52496,7 +52528,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &310 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -52508,7 +52540,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &311 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -52545,7 +52577,7 @@ paths: required: - operator - pattern - - &313 + - &312 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -52582,7 +52614,7 @@ paths: required: - operator - pattern - - &314 + - &313 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -52619,7 +52651,7 @@ paths: required: - operator - pattern - - &315 + - &314 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -52656,7 +52688,7 @@ paths: required: - operator - pattern - - &316 + - &315 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -52693,7 +52725,7 @@ paths: required: - operator - pattern - - &321 + - &320 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -52743,7 +52775,7 @@ paths: - repository_id required: - workflows - - &322 + - &321 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -52804,7 +52836,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &322 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -52830,7 +52862,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &317 + - &316 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52855,7 +52887,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &317 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52879,7 +52911,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &318 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52902,7 +52934,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &319 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -53000,20 +53032,21 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &325 title: Repository Rule type: object description: A repository rule. oneOf: + - *302 - *303 - *304 - *305 @@ -53034,7 +53067,6 @@ paths: - *320 - *321 - *322 - - *323 required: - name - enforcement @@ -53072,9 +53104,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &325 + default: &324 value: id: 21 name: super cool ruleset @@ -53130,7 +53162,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *74 - - &603 + - &602 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 @@ -53145,7 +53177,7 @@ paths: in: query schema: type: string - - &604 + - &603 name: time_period description: |- The time period to filter by. @@ -53161,14 +53193,14 @@ paths: - week - month default: day - - &605 + - &604 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 - - &606 + - &605 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -53181,7 +53213,7 @@ paths: - bypass - all default: all - - &607 + - &606 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. @@ -53204,7 +53236,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &607 title: Rule Suites description: Response type: array @@ -53260,7 +53292,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &609 + default: &608 value: - id: 21 actor_id: 12 @@ -53304,7 +53336,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &610 + - &609 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -53320,7 +53352,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &610 title: Rule Suite description: Response type: object @@ -53427,7 +53459,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &612 + default: &611 value: id: 21 actor_id: 12 @@ -53500,9 +53532,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '500': *53 put: @@ -53546,16 +53578,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *300 + conditions: *301 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *325 examples: default: value: @@ -53590,9 +53622,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *325 + default: *324 '404': *6 '422': *15 '500': *53 @@ -53650,7 +53682,7 @@ paths: application/json: schema: type: array - items: &327 + items: &326 title: Ruleset version type: object description: The historical version of a ruleset @@ -53674,7 +53706,7 @@ paths: type: string format: date-time examples: - default: &614 + default: &613 value: - version_id: 3 actor: @@ -53727,9 +53759,9 @@ paths: description: Response content: application/json: - schema: &615 + schema: &614 allOf: - - *327 + - *326 - type: object required: - state @@ -53799,7 +53831,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &616 + - &615 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53810,7 +53842,7 @@ paths: enum: - open - resolved - - &617 + - &616 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53820,7 +53852,7 @@ paths: required: false schema: type: string - - &618 + - &617 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53831,7 +53863,7 @@ paths: required: false schema: type: string - - &619 + - &618 name: exclude_providers in: query description: |- @@ -53842,7 +53874,7 @@ paths: required: false schema: type: string - - &620 + - &619 name: providers in: query description: |- @@ -53853,7 +53885,7 @@ paths: required: false schema: type: string - - &621 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53862,7 +53894,7 @@ paths: required: false schema: type: string - - &622 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53881,7 +53913,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &623 + - &622 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. @@ -53896,7 +53928,7 @@ paths: - *60 - *19 - *17 - - &624 + - &623 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 @@ -53906,7 +53938,7 @@ paths: required: false schema: type: string - - &625 + - &624 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 @@ -53916,7 +53948,7 @@ paths: required: false schema: type: string - - &626 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53925,7 +53957,7 @@ paths: required: false schema: type: string - - &627 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53934,7 +53966,7 @@ paths: schema: type: boolean default: false - - &628 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53943,7 +53975,7 @@ paths: schema: type: boolean default: false - - &629 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53952,7 +53984,7 @@ paths: schema: type: boolean default: false - - &630 + - &629 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53973,27 +54005,27 @@ paths: items: type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &631 + state: &630 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: &632 + resolution: &631 type: - string - 'null' @@ -54112,14 +54144,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &633 + - &632 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &635 + - &634 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -54183,7 +54215,7 @@ paths: - blob_url - commit_sha - commit_url - - &636 + - &635 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. @@ -54244,7 +54276,7 @@ paths: - page_url - commit_sha - commit_url - - &637 + - &636 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -54266,7 +54298,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &638 + - &637 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -54288,7 +54320,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &639 + - &638 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -54310,7 +54342,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &640 + - &639 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -54325,7 +54357,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &641 + - &640 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -54340,7 +54372,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &642 + - &641 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -54355,7 +54387,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &643 + - &642 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. @@ -54377,7 +54409,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &644 + - &643 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. @@ -54399,7 +54431,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &645 + - &644 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. @@ -54421,7 +54453,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &646 + - &645 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. @@ -54443,7 +54475,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &647 + - &646 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 @@ -54704,7 +54736,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &329 + pattern_config_version: &328 type: - string - 'null' @@ -54714,7 +54746,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &328 + items: &327 type: object properties: token_type: @@ -54783,7 +54815,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *328 + items: *327 examples: default: value: @@ -54840,7 +54872,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *328 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -54866,7 +54898,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *328 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -54964,7 +54996,7 @@ paths: application/json: schema: type: array - items: &651 + items: &650 description: A repository security advisory. type: object properties: @@ -55208,7 +55240,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 credits_detailed: type: - array @@ -55219,7 +55251,7 @@ paths: type: object properties: user: *4 - type: *330 + type: *329 state: type: string description: The state of the user's acceptance of the @@ -55245,7 +55277,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *201 + items: *200 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -55315,7 +55347,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &652 + default: &651 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55702,7 +55734,7 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: default: value: @@ -55922,9 +55954,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *168 + default: *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55993,7 +56025,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -56016,7 +56048,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *74 - - *145 + - *144 responses: '204': description: Response @@ -56057,7 +56089,7 @@ paths: type: integer network_configurations: type: array - items: &331 + items: &330 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -56210,9 +56242,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: &332 + default: &331 value: id: 123456789ABCDEF name: My network configuration @@ -56241,7 +56273,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - &333 + - &332 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -56253,9 +56285,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 headers: Link: *66 x-github: @@ -56277,7 +56309,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *333 + - *332 requestBody: required: true content: @@ -56330,9 +56362,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *330 examples: - default: *332 + default: *331 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56352,7 +56384,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *74 - - *333 + - *332 responses: '204': description: Response @@ -56497,13 +56529,13 @@ paths: application/json: schema: type: array - items: *334 + items: *333 examples: - default: *335 + default: *334 '500': *53 '403': *27 '404': *6 - '422': *336 + '422': *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56543,9 +56575,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '403': *27 @@ -56639,7 +56671,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &336 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -56713,7 +56745,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *260 members_count: type: integer examples: @@ -57038,7 +57070,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &337 value: id: 1 node_id: MDQ6VGVhbTE= @@ -57126,9 +57158,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -57213,16 +57245,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -57252,7 +57284,7 @@ paths: responses: '204': description: Response - '422': &339 + '422': &338 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -57286,12 +57318,12 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 - '422': *339 + '422': *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57373,7 +57405,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &339 title: Team Membership description: Team Membership type: object @@ -57401,7 +57433,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &667 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57464,9 +57496,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: &668 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57540,9 +57572,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -57573,14 +57605,14 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &669 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -58308,8 +58340,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 requestBody: required: false content: @@ -58356,8 +58388,8 @@ paths: parameters: - *74 - *76 + - *340 - *341 - - *342 responses: '204': description: Response @@ -58392,9 +58424,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: &670 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -58548,7 +58580,7 @@ paths: resources: type: object properties: - core: &343 + core: &342 title: Rate Limit type: object properties: @@ -58565,21 +58597,21 @@ paths: - remaining - reset - used - graphql: *343 - search: *343 - code_search: *343 - source_import: *343 - integration_manifest: *343 - code_scanning_upload: *343 - actions_runner_registration: *343 - scim: *343 - dependency_snapshots: *343 - dependency_sbom: *343 - code_scanning_autofix: *343 + graphql: *342 + search: *342 + code_search: *342 + source_import: *342 + integration_manifest: *342 + code_scanning_upload: *342 + actions_runner_registration: *342 + scim: *342 + dependency_snapshots: *342 + dependency_sbom: *342 + code_scanning_autofix: *342 required: - core - search - rate: *343 + rate: *342 required: - rate - resources @@ -58698,14 +58730,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *344 + schema: *343 examples: default-response: summary: Default response @@ -59216,7 +59248,7 @@ paths: version: '2026-03-10' '403': *27 '404': *6 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59234,8 +59266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -59534,10 +59566,10 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 - '307': &347 + default: *345 + '307': &346 description: Temporary Redirect content: application/json: @@ -59566,8 +59598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -59589,7 +59621,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *347 + '307': *346 '404': *6 '409': *52 x-github: @@ -59613,11 +59645,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &379 + - &378 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -59640,7 +59672,7 @@ paths: type: integer artifacts: type: array - items: &348 + items: &347 title: Artifact description: An artifact type: object @@ -59735,7 +59767,7 @@ paths: - expires_at - updated_at examples: - default: &380 + default: &379 value: total_count: 2 artifacts: @@ -59796,9 +59828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: + - *340 - *341 - - *342 - - &349 + - &348 name: artifact_id description: The unique identifier of the artifact. in: path @@ -59810,7 +59842,7 @@ paths: description: Response content: application/json: - schema: *348 + schema: *347 examples: default: value: @@ -59848,9 +59880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 responses: '204': description: Response @@ -59874,9 +59906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: + - *340 - *341 - - *342 - - *349 + - *348 - name: archive_format in: path required: true @@ -59886,11 +59918,11 @@ paths: '302': description: Response headers: - Location: &497 + Location: &496 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': &536 + '410': &535 description: Gone content: application/json: @@ -59915,14 +59947,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &349 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -59956,13 +59988,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *349 examples: selected_actions: *40 responses: @@ -59991,14 +60023,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &351 + schema: &350 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -60032,13 +60064,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *351 + schema: *350 examples: selected_actions: *42 responses: @@ -60069,14 +60101,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *352 + schema: *351 examples: default: value: @@ -60102,11 +60134,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 - - &353 + - &352 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 @@ -60140,7 +60172,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &353 title: Repository actions caches description: Repository actions caches type: object @@ -60190,7 +60222,7 @@ paths: - total_count - actions_caches examples: - default: &355 + default: &354 value: total_count: 1 actions_caches: @@ -60222,23 +60254,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: + - *340 - *341 - - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *353 + - *352 responses: '200': description: Response content: application/json: - schema: *354 + schema: *353 examples: - default: *355 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60258,8 +60290,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: + - *340 - *341 - - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -60288,8 +60320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *46 responses: @@ -60372,8 +60404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: + - *340 - *341 - - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -60529,9 +60561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - &356 + - &355 name: job_id description: The unique identifier of the job. in: path @@ -60543,7 +60575,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &382 title: Job description: Information of a job execution in a workflow run type: object @@ -60890,9 +60922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 responses: '302': description: Response @@ -60920,9 +60952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *356 + - *355 requestBody: required: false content: @@ -60949,7 +60981,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -60973,8 +61005,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: + - *340 - *341 - - *342 responses: '200': description: Status response @@ -61033,8 +61065,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -61073,7 +61105,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -61102,8 +61134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -61121,7 +61153,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &384 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -61142,7 +61174,7 @@ paths: - created_at - updated_at examples: - default: &386 + default: &385 value: total_count: 2 secrets: @@ -61175,9 +61207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -61194,7 +61226,7 @@ paths: type: integer variables: type: array - items: &387 + items: &386 title: Actions Variable type: object properties: @@ -61228,7 +61260,7 @@ paths: - created_at - updated_at examples: - default: &388 + default: &387 value: total_count: 2 variables: @@ -61261,8 +61293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -61271,12 +61303,12 @@ paths: schema: type: object properties: - enabled: &358 + enabled: &357 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *141 - selected_actions_url: *357 - sha_pinning_required: *142 + allowed_actions: *140 + selected_actions_url: *356 + sha_pinning_required: *141 required: - enabled examples: @@ -61304,8 +61336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -61316,9 +61348,9 @@ paths: schema: type: object properties: - enabled: *358 - allowed_actions: *141 - sha_pinning_required: *142 + enabled: *357 + allowed_actions: *140 + sha_pinning_required: *141 required: - enabled examples: @@ -61348,14 +61380,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &359 + schema: &358 type: object properties: access_level: @@ -61372,7 +61404,7 @@ paths: required: - access_level examples: - default: &360 + default: &359 value: access_level: organization x-github: @@ -61396,15 +61428,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *359 + schema: *358 examples: - default: *360 + default: *359 responses: '204': description: Response @@ -61428,14 +61460,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *361 + schema: *360 examples: default: value: @@ -61459,8 +61491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Empty response for successful settings update @@ -61470,7 +61502,7 @@ paths: required: true content: application/json: - schema: *362 + schema: *361 examples: default: summary: Set retention days @@ -61494,16 +61526,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *143 + schema: *142 examples: - default: *363 + default: *362 '404': *6 x-github: enabledForGitHubApps: true @@ -61522,8 +61554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -61533,7 +61565,7 @@ paths: required: true content: application/json: - schema: *143 + schema: *142 examples: default: summary: Set approval policy to first time contributors @@ -61557,16 +61589,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: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *364 + schema: *363 examples: - default: *144 + default: *143 '403': *27 '404': *6 x-github: @@ -61586,15 +61618,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: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *365 + schema: *364 examples: - default: *144 + default: *143 responses: '204': description: Empty response for successful settings update @@ -61618,16 +61650,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *146 + schema: *145 examples: - default: *147 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61646,8 +61678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -61655,9 +61687,9 @@ paths: required: false content: application/json: - schema: *146 + schema: *145 examples: - selected_actions: *147 + selected_actions: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61679,16 +61711,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *366 + schema: *365 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61709,8 +61741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Success response @@ -61721,9 +61753,9 @@ paths: required: true content: application/json: - schema: *367 + schema: *366 examples: - default: *151 + default: *150 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61750,8 +61782,8 @@ paths: in: query schema: type: string + - *340 - *341 - - *342 - *17 - *19 responses: @@ -61769,9 +61801,9 @@ paths: type: integer runners: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 headers: Link: *66 x-github: @@ -61795,8 +61827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -61804,9 +61836,9 @@ paths: application/json: schema: type: array - items: *368 + items: *367 examples: - default: *369 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61828,8 +61860,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -61872,7 +61904,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *370 + '201': *369 '404': *6 '422': *7 '409': *52 @@ -61903,16 +61935,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *371 + default: *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61940,16 +61972,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: + - *340 - *341 - - *342 responses: '201': description: Response content: application/json: - schema: *160 + schema: *159 examples: - default: *372 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61971,17 +62003,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '200': description: Response content: application/json: - schema: *158 + schema: *157 examples: - default: *373 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62002,9 +62034,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: '204': description: Response @@ -62030,11 +62062,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *162 + '200': *161 '404': *6 x-github: githubCloudOnly: false @@ -62056,9 +62088,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -62082,7 +62114,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -62106,9 +62138,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: + - *340 - *341 - - *342 - - *157 + - *156 requestBody: required: true content: @@ -62133,7 +62165,7 @@ paths: - gpu - accelerated responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -62157,11 +62189,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: + - *340 - *341 - - *342 - - *157 + - *156 responses: - '200': *374 + '200': *373 '404': *6 x-github: githubCloudOnly: false @@ -62188,12 +62220,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: + - *340 - *341 - - *342 - - *157 - - *375 + - *156 + - *374 responses: - '200': *162 + '200': *161 '404': *6 '422': *7 x-github: @@ -62219,9 +62251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: + - *340 - *341 - - *342 - - &391 + - &390 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. @@ -62229,7 +62261,7 @@ paths: required: false schema: type: string - - &392 + - &391 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -62237,7 +62269,7 @@ paths: required: false schema: type: string - - &393 + - &392 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -62246,7 +62278,7 @@ paths: required: false schema: type: string - - &394 + - &393 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 @@ -62273,7 +62305,7 @@ paths: - pending - *17 - *19 - - &395 + - &394 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)." @@ -62282,7 +62314,7 @@ paths: schema: type: string format: date-time - - &376 + - &375 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -62291,13 +62323,13 @@ paths: schema: type: boolean default: false - - &396 + - &395 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &397 + - &396 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -62320,7 +62352,7 @@ paths: type: integer workflow_runs: type: array - items: &377 + items: &376 title: Workflow Run description: An invocation of a workflow type: object @@ -62498,7 +62530,7 @@ paths: head_commit: anyOf: - type: 'null' - - &421 + - &420 title: Simple Commit description: A commit. type: object @@ -62572,8 +62604,8 @@ paths: - timestamp - author - committer - repository: *156 - head_repository: *156 + repository: *155 + head_repository: *155 head_repository_id: type: integer examples: @@ -62613,7 +62645,7 @@ paths: - workflow_url - pull_requests examples: - default: &398 + default: &397 value: total_count: 1 workflow_runs: @@ -62849,24 +62881,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: + - *340 - *341 - - *342 - - &378 + - &377 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: &381 + default: &380 value: id: 30433642 name: Build @@ -63107,9 +63139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -63132,9 +63164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -63262,15 +63294,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: + - *340 - *341 - - *342 - - *378 + - *377 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63297,12 +63329,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *19 - - *379 + - *378 - *60 responses: '200': @@ -63319,9 +63351,9 @@ paths: type: integer artifacts: type: array - items: *348 + items: *347 examples: - default: *380 + default: *379 headers: Link: *66 x-github: @@ -63345,25 +63377,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - &382 + - *377 + - &381 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *376 + - *375 responses: '200': description: Response content: application/json: - schema: *377 + schema: *376 examples: - default: *381 + default: *380 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63386,10 +63418,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 - *17 - *19 responses: @@ -63407,9 +63439,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: &384 + default: &383 value: total_count: 1 jobs: @@ -63522,10 +63554,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: + - *340 - *341 - - *342 - - *378 - - *382 + - *377 + - *381 responses: '302': description: Response @@ -63553,15 +63585,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63601,9 +63633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - *17 - *45 - *46 @@ -63780,9 +63812,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: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -63849,15 +63881,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '202': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -63884,9 +63916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 - 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 @@ -63916,9 +63948,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *382 examples: - default: *384 + default: *383 headers: Link: *66 x-github: @@ -63943,9 +63975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '302': description: Response @@ -63972,9 +64004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '204': description: Response @@ -64001,9 +64033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -64072,7 +64104,7 @@ paths: items: type: object properties: - type: &504 + type: &503 type: string description: The type of reviewer. enum: @@ -64083,7 +64115,7 @@ paths: reviewer: anyOf: - *4 - - *201 + - *200 required: - environment - wait_timer @@ -64158,9 +64190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: true content: @@ -64210,7 +64242,7 @@ paths: application/json: schema: type: array - items: &499 + items: &498 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -64322,7 +64354,7 @@ paths: - created_at - updated_at examples: - default: &500 + default: &499 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -64378,9 +64410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -64402,7 +64434,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64425,9 +64457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: + - *340 - *341 - - *342 - - *378 + - *377 requestBody: required: false content: @@ -64449,7 +64481,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64481,9 +64513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: + - *340 - *341 - - *342 - - *378 + - *377 responses: '200': description: Response @@ -64620,8 +64652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -64639,9 +64671,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -64666,16 +64698,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64697,17 +64729,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: &399 + default: &398 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -64733,9 +64765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -64766,7 +64798,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64792,9 +64824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -64819,9 +64851,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -64838,9 +64870,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -64863,8 +64895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -64891,7 +64923,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -64916,17 +64948,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: &400 + default: &399 value: name: USERNAME value: octocat @@ -64952,9 +64984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -64996,9 +65028,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -65023,8 +65055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65042,7 +65074,7 @@ paths: type: integer workflows: type: array - items: &389 + items: &388 title: Workflow description: A GitHub Actions workflow type: object @@ -65160,9 +65192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: + - *340 - *341 - - *342 - - &390 + - &389 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -65177,7 +65209,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *388 examples: default: value: @@ -65210,9 +65242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -65237,9 +65269,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -65337,9 +65369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '204': description: Response @@ -65366,19 +65398,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: + - *340 - *341 - - *342 + - *389 - *390 - *391 - *392 - *393 - - *394 - *17 - *19 + - *394 + - *375 - *395 - - *376 - *396 - - *397 responses: '200': description: Response @@ -65394,9 +65426,9 @@ paths: type: integer workflow_runs: type: array - items: *377 + items: *376 examples: - default: *398 + default: *397 headers: Link: *66 x-github: @@ -65428,9 +65460,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: + - *340 - *341 - - *342 - - *390 + - *389 responses: '200': description: Response @@ -65491,8 +65523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: + - *340 - *341 - - *342 - *60 - *17 - *45 @@ -65665,8 +65697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65684,9 +65716,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -65710,9 +65742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -65729,9 +65761,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -65756,8 +65788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -65775,9 +65807,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -65802,16 +65834,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65833,17 +65865,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65865,9 +65897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -65898,7 +65930,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -65924,9 +65956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -65951,9 +65983,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: + - *340 - *341 - - *342 - - *173 + - *172 - *19 responses: '200': @@ -65970,9 +66002,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -65995,8 +66027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -66023,7 +66055,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -66048,17 +66080,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66079,9 +66111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 requestBody: required: true content: @@ -66123,9 +66155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: + - *340 - *341 - - *342 - - *167 + - *166 responses: '204': description: Response @@ -66146,8 +66178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -66184,8 +66216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: + - *340 - *341 - - *342 - name: assignee in: path required: true @@ -66221,8 +66253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -66332,8 +66364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: + - *340 - *341 - - *342 - *17 - *45 - *46 @@ -66390,7 +66422,7 @@ paths: initiator: type: string examples: - default: *401 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66424,8 +66456,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -66433,7 +66465,7 @@ paths: application/json: schema: type: array - items: &402 + items: &401 title: Autolink reference description: An autolink reference. type: object @@ -66492,8 +66524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -66532,9 +66564,9 @@ paths: description: response content: application/json: - schema: *402 + schema: *401 examples: - default: &403 + default: &402 value: id: 1 key_prefix: TICKET- @@ -66565,9 +66597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: + - *340 - *341 - - *342 - - &404 + - &403 name: autolink_id description: The unique identifier of the autolink. in: path @@ -66579,9 +66611,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *401 examples: - default: *403 + default: *402 '404': *6 x-github: githubCloudOnly: false @@ -66601,9 +66633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: + - *340 - *341 - - *342 - - *404 + - *403 responses: '204': description: Response @@ -66627,8 +66659,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: + - *340 - *341 - - *342 responses: '200': description: Response if Dependabot is enabled @@ -66678,8 +66710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -66700,8 +66732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -66721,8 +66753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: + - *340 - *341 - - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -66760,7 +66792,7 @@ paths: - url protected: type: boolean - protection: &406 + protection: &405 title: Branch Protection description: Branch Protection type: object @@ -66803,7 +66835,7 @@ paths: required: - contexts - checks - enforce_admins: &409 + enforce_admins: &408 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -66820,7 +66852,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &411 + required_pull_request_reviews: &410 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -66842,7 +66874,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *201 + items: *200 apps: description: The list of apps with review dismissal access. @@ -66874,7 +66906,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *201 + items: *200 apps: description: The list of apps allowed to bypass pull request requirements. @@ -66904,7 +66936,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &408 + restrictions: &407 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -66967,7 +66999,7 @@ paths: type: string teams: type: array - items: *201 + items: *200 apps: type: array items: @@ -67197,9 +67229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: + - *340 - *341 - - *342 - - &407 + - &406 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). @@ -67213,14 +67245,14 @@ paths: description: Response content: application/json: - schema: &417 + schema: &416 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &471 + commit: &470 title: Commit description: Commit type: object @@ -67259,7 +67291,7 @@ paths: author: anyOf: - type: 'null' - - &405 + - &404 title: Git User description: Metaproperties for Git author/committer information. @@ -67281,7 +67313,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 message: type: string examples: @@ -67305,7 +67337,7 @@ paths: required: - sha - url - verification: &522 + verification: &521 title: Verification type: object properties: @@ -67341,14 +67373,14 @@ paths: author: oneOf: - *4 - - *165 + - *164 type: - 'null' - object committer: oneOf: - *4 - - *165 + - *164 type: - 'null' - object @@ -67385,7 +67417,7 @@ paths: type: integer files: type: array - items: &482 + items: &481 title: Diff Entry description: Diff Entry type: object @@ -67481,7 +67513,7 @@ paths: - self protected: type: boolean - protection: *406 + protection: *405 protection_url: type: string format: uri @@ -67590,7 +67622,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *345 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -67612,15 +67644,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *406 + schema: *405 examples: default: value: @@ -67814,9 +67846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -68076,7 +68108,7 @@ paths: url: type: string format: uri - required_status_checks: &414 + required_status_checks: &413 title: Status Check Policy description: Status Check Policy type: object @@ -68157,7 +68189,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -68175,7 +68207,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 apps: type: array items: *5 @@ -68235,7 +68267,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *408 + restrictions: *407 required_conversation_resolution: type: object properties: @@ -68347,9 +68379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68374,17 +68406,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &410 + default: &409 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -68406,17 +68438,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *410 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68435,9 +68467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68462,17 +68494,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: &412 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -68568,9 +68600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68668,9 +68700,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *410 examples: - default: *412 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -68691,9 +68723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68720,17 +68752,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: &413 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -68753,17 +68785,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *408 examples: - default: *413 + default: *412 '404': *6 x-github: githubCloudOnly: false @@ -68783,9 +68815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68810,17 +68842,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: &415 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -68846,9 +68878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -68900,9 +68932,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *413 examples: - default: *415 + default: *414 '404': *6 '422': *15 x-github: @@ -68924,9 +68956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -68950,9 +68982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -68986,9 +69018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -69055,9 +69087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -69121,9 +69153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -69189,15 +69221,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response content: application/json: - schema: *408 + schema: *407 examples: default: value: @@ -69288,9 +69320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '204': description: Response @@ -69313,9 +69345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -69325,7 +69357,7 @@ paths: type: array items: *5 examples: - default: &416 + default: &415 value: - id: 1 slug: octoapp @@ -69382,9 +69414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69418,7 +69450,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -69439,9 +69471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69475,7 +69507,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -69496,9 +69528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69532,7 +69564,7 @@ paths: type: array items: *5 examples: - default: *416 + default: *415 '422': *15 x-github: githubCloudOnly: false @@ -69554,9 +69586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -69564,9 +69596,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '404': *6 x-github: githubCloudOnly: false @@ -69586,9 +69618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -69624,9 +69656,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69647,9 +69679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: false content: @@ -69685,9 +69717,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69708,9 +69740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: content: application/json: @@ -69745,9 +69777,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -69769,9 +69801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 responses: '200': description: Response @@ -69805,9 +69837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69865,9 +69897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69925,9 +69957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -69987,9 +70019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 requestBody: required: true content: @@ -70011,7 +70043,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *416 examples: default: value: @@ -70127,8 +70159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -70407,7 +70439,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &417 title: CheckRun description: A check performed on the code of a given code change type: object @@ -70543,7 +70575,7 @@ paths: check. type: array items: *85 - deployment: &732 + deployment: &731 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -70830,9 +70862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: + - *340 - *341 - - *342 - - &419 + - &418 name: check_run_id description: The unique identifier of the check run. in: path @@ -70844,9 +70876,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: &420 + default: &419 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -70946,9 +70978,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 requestBody: required: true content: @@ -71188,9 +71220,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *417 examples: - default: *420 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71210,9 +71242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: + - *340 - *341 - - *342 - - *419 + - *418 - *17 - *19 responses: @@ -71322,15 +71354,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: + - *340 - *341 - - *342 - - *419 + - *418 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -71368,8 +71400,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -71391,7 +71423,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &422 + schema: &421 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -71478,7 +71510,7 @@ paths: anyOf: - type: 'null' - *5 - repository: *156 + repository: *155 created_at: type: - string @@ -71489,7 +71521,7 @@ paths: - string - 'null' format: date-time - head_commit: *421 + head_commit: *420 latest_check_runs_count: type: integer check_runs_url: @@ -71517,7 +71549,7 @@ paths: - check_runs_url - pull_requests examples: - default: &423 + default: &422 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -71808,9 +71840,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71829,8 +71861,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -71891,7 +71923,7 @@ paths: required: - app_id - setting - repository: *156 + repository: *155 examples: default: value: @@ -72139,9 +72171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: + - *340 - *341 - - *342 - - &424 + - &423 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -72153,9 +72185,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *421 examples: - default: *423 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72178,17 +72210,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 - - &477 + - *423 + - &476 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &478 + - &477 name: status description: Returns check runs with the specified `status`. in: query @@ -72227,9 +72259,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: &479 + default: &478 value: total_count: 1 check_runs: @@ -72331,15 +72363,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: + - *340 - *341 - - *342 - - *424 + - *423 responses: '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -72362,8 +72394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -72461,8 +72493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -72525,7 +72557,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -72592,21 +72624,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - &443 + - &442 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: *427 - - &444 + schema: *426 + - &443 name: pr description: The number of the pull request for the results you want to list. in: query @@ -72631,13 +72663,13 @@ paths: be returned. in: query required: false - schema: *428 + schema: *427 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *429 + schema: *428 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -72656,24 +72688,24 @@ paths: items: type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 - rule: *433 - tool: *434 - most_recent_instance: *435 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 + rule: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -72796,7 +72828,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &436 + '403': &435 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -72823,9 +72855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - &437 + - &436 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -72833,30 +72865,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: &438 + schema: &437 type: object properties: - number: *181 - created_at: *182 - updated_at: *183 - url: *184 - html_url: *185 - instances_url: *430 - state: *190 - fixed_at: *186 + number: *180 + created_at: *181 + updated_at: *182 + url: *183 + html_url: *184 + instances_url: *429 + state: *189 + fixed_at: *185 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *187 - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_at: *186 + dismissed_reason: *430 + dismissed_comment: *431 rule: type: object properties: @@ -72918,8 +72950,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *434 - most_recent_instance: *435 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -73015,7 +73047,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73035,9 +73067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -73052,8 +73084,8 @@ paths: enum: - open - dismissed - dismissed_reason: *431 - dismissed_comment: *432 + dismissed_reason: *430 + dismissed_comment: *431 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -73081,7 +73113,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *437 examples: default: value: @@ -73157,7 +73189,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &442 + '403': &441 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -73184,15 +73216,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: Response content: application/json: - schema: &439 + schema: &438 type: object properties: status: @@ -73219,13 +73251,13 @@ paths: - description - started_at examples: - default: &440 + default: &439 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &441 + '400': &440 description: Bad Request content: application/json: @@ -73236,7 +73268,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73261,29 +73293,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: + - *340 - *341 - - *342 - - *437 + - *436 responses: '200': description: OK content: application/json: - schema: *439 + schema: *438 examples: - default: *440 + default: *439 '202': description: Accepted content: application/json: - schema: *439 + schema: *438 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *441 + '400': *440 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -73315,9 +73347,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: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: false content: @@ -73363,8 +73395,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *441 - '403': *442 + '400': *440 + '403': *441 '404': *6 '422': description: Unprocessable Entity @@ -73388,13 +73420,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 + - *442 - *443 - - *444 responses: '200': description: Response @@ -73405,10 +73437,10 @@ paths: items: type: object properties: - ref: *427 - analysis_key: *445 - environment: *446 - category: *447 + ref: *426 + analysis_key: *444 + environment: *445 + category: *446 state: type: - string @@ -73425,7 +73457,7 @@ paths: properties: text: type: string - location: *448 + location: *447 html_url: type: string classifications: @@ -73433,7 +73465,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: *449 + items: *448 examples: default: value: @@ -73470,7 +73502,7 @@ paths: end_column: 50 classifications: - source - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73504,25 +73536,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: + - *340 - *341 - - *342 + - *424 - *425 - - *426 - *19 - *17 - - *444 + - *443 - 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: *427 + schema: *426 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &450 + schema: &449 type: string description: An identifier for the upload. examples: @@ -73544,23 +73576,23 @@ paths: application/json: schema: type: array - items: &451 + items: &450 type: object properties: - ref: *427 - commit_sha: &459 + ref: *426 + commit_sha: &458 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: *445 + analysis_key: *444 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *447 + category: *446 error: type: string examples: @@ -73585,8 +73617,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *450 - tool: *434 + sarif_id: *449 + tool: *433 deletable: type: boolean warning: @@ -73648,7 +73680,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -73684,8 +73716,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73698,7 +73730,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *450 examples: response: summary: application/json response @@ -73752,7 +73784,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *436 + '403': *435 '404': *6 '422': description: Response if analysis could not be processed @@ -73839,8 +73871,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: + - *340 - *341 - - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73896,7 +73928,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': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -73918,8 +73950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -73927,7 +73959,7 @@ paths: application/json: schema: type: array - items: &452 + items: &451 title: CodeQL Database description: A CodeQL database. type: object @@ -74039,7 +74071,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': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -74068,8 +74100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -74081,7 +74113,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *451 examples: default: value: @@ -74113,9 +74145,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': &486 + '302': &485 description: Found - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -74137,8 +74169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: + - *340 - *341 - - *342 - name: language in: path description: The language of the CodeQL database. @@ -74148,7 +74180,7 @@ paths: responses: '204': description: Response - '403': *442 + '403': *441 '404': *6 '503': *114 x-github: @@ -74176,8 +74208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -74186,7 +74218,7 @@ paths: type: object additionalProperties: false properties: - language: &453 + language: &452 type: string description: The language targeted by the CodeQL query enum: @@ -74266,7 +74298,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &457 + schema: &456 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -74276,7 +74308,7 @@ paths: description: The ID of the variant analysis. controller_repo: *65 actor: *4 - query_language: *453 + query_language: *452 query_pack_url: type: string description: The download url for the query pack. @@ -74324,7 +74356,7 @@ paths: items: type: object properties: - repository: &454 + repository: &453 title: Repository Identifier description: Repository Identifier type: object @@ -74366,7 +74398,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &458 + analysis_status: &457 type: string description: The new status of the CodeQL variant analysis repository task. @@ -74398,7 +74430,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &455 + access_mismatch_repos: &454 type: object properties: repository_count: @@ -74413,7 +74445,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: *454 + items: *453 required: - repository_count - repositories @@ -74436,8 +74468,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *455 - over_limit_repos: *455 + no_codeql_db_repos: *454 + over_limit_repos: *454 required: - access_mismatch_repos - not_found_repos @@ -74453,7 +74485,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &456 + value: &455 summary: Default response value: id: 1 @@ -74599,10 +74631,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *456 + value: *455 repository_lists: summary: Response for a successful variant analysis submission - value: *456 + value: *455 '404': *6 '422': description: Unable to process variant analysis submission @@ -74630,8 +74662,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: + - *340 - *341 - - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -74643,9 +74675,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *456 examples: - default: *456 + default: *455 '404': *6 '503': *114 x-github: @@ -74668,7 +74700,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: - - *341 + - *340 - name: repo in: path description: The name of the controller repository. @@ -74703,7 +74735,7 @@ paths: type: object properties: repository: *65 - analysis_status: *458 + analysis_status: *457 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -74828,8 +74860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -74939,7 +74971,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *436 + '403': *435 '404': *6 '503': *114 x-github: @@ -74960,8 +74992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -75030,7 +75062,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -75055,7 +75087,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *442 + '403': *441 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75126,8 +75158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -75135,7 +75167,7 @@ paths: schema: type: object properties: - commit_sha: *459 + commit_sha: *458 ref: type: string description: |- @@ -75195,7 +75227,7 @@ paths: schema: type: object properties: - id: *450 + id: *449 url: type: string description: The REST API URL for checking the status of the upload. @@ -75209,7 +75241,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': *442 + '403': *441 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -75232,8 +75264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: + - *340 - *341 - - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -75281,7 +75313,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': *436 + '403': *435 '404': description: Not Found if the sarif id does not match any upload '503': *114 @@ -75306,8 +75338,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -75388,8 +75420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: + - *340 - *341 - - *342 - 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 @@ -75517,8 +75549,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -75534,7 +75566,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: default: value: @@ -75832,8 +75864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -75897,17 +75929,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '400': *14 '401': *23 '403': *27 @@ -75936,8 +75968,8 @@ paths: parameters: - *17 - *19 + - *340 - *341 - - *342 responses: '200': description: Response @@ -76001,8 +76033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: + - *340 - *341 - - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76039,9 +76071,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: &676 + default: &675 value: total_count: 2 machines: @@ -76081,8 +76113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: + - *340 - *341 - - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -76169,8 +76201,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: + - *340 - *341 - - *342 - 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 @@ -76239,8 +76271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -76258,7 +76290,7 @@ paths: type: integer secrets: type: array - items: &465 + items: &464 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -76279,7 +76311,7 @@ paths: - created_at - updated_at examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -76302,16 +76334,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *463 + schema: *462 examples: - default: *464 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -76331,17 +76363,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *465 + schema: *464 examples: - default: *466 + default: *465 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76361,9 +76393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -76391,7 +76423,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -76415,9 +76447,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -76445,8 +76477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: + - *340 - *341 - - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -76484,7 +76516,7 @@ paths: application/json: schema: type: array - items: &467 + items: &466 title: Collaborator description: Collaborator type: object @@ -76677,8 +76709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -76725,8 +76757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 requestBody: required: false @@ -76753,7 +76785,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &535 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -76765,7 +76797,7 @@ paths: format: int64 examples: - 42 - repository: *156 + repository: *155 invitee: anyOf: - type: 'null' @@ -76941,7 +76973,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *125 + schema: *124 '403': *27 x-github: triggersNotification: true @@ -76981,8 +77013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: + - *340 - *341 - - *342 - *70 responses: '204': @@ -77014,8 +77046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: + - *340 - *341 - - *342 - *70 responses: '200': @@ -77036,7 +77068,7 @@ paths: user: anyOf: - type: 'null' - - *467 + - *466 required: - permission - role_name @@ -77090,8 +77122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -77101,7 +77133,7 @@ paths: application/json: schema: type: array - items: &468 + items: &467 title: Commit Comment description: Commit Comment type: object @@ -77159,7 +77191,7 @@ paths: - created_at - updated_at examples: - default: &473 + default: &472 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77218,17 +77250,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: &474 + default: &473 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77285,8 +77317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -77309,7 +77341,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: default: value: @@ -77360,8 +77392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -77383,8 +77415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -77411,7 +77443,7 @@ paths: application/json: schema: type: array - items: &469 + items: &468 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -77455,7 +77487,7 @@ paths: - content - created_at examples: - default: &538 + default: &537 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77500,8 +77532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -77534,9 +77566,9 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: &470 + default: &469 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77565,9 +77597,9 @@ paths: description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -77589,10 +77621,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - &539 + - &538 name: reaction_id description: The unique identifier of the reaction. in: path @@ -77647,8 +77679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: + - *340 - *341 - - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -77704,9 +77736,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: &586 + default: &585 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77800,9 +77832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: + - *340 - *341 - - *342 - - &472 + - &471 name: commit_sha description: The SHA of the commit. in: path @@ -77874,9 +77906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -77886,9 +77918,9 @@ paths: application/json: schema: type: array - items: *468 + items: *467 examples: - default: *473 + default: *472 headers: Link: *66 x-github: @@ -77916,9 +77948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: + - *340 - *341 - - *342 - - *472 + - *471 requestBody: required: true content: @@ -77953,9 +77985,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *467 examples: - default: *474 + default: *473 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77983,9 +78015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: + - *340 - *341 - - *342 - - *472 + - *471 - *17 - *19 responses: @@ -77995,9 +78027,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: &578 + default: &577 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -78534,11 +78566,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: + - *340 - *341 - - *342 - *19 - *17 - - &476 + - &475 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)" @@ -78553,9 +78585,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *470 examples: - default: &566 + default: &565 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78643,7 +78675,7 @@ paths: schema: type: string examples: - default: &483 + default: &482 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -78656,7 +78688,7 @@ paths: schema: type: string examples: - default: &484 + default: &483 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -78709,11 +78741,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: + - *340 - *341 - - *342 + - *475 - *476 - *477 - - *478 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -78747,9 +78779,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *417 examples: - default: *479 + default: *478 headers: Link: *66 x-github: @@ -78774,9 +78806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -78784,7 +78816,7 @@ paths: schema: type: integer example: 1 - - *477 + - *476 - *17 - *19 responses: @@ -78802,7 +78834,7 @@ paths: type: integer check_suites: type: array - items: *422 + items: *421 examples: default: value: @@ -79002,9 +79034,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -79075,7 +79107,7 @@ paths: type: string total_count: type: integer - repository: *156 + repository: *155 commit_url: type: string format: uri @@ -79206,9 +79238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: + - *340 - *341 - - *342 - - *476 + - *475 - *17 - *19 responses: @@ -79218,7 +79250,7 @@ paths: application/json: schema: type: array - items: &656 + items: &655 title: Status description: The status of a commit. type: object @@ -79299,7 +79331,7 @@ paths: site_admin: false headers: Link: *66 - '301': *345 + '301': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79327,8 +79359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -79361,11 +79393,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *480 + - *479 code_of_conduct_file: anyOf: - type: 'null' - - &481 + - &480 title: Community Health File type: object properties: @@ -79385,19 +79417,19 @@ paths: contributing: anyOf: - type: 'null' - - *481 + - *480 readme: anyOf: - type: 'null' - - *481 + - *480 issue_template: anyOf: - type: 'null' - - *481 + - *480 pull_request_template: anyOf: - type: 'null' - - *481 + - *480 required: - code_of_conduct - code_of_conduct_file @@ -79526,8 +79558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: + - *340 - *341 - - *342 - *19 - *17 - name: basehead @@ -79575,8 +79607,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *471 - merge_base_commit: *471 + base_commit: *470 + merge_base_commit: *470 status: type: string enum: @@ -79600,10 +79632,10 @@ paths: - 6 commits: type: array - items: *471 + items: *470 files: type: array - items: *482 + items: *481 required: - url - html_url @@ -79849,12 +79881,12 @@ paths: schema: type: string examples: - default: *483 + default: *482 application/vnd.github.patch: schema: type: string examples: - default: *484 + default: *483 '404': *6 '500': *53 '503': *114 @@ -79899,8 +79931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -80070,7 +80102,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &485 + response-if-content-is-a-file-github-object: &484 summary: Response if content is a file value: type: file @@ -80207,7 +80239,7 @@ paths: - size - type - url - - &591 + - &590 title: Content File description: Content File type: object @@ -80425,7 +80457,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *485 + response-if-content-is-a-file: *484 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -80494,7 +80526,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *486 + '302': *485 '304': *35 x-github: githubCloudOnly: false @@ -80547,8 +80579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -80643,7 +80675,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &486 title: File Commit description: File Commit type: object @@ -80799,7 +80831,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: example-for-creating-a-file: value: @@ -80853,7 +80885,7 @@ paths: schema: oneOf: - *3 - - &517 + - &516 description: Repository rule violation was detected type: object properties: @@ -80874,7 +80906,7 @@ paths: items: type: object properties: - placeholder_id: &648 + placeholder_id: &647 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -80906,8 +80938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: + - *340 - *341 - - *342 - name: path description: path parameter in: path @@ -80968,7 +81000,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *486 examples: default: value: @@ -81023,8 +81055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: + - *340 - *341 - - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81154,8 +81186,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -81288,24 +81320,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *202 - *203 - *204 - *205 - *206 - - *207 - 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 + - *207 + - *487 - *208 - - *488 - *209 - *210 - - *211 - *60 - *45 - *46 @@ -81317,11 +81349,11 @@ paths: application/json: schema: type: array - items: &492 + items: &491 type: object description: A Dependabot alert. properties: - number: *181 + number: *180 state: type: string description: The state of the Dependabot alert. @@ -81368,13 +81400,13 @@ paths: - transitive - inconclusive - - security_advisory: *489 + security_advisory: *488 security_vulnerability: *64 - url: *184 - html_url: *185 - created_at: *182 - updated_at: *183 - dismissed_at: *187 + url: *183 + html_url: *184 + created_at: *181 + updated_at: *182 + dismissed_at: *186 dismissed_by: anyOf: - type: 'null' @@ -81398,9 +81430,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *186 - auto_dismissed_at: *490 - dismissal_request: *491 + fixed_at: *185 + auto_dismissed_at: *489 + dismissal_request: *490 assignees: type: array description: The users assigned to this alert. @@ -81655,9 +81687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - &493 + - &492 name: alert_number in: path description: |- @@ -81666,13 +81698,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *181 + schema: *180 responses: '200': description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -81804,9 +81836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: + - *340 - *341 - - *342 - - *493 + - *492 requestBody: required: true content: @@ -81862,7 +81894,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *491 examples: default: value: @@ -81992,8 +82024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -82011,7 +82043,7 @@ paths: type: integer secrets: type: array - items: &496 + items: &495 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82065,16 +82097,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *494 + schema: *493 examples: - default: *495 + default: *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82094,15 +82126,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *496 + schema: *495 examples: default: value: @@ -82128,9 +82160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 requestBody: required: true content: @@ -82158,7 +82190,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -82182,9 +82214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: + - *340 - *341 - - *342 - - *164 + - *163 responses: '204': description: Response @@ -82206,8 +82238,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: + - *340 - *341 - - *342 - 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 @@ -82384,8 +82416,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: + - *340 - *341 - - *342 responses: '200': description: Response @@ -82644,8 +82676,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: + - *340 - *341 - - *342 - name: sbom_uuid in: path required: true @@ -82656,7 +82688,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *497 + Location: *496 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -82677,8 +82709,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: + - *340 - *341 - - *342 responses: '201': description: Response @@ -82716,8 +82748,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -82800,7 +82832,7 @@ paths: - version - url additionalProperties: false - metadata: &498 + metadata: &497 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -82839,7 +82871,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *498 + metadata: *497 resolved: type: object description: A collection of resolved package dependencies. @@ -82853,7 +82885,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *498 + metadata: *497 relationship: type: string description: A notation of whether a dependency is requested @@ -82986,8 +83018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: + - *340 - *341 - - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -83028,9 +83060,9 @@ paths: application/json: schema: type: array - items: *499 + items: *498 examples: - default: *500 + default: *499 headers: Link: *66 x-github: @@ -83096,8 +83128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -83179,7 +83211,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: simple-example: summary: Simple example @@ -83252,9 +83284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: + - *340 - *341 - - *342 - - &501 + - &500 name: deployment_id description: deployment_id parameter in: path @@ -83266,7 +83298,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *498 examples: default: value: @@ -83331,9 +83363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: + - *340 - *341 - - *342 - - *501 + - *500 responses: '204': description: Response @@ -83355,9 +83387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: + - *340 - *341 - - *342 - - *501 + - *500 - *17 - *19 responses: @@ -83367,7 +83399,7 @@ paths: application/json: schema: type: array - items: &502 + items: &501 title: Deployment Status description: The status of a deployment. type: object @@ -83531,9 +83563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 requestBody: required: true content: @@ -83608,9 +83640,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: &503 + default: &502 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83666,9 +83698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: + - *340 - *341 - - *342 - - *501 + - *500 - name: status_id in: path required: true @@ -83679,9 +83711,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *501 examples: - default: *503 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -83706,8 +83738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -83764,8 +83796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -83783,7 +83815,7 @@ paths: - 5 environments: type: array - items: &505 + items: &504 title: Environment description: Details of a deployment environment type: object @@ -83845,7 +83877,7 @@ paths: type: string examples: - wait_timer - wait_timer: &507 + wait_timer: &506 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -83887,11 +83919,11 @@ paths: items: type: object properties: - type: *504 + type: *503 reviewer: anyOf: - *4 - - *201 + - *200 required: - id - node_id @@ -83914,7 +83946,7 @@ paths: - id - node_id - type - deployment_branch_policy: &508 + deployment_branch_policy: &507 type: - object - 'null' @@ -84031,9 +84063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: + - *340 - *341 - - *342 - - &506 + - &505 name: environment_name in: path required: true @@ -84046,9 +84078,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: &509 + default: &508 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84132,9 +84164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: false content: @@ -84144,7 +84176,7 @@ paths: - object - 'null' properties: - wait_timer: *507 + wait_timer: *506 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -84163,14 +84195,14 @@ paths: items: type: object properties: - type: *504 + type: *503 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *508 + deployment_branch_policy: *507 additionalProperties: false examples: default: @@ -84190,9 +84222,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *504 examples: - default: *509 + default: *508 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84216,9 +84248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '204': description: Default response @@ -84243,9 +84275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -84264,7 +84296,7 @@ paths: - 2 branch_policies: type: array - items: &510 + items: &509 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -84325,9 +84357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -84375,9 +84407,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - example-wildcard: &511 + example-wildcard: &510 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -84419,10 +84451,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - &512 + - *505 + - &511 name: branch_policy_id in: path required: true @@ -84434,9 +84466,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84455,10 +84487,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 requestBody: required: true content: @@ -84487,9 +84519,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *509 examples: - default: *511 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84508,10 +84540,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: + - *340 - *341 - - *342 - - *506 - - *512 + - *505 + - *511 responses: '204': description: Response @@ -84536,9 +84568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 + - *340 responses: '200': description: List of deployment protection rules @@ -84555,7 +84587,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &513 + items: &512 title: Deployment protection rule description: Deployment protection rule type: object @@ -84577,7 +84609,7 @@ paths: for the environment. examples: - true - app: &514 + app: &513 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -84680,9 +84712,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: - - *506 - - *342 + - *505 - *341 + - *340 requestBody: content: application/json: @@ -84703,9 +84735,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *513 + schema: *512 examples: - default: &515 + default: &514 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -84740,9 +84772,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: - - *506 - - *342 + - *505 - *341 + - *340 - *19 - *17 responses: @@ -84762,7 +84794,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *514 + items: *513 examples: default: value: @@ -84797,10 +84829,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: + - *340 - *341 - - *342 - - *506 - - &516 + - *505 + - &515 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -84812,9 +84844,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *512 examples: - default: *515 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84835,10 +84867,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *506 - - *342 + - *505 - *341 - - *516 + - *340 + - *515 responses: '204': description: Response @@ -84864,9 +84896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: + - *340 - *341 - - *342 - - *506 + - *505 - *17 - *19 responses: @@ -84884,9 +84916,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *384 examples: - default: *386 + default: *385 headers: Link: *66 x-github: @@ -84911,17 +84943,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: + - *340 - *341 - - *342 - - *506 + - *505 responses: '200': description: Response content: application/json: - schema: *170 + schema: *169 examples: - default: *171 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84943,18 +84975,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '200': description: Response content: application/json: - schema: *385 + schema: *384 examples: - default: *399 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84976,10 +85008,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 requestBody: required: true content: @@ -85010,7 +85042,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -85036,10 +85068,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: + - *340 - *341 - - *342 - - *506 - - *164 + - *505 + - *163 responses: '204': description: Default response @@ -85064,10 +85096,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: + - *340 - *341 - - *342 - - *506 - - *173 + - *505 + - *172 - *19 responses: '200': @@ -85084,9 +85116,9 @@ paths: type: integer variables: type: array - items: *387 + items: *386 examples: - default: *388 + default: *387 headers: Link: *66 x-github: @@ -85109,9 +85141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 + - *505 requestBody: required: true content: @@ -85138,7 +85170,7 @@ paths: description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -85163,18 +85195,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: + - *340 - *341 - - *342 - - *506 - - *167 + - *505 + - *166 responses: '200': description: Response content: application/json: - schema: *387 + schema: *386 examples: - default: *400 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85195,10 +85227,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 requestBody: required: true content: @@ -85240,10 +85272,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: + - *340 - *341 - - *342 - - *167 - - *506 + - *166 + - *505 responses: '204': description: Response @@ -85265,8 +85297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -85334,8 +85366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: + - *340 - *341 - - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -85357,7 +85389,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -85494,8 +85526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -85528,9 +85560,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -85551,8 +85583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85611,8 +85643,8 @@ paths: application/json: schema: oneOf: - - *125 - - *517 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85637,8 +85669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: + - *340 - *341 - - *342 - name: file_sha in: path required: true @@ -85738,8 +85770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -85848,7 +85880,7 @@ paths: description: Response content: application/json: - schema: &518 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86075,15 +86107,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: + - *340 - *341 - - *342 - - *472 + - *471 responses: '200': description: Response content: application/json: - schema: *518 + schema: *517 examples: default: value: @@ -86139,9 +86171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: + - *340 - *341 - - *342 - - &519 + - &518 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. @@ -86158,7 +86190,7 @@ paths: application/json: schema: type: array - items: &520 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -86234,17 +86266,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '200': description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: &521 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -86273,8 +86305,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -86303,9 +86335,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -86331,9 +86363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 requestBody: required: true content: @@ -86362,9 +86394,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *519 examples: - default: *521 + default: *520 '422': *15 '409': *52 x-github: @@ -86382,9 +86414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: + - *340 - *341 - - *342 - - *519 + - *518 responses: '204': description: Response @@ -86439,8 +86471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -86507,7 +86539,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -86563,7 +86595,7 @@ paths: - sha - type - url - verification: *522 + verification: *521 required: - sha - url @@ -86573,7 +86605,7 @@ paths: - tag - message examples: - default: &524 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -86646,8 +86678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: + - *340 - *341 - - *342 - name: tag_sha in: path required: true @@ -86658,9 +86690,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *522 examples: - default: *524 + default: *523 '404': *6 '409': *52 x-github: @@ -86684,8 +86716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -86759,7 +86791,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -86861,8 +86893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: + - *340 - *341 - - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -86885,7 +86917,7 @@ paths: description: Response content: application/json: - schema: *525 + schema: *524 examples: default-response: summary: Default response @@ -86943,8 +86975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -86988,8 +87020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -86999,7 +87031,7 @@ paths: application/json: schema: type: array - items: &526 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -87062,7 +87094,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &763 + last_response: &762 title: Hook Response type: object properties: @@ -87139,8 +87171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -87193,9 +87225,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: &527 + default: &526 value: type: Repository id: 12345678 @@ -87243,17 +87275,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -87273,9 +87305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: true content: @@ -87320,9 +87352,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *525 examples: - default: *527 + default: *526 '422': *15 '404': *6 x-github: @@ -87343,9 +87375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -87369,9 +87401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '200': description: Response @@ -87398,9 +87430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: + - *340 - *341 - - *342 - - *219 + - *218 requestBody: required: false content: @@ -87444,12 +87476,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *17 + - *219 - *220 - - *221 responses: '200': description: Response @@ -87457,9 +87489,9 @@ paths: application/json: schema: type: array - items: *222 + items: *221 examples: - default: *223 + default: *222 '400': *14 '422': *15 x-github: @@ -87478,18 +87510,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *223 examples: - default: *225 + default: *224 '400': *14 '422': *15 x-github: @@ -87508,9 +87540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 - *16 responses: '202': *37 @@ -87533,9 +87565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -87560,9 +87592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: + - *340 - *341 - - *342 - - *219 + - *218 responses: '204': description: Response @@ -87585,8 +87617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response if immutable releases are enabled @@ -87634,8 +87666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -87655,8 +87687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: + - *340 - *341 - - *342 responses: '204': *59 '409': *52 @@ -87713,14 +87745,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &528 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -87827,7 +87859,7 @@ paths: - html_url - authors_url examples: - default: &531 + default: &530 value: vcs: subversion use_lfs: true @@ -87843,7 +87875,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': &529 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -87872,8 +87904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -87921,7 +87953,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: default: value: @@ -87946,7 +87978,7 @@ paths: type: string '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87974,8 +88006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -88027,7 +88059,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: example-1: summary: Example 1 @@ -88075,7 +88107,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88098,12 +88130,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: + - *340 - *341 - - *342 responses: '204': description: Response - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88129,9 +88161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: + - *340 - *341 - - *342 - - &697 + - &696 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88145,7 +88177,7 @@ paths: application/json: schema: type: array - items: &530 + items: &529 title: Porter Author description: Porter Author type: object @@ -88199,7 +88231,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': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88224,8 +88256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: + - *340 - *341 - - *342 - name: author_id in: path required: true @@ -88255,7 +88287,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *529 examples: default: value: @@ -88268,7 +88300,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88292,8 +88324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -88334,7 +88366,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88362,8 +88394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -88390,11 +88422,11 @@ paths: description: Response content: application/json: - schema: *528 + schema: *527 examples: - default: *531 + default: *530 '422': *15 - '503': *529 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88417,8 +88449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -88426,8 +88458,8 @@ paths: application/json: schema: *20 examples: - default: *532 - '301': *345 + default: *531 + '301': *344 '404': *6 x-github: githubCloudOnly: false @@ -88447,8 +88479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -88456,12 +88488,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: &534 + default: &533 value: limit: collaborators_only origin: repository @@ -88486,13 +88518,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: application/json: - schema: *533 + schema: *532 examples: default: summary: Example request body @@ -88504,9 +88536,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: - default: *534 + default: *533 '409': description: Response x-github: @@ -88528,8 +88560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -88552,8 +88584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -88563,9 +88595,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: &690 + default: &689 value: - id: 1 repository: @@ -88696,9 +88728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 requestBody: required: false content: @@ -88727,7 +88759,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *534 examples: default: value: @@ -88858,9 +88890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: + - *340 - *341 - - *342 - - *242 + - *241 responses: '204': description: Response @@ -88891,8 +88923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: + - *340 - *341 - - *342 - 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 @@ -88954,7 +88986,7 @@ paths: required: false schema: type: string - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -88979,7 +89011,7 @@ paths: type: array items: *82 examples: - default: &544 + default: &543 value: - id: 1 node_id: MDU6SXNzdWUx @@ -89128,7 +89160,7 @@ paths: state_reason: completed headers: Link: *66 - '301': *345 + '301': *344 '422': *15 '404': *6 x-github: @@ -89157,8 +89189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -89271,7 +89303,7 @@ paths: application/json: schema: *82 examples: - default: &541 + default: &540 value: id: 1 node_id: MDU6SXNzdWUx @@ -89434,7 +89466,7 @@ paths: '422': *15 '503': *114 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -89472,8 +89504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: + - *340 - *341 - - *342 - *104 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -89496,7 +89528,7 @@ paths: type: array items: *83 examples: - default: &543 + default: &542 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -89554,8 +89586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -89564,7 +89596,7 @@ paths: application/json: schema: *83 examples: - default: &537 + default: &536 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -89619,8 +89651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -89645,7 +89677,7 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -89663,8 +89695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -89693,8 +89725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '200': @@ -89757,7 +89789,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -89774,8 +89806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -89783,7 +89815,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 '503': *114 x-github: githubCloudOnly: false @@ -89801,8 +89833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -89829,9 +89861,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -89852,8 +89884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -89886,16 +89918,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -89917,10 +89949,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -89940,8 +89972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -89951,7 +89983,7 @@ paths: application/json: schema: type: array - items: &540 + items: &539 title: Issue Event description: Issue Event type: object @@ -90031,7 +90063,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *201 + requested_team: *200 dismissed_review: title: Issue Event Dismissed Review type: object @@ -90291,8 +90323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: + - *340 - *341 - - *342 - name: event_id in: path required: true @@ -90303,7 +90335,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *539 examples: default: value: @@ -90496,7 +90528,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *536 + '410': *535 '403': *27 x-github: githubCloudOnly: false @@ -90530,9 +90562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: + - *340 - *341 - - *342 - - &542 + - &541 name: issue_number description: The number that identifies the issue. in: path @@ -90548,7 +90580,7 @@ paths: examples: default: summary: Issue - value: *541 + value: *540 pinned_comment: summary: Issue with pinned comment value: @@ -90753,9 +90785,9 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 '304': *35 x-github: githubCloudOnly: false @@ -90780,9 +90812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -90923,13 +90955,13 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '422': *15 '503': *114 '403': *27 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90957,9 +90989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -90987,7 +91019,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91003,9 +91035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: content: application/json: @@ -91032,7 +91064,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91054,9 +91086,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: + - *340 - *341 - - *342 - - *542 + - *541 - name: assignee in: path required: true @@ -91096,9 +91128,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *87 - *17 - *19 @@ -91111,11 +91143,11 @@ paths: type: array items: *83 examples: - default: *543 + default: *542 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91144,9 +91176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91170,14 +91202,14 @@ paths: application/json: schema: *83 examples: - default: *537 + default: *536 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -91205,9 +91237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91219,12 +91251,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91252,9 +91284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -91278,15 +91310,15 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *345 + '301': *344 '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -91317,9 +91349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -91333,13 +91365,13 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *536 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -91365,9 +91397,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91379,12 +91411,12 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91401,9 +91433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -91417,7 +91449,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &548 + - &547 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -91466,7 +91498,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &548 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -91594,7 +91626,7 @@ paths: - performed_via_github_app - assignee - assigner - - &550 + - &549 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91640,7 +91672,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &550 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91686,7 +91718,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &551 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91735,7 +91767,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &552 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91764,7 +91796,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -91777,7 +91809,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &553 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91806,7 +91838,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *201 + requested_team: *200 requested_reviewer: *4 required: - review_requester @@ -91819,7 +91851,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &554 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91875,7 +91907,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &555 title: Locked Issue Event description: Locked Issue Event type: object @@ -91920,7 +91952,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &556 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -91981,7 +92013,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &557 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92042,7 +92074,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &558 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -92103,7 +92135,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &559 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -92196,7 +92228,7 @@ paths: color: red headers: Link: *66 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92213,9 +92245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -92225,9 +92257,9 @@ paths: application/json: schema: type: array - items: *545 + items: *544 examples: - default: &546 + default: &545 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -92251,9 +92283,9 @@ paths: value: '2025-12-25' headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92282,9 +92314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92350,9 +92382,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -92388,9 +92420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92457,9 +92489,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *545 + items: *544 examples: - default: *546 + default: *545 '400': *14 '403': *27 '404': *6 @@ -92490,10 +92522,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: + - *340 - *341 - - *342 - - *542 - - *245 + - *541 + - *244 responses: '204': description: Issue field value deleted successfully @@ -92518,9 +92550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -92532,7 +92564,7 @@ paths: type: array items: *81 examples: - default: &547 + default: &546 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92550,9 +92582,9 @@ paths: default: false headers: Link: *66 - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92568,9 +92600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -92615,10 +92647,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -92635,9 +92667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -92699,10 +92731,10 @@ paths: type: array items: *81 examples: - default: *547 - '301': *345 + default: *546 + '301': *344 '404': *6 - '410': *536 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -92719,15 +92751,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92746,9 +92778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - name: name in: path required: true @@ -92772,9 +92804,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *345 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92794,9 +92826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: false content: @@ -92825,7 +92857,7 @@ paths: '204': description: Response '403': *27 - '410': *536 + '410': *535 '404': *6 '422': *15 x-github: @@ -92843,9 +92875,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '204': description: Response @@ -92875,9 +92907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 responses: '200': description: Response @@ -92885,10 +92917,10 @@ paths: application/json: schema: *82 examples: - default: *541 - '301': *345 + default: *540 + '301': *344 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92905,9 +92937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - 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. @@ -92933,13 +92965,13 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92957,9 +92989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -92991,16 +93023,16 @@ paths: description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Response content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -93022,10 +93054,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: + - *340 - *341 - - *342 - - *542 - - *539 + - *541 + - *538 responses: '204': description: Response @@ -93054,9 +93086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -93080,7 +93112,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -93113,9 +93145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -93127,11 +93159,11 @@ paths: type: array items: *82 examples: - default: *544 + default: *543 headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93159,9 +93191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -93190,14 +93222,14 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *536 + '410': *535 '422': *15 '404': *6 x-github: @@ -93217,9 +93249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 requestBody: required: true content: @@ -93252,7 +93284,7 @@ paths: application/json: schema: *82 examples: - default: *541 + default: *540 '403': *27 '404': *6 '422': *7 @@ -93274,9 +93306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: + - *340 - *341 - - *342 - - *542 + - *541 - *17 - *19 responses: @@ -93291,6 +93323,7 @@ paths: description: Timeline Event type: object anyOf: + - *547 - *548 - *549 - *550 @@ -93303,7 +93336,6 @@ paths: - *557 - *558 - *559 - - *560 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93360,7 +93392,7 @@ paths: pin: anyOf: - type: 'null' - - *561 + - *560 required: - event - actor @@ -93636,7 +93668,7 @@ paths: type: string comments: type: array - items: &580 + items: &579 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93877,7 +93909,7 @@ paths: type: string comments: type: array - items: *468 + items: *467 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -94152,7 +94184,7 @@ paths: headers: Link: *66 '404': *6 - '410': *536 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94169,8 +94201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -94180,7 +94212,7 @@ paths: application/json: schema: type: array - items: &562 + items: &561 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94248,8 +94280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94285,9 +94317,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: &563 + default: &562 value: id: 1 key: ssh-rsa AAA... @@ -94321,9 +94353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: + - *340 - *341 - - *342 - - &564 + - &563 name: key_id description: The unique identifier of the key. in: path @@ -94335,9 +94367,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *561 examples: - default: *563 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -94355,9 +94387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: + - *340 - *341 - - *342 - - *564 + - *563 responses: '204': description: Response @@ -94377,8 +94409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -94390,7 +94422,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 '404': *6 @@ -94411,8 +94443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94450,7 +94482,7 @@ paths: application/json: schema: *81 examples: - default: &565 + default: &564 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94482,8 +94514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -94496,7 +94528,7 @@ paths: application/json: schema: *81 examples: - default: *565 + default: *564 '404': *6 x-github: githubCloudOnly: false @@ -94513,8 +94545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -94579,8 +94611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: + - *340 - *341 - - *342 - name: name in: path required: true @@ -94606,8 +94638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -94646,9 +94678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: + - *340 - *341 - - *342 - - *443 + - *442 responses: '200': description: Response @@ -94795,8 +94827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94861,8 +94893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -94896,9 +94928,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *471 + schema: *470 examples: - default: *566 + default: *565 '204': description: Response when already merged '404': @@ -94923,8 +94955,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: + - *340 - *341 - - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94965,7 +94997,7 @@ paths: application/json: schema: type: array - items: *282 + items: *281 examples: default: value: @@ -95021,8 +95053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95062,9 +95094,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: &567 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -95123,9 +95155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: + - *340 - *341 - - *342 - - &568 + - &567 name: milestone_number description: The number that identifies the milestone. in: path @@ -95137,9 +95169,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 '404': *6 x-github: githubCloudOnly: false @@ -95156,9 +95188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 requestBody: required: false content: @@ -95196,9 +95228,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *281 examples: - default: *567 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95214,9 +95246,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 responses: '204': description: Response @@ -95237,9 +95269,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: + - *340 - *341 - - *342 - - *568 + - *567 - *17 - *19 responses: @@ -95251,7 +95283,7 @@ paths: type: array items: *81 examples: - default: *547 + default: *546 headers: Link: *66 x-github: @@ -95270,12 +95302,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: + - *340 - *341 - - *342 + - *568 - *569 - - *570 - *87 - - *571 + - *570 - *17 - *19 responses: @@ -95287,7 +95319,7 @@ paths: type: array items: *107 examples: - default: *572 + default: *571 headers: Link: *66 x-github: @@ -95311,8 +95343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -95370,14 +95402,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: &573 + schema: &572 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95521,7 +95553,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &573 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95562,8 +95594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95618,9 +95650,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *572 examples: - default: *574 + default: *573 '422': *15 '409': *52 x-github: @@ -95643,8 +95675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -95744,8 +95776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -95771,8 +95803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -95782,7 +95814,7 @@ paths: application/json: schema: type: array - items: &575 + items: &574 title: Page Build description: Page Build type: object @@ -95874,8 +95906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: + - *340 - *341 - - *342 responses: '201': description: Response @@ -95922,16 +95954,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: &576 + default: &575 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95979,8 +96011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: + - *340 - *341 - - *342 - name: build_id in: path required: true @@ -95991,9 +96023,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *574 examples: - default: *576 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96013,8 +96045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -96122,9 +96154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - &577 + - &576 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96182,9 +96214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: + - *340 - *341 - - *342 - - *577 + - *576 responses: '204': *59 '404': *6 @@ -96211,8 +96243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -96480,7 +96512,7 @@ paths: description: Empty response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -96507,8 +96539,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: + - *340 - *341 - - *342 responses: '200': description: Private vulnerability reporting status @@ -96545,8 +96577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -96567,8 +96599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': *59 '422': *14 @@ -96590,8 +96622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -96599,7 +96631,7 @@ paths: application/json: schema: type: array - items: *296 + items: *295 examples: default: value: @@ -96630,8 +96662,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: + - *340 - *341 - - *342 requestBody: required: true content: @@ -96643,7 +96675,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *295 required: - properties examples: @@ -96693,8 +96725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: + - *340 - *341 - - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96754,9 +96786,9 @@ paths: application/json: schema: type: array - items: *475 + items: *474 examples: - default: *578 + default: *577 headers: Link: *66 '304': *35 @@ -96788,8 +96820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -96856,7 +96888,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &581 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -96985,7 +97017,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 active_lock_reason: type: - string @@ -97034,7 +97066,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *260 head: type: object properties: @@ -97072,14 +97104,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *282 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -97090,7 +97122,7 @@ paths: - review_comment - self author_association: *79 - auto_merge: *579 + auto_merge: *578 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -97286,7 +97318,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &583 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97824,8 +97856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: + - *340 - *341 - - *342 - name: sort in: query required: false @@ -97854,9 +97886,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: &585 + default: &584 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97933,17 +97965,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '200': description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: &581 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -98018,8 +98050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -98042,9 +98074,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: - default: *581 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98060,8 +98092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - *96 responses: '204': @@ -98083,8 +98115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -98111,9 +98143,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -98134,8 +98166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: + - *340 - *341 - - *342 - *96 requestBody: required: true @@ -98168,16 +98200,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -98199,10 +98231,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: + - *340 - *341 - - *342 - *96 - - *539 + - *538 responses: '204': description: Response @@ -98245,9 +98277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: + - *340 - *341 - - *342 - - &584 + - &583 name: pull_number description: The number that identifies the pull request. in: path @@ -98260,9 +98292,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '304': *35 '404': *6 '406': @@ -98297,9 +98329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -98341,9 +98373,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *581 examples: - default: *583 + default: *582 '422': *15 '403': *27 x-github: @@ -98365,9 +98397,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -98428,17 +98460,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -98468,9 +98500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *104 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98491,9 +98523,9 @@ paths: application/json: schema: type: array - items: *580 + items: *579 examples: - default: *585 + default: *584 headers: Link: *66 x-github: @@ -98526,9 +98558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -98634,7 +98666,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: example-for-a-multi-line-comment: value: @@ -98722,9 +98754,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *96 requestBody: required: true @@ -98747,7 +98779,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *579 examples: default: value: @@ -98833,9 +98865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -98845,9 +98877,9 @@ paths: application/json: schema: type: array - items: *471 + items: *470 examples: - default: *586 + default: *585 headers: Link: *66 x-github: @@ -98877,9 +98909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -98889,7 +98921,7 @@ paths: application/json: schema: type: array - items: *482 + items: *481 examples: default: value: @@ -98927,9 +98959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '204': description: Response if pull request has been merged @@ -98952,9 +98984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -99066,9 +99098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 responses: '200': description: Response @@ -99084,7 +99116,7 @@ paths: items: *4 teams: type: array - items: *201 + items: *200 required: - users - teams @@ -99143,9 +99175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -99182,7 +99214,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -99718,9 +99750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: true content: @@ -99754,7 +99786,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *474 examples: default: value: @@ -100270,9 +100302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 - *17 - *19 responses: @@ -100282,7 +100314,7 @@ paths: application/json: schema: type: array - items: &587 + items: &586 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100438,9 +100470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -100530,9 +100562,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &589 + default: &588 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100595,10 +100627,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - &588 + - *583 + - &587 name: review_id description: The unique identifier of the review. in: path @@ -100610,9 +100642,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: &590 + default: &589 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100671,10 +100703,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -100697,7 +100729,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -100759,18 +100791,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 responses: '200': description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *589 + default: *588 '422': *7 '404': *6 x-github: @@ -100797,10 +100829,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 - *17 - *19 responses: @@ -100898,9 +100930,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *282 + html: *282 + pull_request: *282 required: - self - html @@ -101058,10 +101090,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -101090,7 +101122,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: default: value: @@ -101153,10 +101185,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: + - *340 - *341 - - *342 - - *584 - - *588 + - *583 + - *587 requestBody: required: true content: @@ -101191,9 +101223,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *586 examples: - default: *590 + default: *589 '404': *6 '422': *7 '403': *27 @@ -101215,9 +101247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: + - *340 - *341 - - *342 - - *584 + - *583 requestBody: required: false content: @@ -101281,8 +101313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: + - *340 - *341 - - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -101295,9 +101327,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: &592 + default: &591 value: type: file encoding: base64 @@ -101339,8 +101371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: + - *340 - *341 - - *342 - name: dir description: The alternate path to look for a README file in: path @@ -101360,9 +101392,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *590 examples: - default: *592 + default: *591 '404': *6 '422': *15 x-github: @@ -101384,8 +101416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -101395,7 +101427,7 @@ paths: application/json: schema: type: array - items: *593 + items: *592 examples: default: value: @@ -101489,8 +101521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -101566,9 +101598,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: &597 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -101673,9 +101705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: + - *340 - *341 - - *342 - - &595 + - &594 name: asset_id description: The unique identifier of the asset. in: path @@ -101687,9 +101719,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: &596 + default: &595 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 @@ -101724,7 +101756,7 @@ paths: type: User site_admin: false '404': *6 - '302': *486 + '302': *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101740,9 +101772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 requestBody: required: false content: @@ -101771,9 +101803,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *593 examples: - default: *596 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101789,9 +101821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: + - *340 - *341 - - *342 - - *595 + - *594 responses: '204': description: Response @@ -101816,8 +101848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -101903,16 +101935,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: + - *340 - *341 - - *342 responses: '200': description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -101930,8 +101962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: + - *340 - *341 - - *342 - name: tag description: tag parameter in: path @@ -101944,9 +101976,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -101968,9 +102000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: + - *340 - *341 - - *342 - - &598 + - &597 name: release_id description: The unique identifier of the release. in: path @@ -101984,9 +102016,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: *593 + schema: *592 examples: - default: *597 + default: *596 '401': description: Unauthorized x-github: @@ -102004,9 +102036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: false content: @@ -102070,9 +102102,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *592 examples: - default: *597 + default: *596 '404': description: Not Found if the discussion category name is invalid content: @@ -102093,9 +102125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 responses: '204': description: Response @@ -102116,9 +102148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: + - *340 - *341 - - *342 - - *598 + - *597 - *17 - *19 responses: @@ -102128,7 +102160,7 @@ paths: application/json: schema: type: array - items: *594 + items: *593 examples: default: value: @@ -102209,9 +102241,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: + - *340 - *341 - - *342 - - *598 + - *597 - name: name in: query required: true @@ -102237,7 +102269,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *593 examples: response-for-successful-upload: value: @@ -102292,9 +102324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 - 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. @@ -102318,9 +102350,9 @@ paths: application/json: schema: type: array - items: *469 + items: *468 examples: - default: *538 + default: *537 headers: Link: *66 '404': *6 @@ -102341,9 +102373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: + - *340 - *341 - - *342 - - *598 + - *597 requestBody: required: true content: @@ -102373,16 +102405,16 @@ paths: description: Reaction exists content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '201': description: Reaction created content: application/json: - schema: *469 + schema: *468 examples: - default: *470 + default: *469 '422': *15 x-github: githubCloudOnly: false @@ -102404,10 +102436,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: + - *340 - *341 - - *342 - - *598 - - *539 + - *597 + - *538 responses: '204': description: Response @@ -102431,9 +102463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: + - *340 - *341 - - *342 - - *407 + - *406 - *17 - *19 responses: @@ -102449,8 +102481,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &599 + - *302 + - &598 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102469,69 +102501,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. + - allOf: + - *303 + - *598 - allOf: - *304 - - *599 + - *598 - allOf: - *305 - - *599 + - *598 - allOf: - - *306 - *599 + - *598 - allOf: - - *600 - - *599 + - *306 + - *598 - allOf: - *307 - - *599 + - *598 - allOf: - *308 - - *599 + - *598 - allOf: - *309 - - *599 + - *598 - allOf: - *310 - - *599 + - *598 - allOf: - *311 - - *599 + - *598 - allOf: - *312 - - *599 + - *598 - allOf: - *313 - - *599 + - *598 - allOf: - *314 - - *599 + - *598 - allOf: - *315 - - *599 + - *598 - allOf: - - *316 - - *599 + - *320 + - *598 - allOf: - *321 - - *599 + - *598 - allOf: - *322 - - *599 + - *598 - allOf: - - *323 - - *599 + - *316 + - *598 - allOf: - *317 - - *599 + - *598 - allOf: - *318 - - *599 + - *598 - allOf: - *319 - - *599 - - allOf: - - *320 - - *599 + - *598 examples: default: value: @@ -102570,8 +102602,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - *17 - *19 - name: includes_parents @@ -102582,7 +102614,7 @@ paths: schema: type: boolean default: true - - *601 + - *600 responses: '200': description: Response @@ -102590,7 +102622,7 @@ paths: application/json: schema: type: array - items: *324 + items: *323 examples: default: value: @@ -102637,8 +102669,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 requestBody: description: Request body required: true @@ -102658,16 +102690,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *601 required: - name - enforcement @@ -102698,9 +102730,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: &613 + default: &612 value: id: 42 name: super cool ruleset @@ -102748,13 +102780,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: + - *340 - *341 - - *342 + - *602 - *603 - *604 - *605 - *606 - - *607 - *17 - *19 responses: @@ -102762,9 +102794,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *607 examples: - default: *609 + default: *608 '404': *6 '500': *53 x-github: @@ -102785,17 +102817,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: + - *340 - *341 - - *342 - - *610 + - *609 responses: '200': description: Response content: application/json: - schema: *611 + schema: *610 examples: - default: *612 + default: *611 '404': *6 '500': *53 x-github: @@ -102823,8 +102855,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102844,9 +102876,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '500': *53 put: @@ -102864,8 +102896,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102890,16 +102922,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *299 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *300 + conditions: *297 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *601 examples: default: value: @@ -102927,9 +102959,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *323 examples: - default: *613 + default: *612 '404': *6 '422': *15 '500': *53 @@ -102948,8 +102980,8 @@ paths: category: repos subcategory: rules parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102972,8 +103004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: + - *340 - *341 - - *342 - *17 - *19 - name: ruleset_id @@ -102989,9 +103021,9 @@ paths: application/json: schema: type: array - items: *327 + items: *326 examples: - default: *614 + default: *613 '404': *6 '500': *53 x-github: @@ -103010,8 +103042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: + - *340 - *341 - - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -103029,7 +103061,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *614 examples: default: value: @@ -103084,8 +103116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: + - *340 - *341 - - *342 + - *615 - *616 - *617 - *618 @@ -103093,17 +103126,16 @@ paths: - *620 - *621 - *622 - - *623 - *60 - *19 - *17 + - *623 - *624 - *625 - *626 - *627 - *628 - *629 - - *630 responses: '200': description: Response @@ -103111,24 +103143,24 @@ paths: application/json: schema: type: array - items: &634 + items: &633 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolved_at: type: - string @@ -103234,7 +103266,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *633 + - *632 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -103393,16 +103425,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 - - *629 + - *436 + - *628 responses: '200': description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -103456,9 +103488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 requestBody: required: true content: @@ -103466,8 +103498,8 @@ paths: schema: type: object properties: - state: *631 - resolution: *632 + state: *630 + resolution: *631 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103515,7 +103547,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *633 examples: default: value: @@ -103614,9 +103646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: + - *340 - *341 - - *342 - - *437 + - *436 - *19 - *17 responses: @@ -103627,7 +103659,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -103654,6 +103686,7 @@ paths: - commit details: oneOf: + - *634 - *635 - *636 - *637 @@ -103666,7 +103699,6 @@ paths: - *644 - *645 - *646 - - *647 examples: default: value: @@ -103752,8 +103784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -103761,14 +103793,14 @@ paths: schema: type: object properties: - reason: &649 + reason: &648 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *648 + placeholder_id: *647 required: - reason - placeholder_id @@ -103785,7 +103817,7 @@ paths: schema: type: object properties: - reason: *649 + reason: *648 expire_at: type: - string @@ -103832,8 +103864,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: + - *340 - *341 - - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -103848,7 +103880,7 @@ paths: properties: incremental_scans: type: array - items: &650 + items: &649 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103881,15 +103913,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *650 + items: *649 backfill_scans: type: array - items: *650 + items: *649 custom_pattern_backfill_scans: type: array items: allOf: - - *650 + - *649 - type: object properties: pattern_name: @@ -103902,7 +103934,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *650 + items: *649 examples: default: value: @@ -103967,8 +103999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: + - *340 - *341 - - *342 - *60 - name: sort description: The property to sort the results by. @@ -104012,9 +104044,9 @@ paths: application/json: schema: type: array - items: *651 + items: *650 examples: - default: *652 + default: *651 '400': *14 '404': *6 x-github: @@ -104037,8 +104069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -104118,7 +104150,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -104208,9 +104240,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: &654 + default: &653 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104449,8 +104481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -104563,7 +104595,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: default: value: @@ -104716,17 +104748,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '200': description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 + default: *653 '403': *27 '404': *6 x-github: @@ -104750,9 +104782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: + - *340 - *341 - - *342 - - *653 + - *652 requestBody: required: true content: @@ -104832,7 +104864,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *329 required: - login - type @@ -104923,17 +104955,17 @@ paths: description: Response content: application/json: - schema: *651 + schema: *650 examples: - default: *654 - add_credit: *654 + default: *653 + add_credit: *653 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *125 + schema: *124 examples: invalid_state_transition: value: @@ -104964,9 +104996,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: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': *37 '400': *14 @@ -104993,17 +105025,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: + - *340 - *341 - - *342 - - *653 + - *652 responses: '202': description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 '400': *14 '422': *15 '403': *27 @@ -105029,8 +105061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105126,8 +105158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -105136,7 +105168,7 @@ paths: application/json: schema: type: array - items: &655 + items: &654 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -105169,8 +105201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -105248,8 +105280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -105343,8 +105375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: + - *340 - *341 - - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -105498,8 +105530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: + - *340 - *341 - - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -105509,7 +105541,7 @@ paths: application/json: schema: type: array - items: *655 + items: *654 examples: default: value: @@ -105542,8 +105574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: + - *340 - *341 - - *342 - name: sha in: path required: true @@ -105599,7 +105631,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *655 examples: default: value: @@ -105653,8 +105685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105686,14 +105718,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &657 + schema: &656 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -105766,8 +105798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: + - *340 - *341 - - *342 requestBody: required: false content: @@ -105793,7 +105825,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *656 examples: default: value: @@ -105820,8 +105852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -105841,8 +105873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105924,8 +105956,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -105961,8 +105993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: + - *340 - *341 - - *342 - *17 - *19 responses: @@ -105972,9 +106004,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - default: *262 + default: *261 headers: Link: *66 '404': *6 @@ -105994,8 +106026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: + - *340 - *341 - - *342 - *19 - *17 responses: @@ -106003,7 +106035,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &657 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -106015,7 +106047,7 @@ paths: required: - names examples: - default: &659 + default: &658 value: names: - octocat @@ -106038,8 +106070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -106070,9 +106102,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *657 examples: - default: *659 + default: *658 '404': *6 '422': *7 x-github: @@ -106093,9 +106125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: + - *340 - *341 - - *342 - - &660 + - &659 name: per description: The time frame to display results for. in: query @@ -106126,7 +106158,7 @@ paths: - 128 clones: type: array - items: &661 + items: &660 title: Traffic type: object properties: @@ -106213,8 +106245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -106308,8 +106340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: + - *340 - *341 - - *342 responses: '200': description: Response @@ -106372,9 +106404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: + - *340 - *341 - - *342 - - *660 + - *659 responses: '200': description: Response @@ -106395,7 +106427,7 @@ paths: - 3782 views: type: array - items: *661 + items: *660 required: - uniques - count @@ -106472,8 +106504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: + - *340 - *341 - - *342 requestBody: required: true content: @@ -106509,7 +106541,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: value: @@ -106753,8 +106785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: + - *340 - *341 - - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -106777,8 +106809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -106800,8 +106832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -106827,8 +106859,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: + - *340 - *341 - - *342 - name: ref in: path required: true @@ -106920,9 +106952,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106963,7 +106995,7 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: default: value: @@ -107155,7 +107187,7 @@ paths: html_url: type: string format: uri - repository: *156 + repository: *155 score: type: number file_size: @@ -107174,7 +107206,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &662 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -107337,7 +107369,7 @@ paths: enum: - author-date - committer-date - - &663 + - &662 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 @@ -107406,7 +107438,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 comment_count: type: integer message: @@ -107425,7 +107457,7 @@ paths: url: type: string format: uri - verification: *522 + verification: *521 required: - author - committer @@ -107440,7 +107472,7 @@ paths: committer: anyOf: - type: 'null' - - *405 + - *404 parents: type: array items: @@ -107452,12 +107484,12 @@ paths: type: string sha: type: string - repository: *156 + repository: *155 score: type: number node_id: type: string - text_matches: *662 + text_matches: *661 required: - sha - node_id @@ -107649,7 +107681,7 @@ paths: - interactions - created - updated - - *663 + - *662 - *17 - *19 - name: advanced_search @@ -107763,11 +107795,11 @@ paths: type: - string - 'null' - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: type: string state_reason: @@ -107781,7 +107813,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *281 comments: type: integer created_at: @@ -107795,7 +107827,7 @@ paths: - string - 'null' format: date-time - text_matches: *662 + text_matches: *661 pull_request: type: object properties: @@ -107844,7 +107876,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *245 performed_via_github_app: anyOf: - type: 'null' @@ -108105,7 +108137,7 @@ paths: enum: - created - updated - - *663 + - *662 - *17 - *19 responses: @@ -108150,7 +108182,7 @@ paths: - 'null' score: type: number - text_matches: *662 + text_matches: *661 required: - id - node_id @@ -108235,7 +108267,7 @@ paths: - forks - help-wanted-issues - updated - - *663 + - *662 - *17 - *19 responses: @@ -108481,7 +108513,7 @@ paths: - admin - pull - push - text_matches: *662 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -108789,7 +108821,7 @@ paths: - string - 'null' format: uri - text_matches: *662 + text_matches: *661 related: type: - array @@ -108982,7 +109014,7 @@ paths: - followers - repositories - joined - - *663 + - *662 - *17 - *19 responses: @@ -109092,7 +109124,7 @@ paths: type: - boolean - 'null' - text_matches: *662 + text_matches: *661 blog: type: - string @@ -109174,7 +109206,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &666 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -109186,9 +109218,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 x-github: githubCloudOnly: false @@ -109215,7 +109247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *666 + - *665 requestBody: required: true content: @@ -109279,16 +109311,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '201': description: Response content: application/json: - schema: *337 + schema: *336 examples: - default: *338 + default: *337 '404': *6 '422': *15 '403': *27 @@ -109316,7 +109348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *666 + - *665 responses: '204': description: Response @@ -109345,7 +109377,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -109355,9 +109387,9 @@ paths: application/json: schema: type: array - items: *240 + items: *239 examples: - default: *241 + default: *240 headers: Link: *66 x-github: @@ -109383,7 +109415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *666 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -109434,7 +109466,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -109471,7 +109503,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -109511,7 +109543,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -109548,16 +109580,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '200': description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-user-is-a-team-maintainer: *667 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -109590,7 +109622,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 requestBody: required: false @@ -109616,9 +109648,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *339 examples: - response-if-users-membership-with-team-is-now-pending: *668 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -109652,7 +109684,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *666 + - *665 - *70 responses: '204': @@ -109680,7 +109712,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -109690,9 +109722,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '404': *6 @@ -109722,15 +109754,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *669 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -109887,9 +109919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 requestBody: required: false content: @@ -109939,9 +109971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *666 + - *665 + - *340 - *341 - - *342 responses: '204': description: Response @@ -109966,7 +109998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *666 + - *665 - *17 - *19 responses: @@ -109976,9 +110008,9 @@ paths: application/json: schema: type: array - items: *201 + items: *200 examples: - response-if-child-teams-exist: *670 + response-if-child-teams-exist: *669 headers: Link: *66 '404': *6 @@ -110011,7 +110043,7 @@ paths: application/json: schema: oneOf: - - &672 + - &671 title: Private User description: Private User type: object @@ -110261,7 +110293,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *671 + - *670 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -110421,7 +110453,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *671 examples: default: value: @@ -110624,9 +110656,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *250 examples: - default: *252 + default: *251 '304': *35 '500': *53 '401': *23 @@ -110765,17 +110797,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -110819,7 +110851,7 @@ paths: type: integer secrets: type: array - items: &673 + items: &672 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -110861,7 +110893,7 @@ paths: - visibility - selected_repositories_url examples: - default: *462 + default: *461 headers: Link: *66 x-github: @@ -110933,13 +110965,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '200': description: Response content: application/json: - schema: *673 + schema: *672 examples: default: value: @@ -110969,7 +111001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 requestBody: required: true content: @@ -111014,7 +111046,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -111042,7 +111074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *164 + - *163 responses: '204': description: Response @@ -111067,7 +111099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 responses: '200': description: Response @@ -111083,9 +111115,9 @@ paths: type: integer repositories: type: array - items: *156 + items: *155 examples: - default: *202 + default: *201 '401': *23 '403': *27 '404': *6 @@ -111110,7 +111142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *164 + - *163 requestBody: required: true content: @@ -111164,7 +111196,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -111197,7 +111229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *164 + - *163 - name: repository_id in: path required: true @@ -111229,15 +111261,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '401': *23 @@ -111263,7 +111295,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 requestBody: required: false content: @@ -111293,9 +111325,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '401': *23 '403': *27 '404': *6 @@ -111317,7 +111349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': *37 '304': *35 @@ -111346,13 +111378,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '202': description: Response content: application/json: - schema: &674 + schema: &673 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -111405,7 +111437,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &675 + default: &674 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -111437,7 +111469,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *252 - name: export_id in: path required: true @@ -111450,9 +111482,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 x-github: githubCloudOnly: false @@ -111473,7 +111505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *252 responses: '200': description: Response @@ -111489,9 +111521,9 @@ paths: type: integer machines: type: array - items: *461 + items: *460 examples: - default: *676 + default: *675 '304': *35 '500': *53 '401': *23 @@ -111520,7 +111552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *252 requestBody: required: true content: @@ -111576,11 +111608,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *344 + repository: *343 machine: anyOf: - type: 'null' - - *461 + - *460 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -112377,15 +112409,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '304': *35 '500': *53 '400': *14 @@ -112417,15 +112449,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *252 responses: '200': description: Response content: application/json: - schema: *251 + schema: *250 examples: - default: *460 + default: *459 '500': *53 '401': *23 '403': *27 @@ -112455,9 +112487,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: &687 + default: &686 value: - id: 197 name: hello_docker @@ -112558,7 +112590,7 @@ paths: application/json: schema: type: array - items: &677 + items: &676 title: Email description: Email type: object @@ -112628,9 +112660,9 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: - default: &689 + default: &688 value: - email: octocat@github.com verified: true @@ -112707,7 +112739,7 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: default: value: @@ -112965,7 +112997,7 @@ paths: application/json: schema: type: array - items: &678 + items: &677 title: GPG Key description: A unique encryption key type: object @@ -113110,7 +113142,7 @@ paths: - subkeys - revoked examples: - default: &706 + default: &705 value: - id: 3 name: Octocat's GPG Key @@ -113195,9 +113227,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *677 examples: - default: &679 + default: &678 value: id: 3 name: Octocat's GPG Key @@ -113254,7 +113286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &680 + - &679 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -113266,9 +113298,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *677 examples: - default: *679 + default: *678 '404': *6 '304': *35 '403': *27 @@ -113291,7 +113323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *680 + - *679 responses: '204': description: Response @@ -113493,7 +113525,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *148 + default: *147 headers: Link: *66 '404': *6 @@ -113519,7 +113551,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -113545,7 +113577,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *145 + - *144 responses: '204': description: Response @@ -113579,12 +113611,12 @@ paths: application/json: schema: anyOf: - - *238 + - *237 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *238 '204': description: Response when there are no restrictions x-github: @@ -113608,7 +113640,7 @@ paths: required: true content: application/json: - schema: *533 + schema: *532 examples: default: value: @@ -113619,7 +113651,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -113700,7 +113732,7 @@ paths: - closed - all default: open - - *249 + - *248 - name: sort description: What to sort results by. in: query @@ -113725,7 +113757,7 @@ paths: type: array items: *82 examples: - default: *250 + default: *249 headers: Link: *66 '404': *6 @@ -113758,7 +113790,7 @@ paths: application/json: schema: type: array - items: &681 + items: &680 title: Key description: Key type: object @@ -113861,9 +113893,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *680 examples: - default: &682 + default: &681 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113896,15 +113928,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '200': description: Response content: application/json: - schema: *681 + schema: *680 examples: - default: *682 + default: *681 '404': *6 '304': *35 '403': *27 @@ -113927,7 +113959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *564 + - *563 responses: '204': description: Response @@ -113960,7 +113992,7 @@ paths: application/json: schema: type: array - items: &683 + items: &682 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -114039,7 +114071,7 @@ paths: - account - plan examples: - default: &684 + default: &683 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -114101,9 +114133,9 @@ paths: application/json: schema: type: array - items: *683 + items: *682 examples: - default: *684 + default: *683 headers: Link: *66 '304': *35 @@ -114143,7 +114175,7 @@ paths: application/json: schema: type: array - items: *255 + items: *254 examples: default: value: @@ -114257,7 +114289,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -114344,7 +114376,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *254 examples: default: value: @@ -114416,7 +114448,7 @@ paths: application/json: schema: type: array - items: *257 + items: *256 examples: default: value: @@ -114678,7 +114710,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -114858,7 +114890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *257 - name: exclude in: query required: false @@ -114871,7 +114903,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *256 examples: default: value: @@ -115065,7 +115097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *257 responses: '302': description: Response @@ -115091,7 +115123,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *257 responses: '204': description: Response @@ -115120,8 +115152,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *685 + - *257 + - *684 responses: '204': description: Response @@ -115145,7 +115177,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *257 - *17 - *19 responses: @@ -115155,9 +115187,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '404': *6 @@ -115254,7 +115286,7 @@ paths: - docker - nuget - container - - *686 + - *685 - *19 - *17 responses: @@ -115264,10 +115296,10 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 - '400': *688 + default: *686 + '400': *687 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115287,16 +115319,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: &707 + default: &706 value: id: 40201 name: octo-name @@ -115409,8 +115441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 responses: '204': description: Response @@ -115440,8 +115472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - name: token description: package token schema: @@ -115473,8 +115505,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: + - *264 - *265 - - *266 - *19 - *17 - name: state @@ -115494,7 +115526,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -115543,15 +115575,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -115587,9 +115619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -115619,9 +115651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 responses: '204': description: Response @@ -115658,9 +115690,9 @@ paths: application/json: schema: type: array - items: *677 + items: *676 examples: - default: *689 + default: *688 headers: Link: *66 '304': *35 @@ -115773,7 +115805,7 @@ paths: type: array items: *78 examples: - default: &696 + default: &695 summary: Default response value: - id: 1296269 @@ -116091,9 +116123,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *343 examples: - default: *346 + default: *345 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -116137,9 +116169,9 @@ paths: application/json: schema: type: array - items: *535 + items: *534 examples: - default: *690 + default: *689 headers: Link: *66 '304': *35 @@ -116162,7 +116194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -116191,7 +116223,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *241 responses: '204': description: Response @@ -116224,7 +116256,7 @@ paths: application/json: schema: type: array - items: &691 + items: &690 title: Social account description: Social media account type: object @@ -116241,7 +116273,7 @@ paths: - provider - url examples: - default: &692 + default: &691 value: - provider: twitter url: https://twitter.com/github @@ -116304,9 +116336,9 @@ paths: application/json: schema: type: array - items: *691 + items: *690 examples: - default: *692 + default: *691 '422': *15 '304': *35 '404': *6 @@ -116394,7 +116426,7 @@ paths: application/json: schema: type: array - items: &693 + items: &692 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -116414,7 +116446,7 @@ paths: - title - created_at examples: - default: &724 + default: &723 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116479,9 +116511,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *692 examples: - default: &694 + default: &693 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116511,7 +116543,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: - - &695 + - &694 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -116523,9 +116555,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *692 examples: - default: *694 + default: *693 '404': *6 '304': *35 '403': *27 @@ -116548,7 +116580,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: - - *695 + - *694 responses: '204': description: Response @@ -116577,7 +116609,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &725 + - &724 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 @@ -116602,11 +116634,11 @@ paths: type: array items: *78 examples: - default-response: *696 + default-response: *695 application/vnd.github.v3.star+json: schema: type: array - items: &726 + items: &725 title: Starred Repository description: Starred Repository type: object @@ -116762,8 +116794,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: + - *340 - *341 - - *342 responses: '204': description: Response if this repository is starred by you @@ -116791,8 +116823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -116816,8 +116848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: + - *340 - *341 - - *342 responses: '204': description: Response @@ -116850,9 +116882,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 '304': *35 @@ -116889,7 +116921,7 @@ paths: application/json: schema: type: array - items: *337 + items: *336 examples: default: value: @@ -116975,10 +117007,10 @@ paths: application/json: schema: oneOf: - - *672 - *671 + - *670 examples: - default-response: &700 + default-response: &699 summary: Default response value: login: octocat @@ -117013,7 +117045,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &701 + response-with-git-hub-plan-information: &700 summary: Response with GitHub plan information value: login: octocat @@ -117070,14 +117102,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &698 + - &697 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -117111,9 +117143,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: - draft_issue: *287 + draft_issue: *286 '304': *35 '403': *27 '401': *23 @@ -117136,7 +117168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *697 + - *696 - *17 responses: '200': @@ -117171,8 +117203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *698 - - *281 + - *697 + - *280 requestBody: required: true content: @@ -117246,17 +117278,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *699 + schema: *698 examples: table_view: summary: Response for creating a table view - value: *291 + value: *290 board_view: summary: Response for creating a board view with filter - value: *291 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *290 '304': *35 '403': *27 '401': *23 @@ -117298,11 +117330,11 @@ paths: application/json: schema: oneOf: - - *672 - *671 + - *670 examples: - default-response: *700 - response-with-git-hub-plan-information: *701 + default-response: *699 + response-with-git-hub-plan-information: *700 '404': *6 x-github: githubCloudOnly: false @@ -117352,8 +117384,8 @@ paths: required: - subject_digests examples: - default: *702 - withPredicateType: *703 + default: *701 + withPredicateType: *702 responses: '200': description: Response @@ -117407,7 +117439,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *704 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117627,12 +117659,12 @@ paths: initiator: type: string examples: - default: *401 + default: *400 '201': description: Response content: application/json: - schema: *165 + schema: *164 examples: default: value: @@ -117708,7 +117740,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *197 + items: *196 examples: default: summary: Example response for listing user copilot spaces @@ -117923,9 +117955,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: &705 + default: &704 summary: Example response for a user copilot space value: id: 42 @@ -118024,9 +118056,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 x-github: @@ -118150,9 +118182,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *705 + default: *704 '403': *27 '404': *6 '422': *15 @@ -118229,7 +118261,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *199 + items: *198 examples: default: value: @@ -118372,7 +118404,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -118483,7 +118515,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -118613,7 +118645,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *200 + items: *199 examples: default: value: @@ -118705,7 +118737,7 @@ paths: description: Resource created content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -118721,7 +118753,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -118774,7 +118806,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -118841,7 +118873,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *199 examples: default: value: @@ -118918,9 +118950,9 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 + default: *686 '403': *27 '401': *23 x-github: @@ -119304,9 +119336,9 @@ paths: application/json: schema: type: array - items: *678 + items: *677 examples: - default: *706 + default: *705 headers: Link: *66 x-github: @@ -119410,7 +119442,7 @@ paths: application/json: schema: *20 examples: - default: *532 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119535,7 +119567,7 @@ paths: - docker - nuget - container - - *686 + - *685 - *70 - *19 - *17 @@ -119546,12 +119578,12 @@ paths: application/json: schema: type: array - items: *263 + items: *262 examples: - default: *687 + default: *686 '403': *27 '401': *23 - '400': *688 + '400': *687 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119571,17 +119603,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '200': description: Response content: application/json: - schema: *263 + schema: *262 examples: - default: *707 + default: *706 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119602,8 +119634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 responses: '204': @@ -119636,8 +119668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *264 - *265 - - *266 - *70 - name: token description: package token @@ -119670,8 +119702,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: + - *264 - *265 - - *266 - *70 responses: '200': @@ -119680,7 +119712,7 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: default: value: @@ -119738,16 +119770,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *264 - *265 - - *266 - - *268 + - *267 - *70 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: default: value: @@ -119782,10 +119814,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -119817,10 +119849,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *264 - *265 - - *266 - *70 - - *268 + - *267 responses: '204': description: Response @@ -119861,9 +119893,9 @@ paths: application/json: schema: type: array - items: *279 + items: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -119885,16 +119917,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *280 - *70 responses: '200': description: Response content: application/json: - schema: *279 + schema: *278 examples: - default: *280 + default: *279 headers: Link: *66 '304': *35 @@ -119916,7 +119948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *280 - *70 - *17 - *45 @@ -119928,9 +119960,9 @@ paths: application/json: schema: type: array - items: *284 + items: *283 examples: - default: *708 + default: *707 headers: Link: *66 '304': *35 @@ -119952,7 +119984,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true content: @@ -119990,7 +120022,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *709 + items: *708 required: - name - data_type @@ -120006,7 +120038,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *710 + iteration_configuration: *709 required: - name - data_type @@ -120028,20 +120060,20 @@ paths: value: name: Due date data_type: date - single_select_field: *711 - iteration_field: *712 + single_select_field: *710 + iteration_field: *711 responses: '201': description: Response content: application/json: - schema: *284 + schema: *283 examples: - text_field: *713 - number_field: *714 - date_field: *715 - single_select_field: *716 - iteration_field: *717 + text_field: *712 + number_field: *713 + date_field: *714 + single_select_field: *715 + iteration_field: *716 '304': *35 '403': *27 '401': *23 @@ -120062,17 +120094,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *718 + - *280 + - *717 - *70 responses: '200': description: Response content: application/json: - schema: *284 + schema: *283 examples: - default: *719 + default: *718 headers: Link: *66 '304': *35 @@ -120095,7 +120127,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - *45 - *46 @@ -120128,9 +120160,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -120152,7 +120184,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *70 - - *281 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -120222,22 +120254,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *286 '304': *35 '403': *27 '401': *23 @@ -120257,9 +120289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *280 - *70 - - *290 + - *289 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -120279,9 +120311,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -120302,9 +120334,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -120377,13 +120409,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *287 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *23 '403': *27 '404': *6 @@ -120403,9 +120435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *280 - *70 - - *290 + - *289 responses: '204': description: Response @@ -120427,9 +120459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *280 - *70 - - *720 + - *719 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -120455,9 +120487,9 @@ paths: application/json: schema: type: array - items: *288 + items: *287 examples: - default: *289 + default: *288 headers: Link: *66 '304': *35 @@ -120676,9 +120708,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -120701,11 +120733,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-ai-credit-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing AI credit usage report @@ -120834,11 +120866,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *120 - *121 - - *122 responses: '200': description: Response when getting a billing premium request usage report @@ -120967,9 +120999,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *70 - - *117 - - *721 - - *119 + - *116 + - *720 + - *118 responses: '200': description: Response when getting a billing usage report @@ -121064,12 +121096,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *70 + - *116 - *117 - *118 - - *119 + - *721 + - *121 - *722 - - *122 - - *723 responses: '200': description: Response when getting a billing usage summary @@ -121203,9 +121235,9 @@ paths: application/json: schema: type: array - items: *691 + items: *690 examples: - default: *692 + default: *691 headers: Link: *66 x-github: @@ -121235,9 +121267,9 @@ paths: application/json: schema: type: array - items: *693 + items: *692 examples: - default: *724 + default: *723 headers: Link: *66 x-github: @@ -121262,7 +121294,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *725 + - *724 - *60 - *17 - *19 @@ -121274,11 +121306,11 @@ paths: schema: anyOf: - type: array - items: *726 + items: *725 - type: array items: *78 examples: - default-response: *696 + default-response: *695 headers: Link: *66 x-github: @@ -121307,9 +121339,9 @@ paths: application/json: schema: type: array - items: *156 + items: *155 examples: - default: *269 + default: *268 headers: Link: *66 x-github: @@ -121438,7 +121470,7 @@ webhooks: type: string enum: - disabled - enterprise: &727 + enterprise: &726 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -121507,7 +121539,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &728 + installation: &727 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -121528,7 +121560,7 @@ webhooks: required: - id - node_id - organization: &729 + organization: &728 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -121601,7 +121633,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &730 + repository: &729 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -122541,10 +122573,10 @@ webhooks: type: string enum: - enabled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -122620,11 +122652,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: &731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: &730 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) @@ -122847,11 +122879,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -123039,11 +123071,11 @@ webhooks: - everyone required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - rule: *731 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + rule: *730 sender: *4 required: - action @@ -123127,7 +123159,7 @@ webhooks: type: string enum: - completed - check_run: &733 + check_run: &732 title: CheckRun description: A check performed on the code of a given code change type: object @@ -123193,7 +123225,7 @@ webhooks: pull_requests: type: array items: *85 - repository: *156 + repository: *155 status: type: string enum: @@ -123237,7 +123269,7 @@ webhooks: - examples: - neutral - deployment: *732 + deployment: *731 details_url: type: string examples: @@ -123335,10 +123367,10 @@ webhooks: - output - app - pull_requests - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -123729,11 +123761,11 @@ webhooks: type: string enum: - created - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -124127,11 +124159,11 @@ webhooks: type: string enum: - requested_action - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 requested_action: description: The action requested by the user. type: object @@ -124534,11 +124566,11 @@ webhooks: type: string enum: - rerequested - check_run: *733 - installation: *728 - enterprise: *727 - organization: *729 - repository: *730 + check_run: *732 + installation: *727 + enterprise: *726 + organization: *728 + repository: *729 sender: *4 required: - check_run @@ -125523,10 +125555,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -126235,10 +126267,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -126941,10 +126973,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -127113,7 +127145,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127265,20 +127297,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &734 + commit_oid: &733 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: *727 - installation: *728 - organization: *729 - ref: &735 + enterprise: *726 + installation: *727 + organization: *728 + ref: &734 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: *730 + repository: *729 sender: *4 required: - action @@ -127445,7 +127477,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127686,12 +127718,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -127789,7 +127821,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127974,12 +128006,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -128148,7 +128180,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -128325,12 +128357,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -128431,7 +128463,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128620,9 +128652,9 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -128630,7 +128662,7 @@ webhooks: type: - string - 'null' - repository: *730 + repository: *729 sender: *4 required: - action @@ -128729,7 +128761,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128876,12 +128908,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *734 - enterprise: *727 - installation: *728 - organization: *729 - ref: *735 - repository: *730 + commit_oid: *733 + enterprise: *726 + installation: *727 + organization: *728 + ref: *734 + repository: *729 sender: *4 required: - action @@ -129050,7 +129082,7 @@ webhooks: required: - login - id - dismissed_comment: *432 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -129202,10 +129234,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -129465,10 +129497,10 @@ webhooks: - updated_at - author_association - body - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -129549,18 +129581,18 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *729 - pusher_type: &736 + organization: *728 + pusher_type: &735 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &737 + ref: &736 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -129570,7 +129602,7 @@ webhooks: enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -129652,10 +129684,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -129740,9 +129772,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -129819,10 +129851,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -129899,10 +129931,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *727 - installation: *728 - organization: *729 + definition: *291 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -129979,19 +130011,19 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - repository: *730 - organization: *729 + enterprise: *726 + installation: *727 + repository: *729 + organization: *728 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *295 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *295 required: - action - repository @@ -130067,18 +130099,18 @@ webhooks: title: delete event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - pusher_type: *736 - ref: *737 + enterprise: *726 + installation: *727 + organization: *728 + pusher_type: *735 + ref: *736 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *730 + repository: *729 sender: *4 required: - ref @@ -130158,11 +130190,11 @@ webhooks: type: string enum: - assignees_changed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130242,11 +130274,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130327,11 +130359,11 @@ webhooks: type: string enum: - auto_reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130412,11 +130444,11 @@ webhooks: type: string enum: - created - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130495,11 +130527,11 @@ webhooks: type: string enum: - dismissed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130578,11 +130610,11 @@ webhooks: type: string enum: - fixed - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130662,11 +130694,11 @@ webhooks: type: string enum: - reintroduced - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130745,11 +130777,11 @@ webhooks: type: string enum: - reopened - alert: *492 - installation: *728 - organization: *729 - enterprise: *727 - repository: *730 + alert: *491 + installation: *727 + organization: *728 + enterprise: *726 + repository: *729 sender: *4 required: - action @@ -130826,9 +130858,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - key: &738 + enterprise: *726 + installation: *727 + key: &737 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130866,8 +130898,8 @@ webhooks: - verified - created_at - read_only - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -130944,11 +130976,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - key: *738 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + key: *737 + organization: *728 + repository: *729 sender: *4 required: - action @@ -131515,12 +131547,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: &742 + workflow: &741 title: Workflow type: - object @@ -132271,13 +132303,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *499 + - *498 pull_requests: type: array - items: *582 - repository: *730 - organization: *729 - installation: *728 + items: *581 + repository: *729 + organization: *728 + installation: *727 sender: *4 responses: '200': @@ -132348,7 +132380,7 @@ webhooks: type: string enum: - approved - approver: &739 + approver: &738 type: object properties: avatar_url: @@ -132391,11 +132423,11 @@ webhooks: type: string comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: &740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: &739 type: array items: type: object @@ -132476,7 +132508,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &740 type: object properties: conclusion: @@ -133222,18 +133254,18 @@ webhooks: type: string enum: - rejected - approver: *739 + approver: *738 comment: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - reviewers: *740 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + reviewers: *739 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *740 workflow_job_runs: type: array items: @@ -133950,13 +133982,13 @@ webhooks: type: string enum: - requested - enterprise: *727 + enterprise: *726 environment: type: string - installation: *728 - organization: *729 - repository: *730 - requestor: &747 + installation: *727 + organization: *728 + repository: *729 + requestor: &746 title: User type: - object @@ -135889,12 +135921,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - workflow: *742 + workflow: *741 workflow_run: title: Deployment Workflow Run type: @@ -136585,7 +136617,7 @@ webhooks: type: string enum: - answered - answer: &745 + answer: &744 type: object properties: author_association: @@ -136745,11 +136777,11 @@ webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136876,11 +136908,11 @@ webhooks: - from required: - category - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -136963,11 +136995,11 @@ webhooks: type: string enum: - closed - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137049,7 +137081,7 @@ webhooks: type: string enum: - created - comment: &744 + comment: &743 type: object properties: author_association: @@ -137209,11 +137241,11 @@ webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137296,12 +137328,12 @@ webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137396,12 +137428,12 @@ webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + comment: *743 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137485,11 +137517,11 @@ webhooks: type: string enum: - created - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137571,11 +137603,11 @@ webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137675,11 +137707,11 @@ webhooks: type: string required: - from - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137761,10 +137793,10 @@ webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *727 - installation: *728 - label: &746 + discussion: *742 + enterprise: *726 + installation: *727 + label: &745 title: Label type: object properties: @@ -137797,8 +137829,8 @@ webhooks: - color - default - description - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137881,11 +137913,11 @@ webhooks: type: string enum: - locked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -137967,11 +137999,11 @@ webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138053,11 +138085,11 @@ webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138142,16 +138174,16 @@ webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *730 + new_discussion: *742 + new_repository: *729 required: - new_discussion - new_repository - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138234,10 +138266,10 @@ webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *729 - repository: *730 + discussion: *742 + old_answer: *744 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138319,12 +138351,12 @@ webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138407,11 +138439,11 @@ webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138493,11 +138525,11 @@ webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + discussion: *742 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -138570,7 +138602,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *727 + enterprise: *726 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -139248,9 +139280,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - forkee @@ -139396,9 +139428,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pages: description: The pages that were updated. type: array @@ -139436,7 +139468,7 @@ webhooks: - action - sha - html_url - repository: *730 + repository: *729 sender: *4 required: - pages @@ -139512,10 +139544,10 @@ webhooks: type: string enum: - created - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: &748 + organization: *728 + repositories: &747 description: An array of repository objects that the installation can access. type: array @@ -139541,8 +139573,8 @@ webhooks: - name - full_name - private - repository: *730 - requester: *747 + repository: *729 + requester: *746 sender: *4 required: - action @@ -139617,11 +139649,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -139698,11 +139730,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -139779,10 +139811,10 @@ webhooks: type: string enum: - added - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: &749 + organization: *728 + repositories_added: &748 description: An array of repository objects, which were added to the installation. type: array @@ -139828,15 +139860,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *730 - repository_selection: &750 + repository: *729 + repository_selection: &749 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *746 sender: *4 required: - action @@ -139915,10 +139947,10 @@ webhooks: type: string enum: - removed - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories_added: *749 + organization: *728 + repositories_added: *748 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139945,9 +139977,9 @@ webhooks: - name - full_name - private - repository: *730 - repository_selection: *750 - requester: *747 + repository: *729 + repository_selection: *749 + requester: *746 sender: *4 required: - action @@ -140026,11 +140058,11 @@ webhooks: type: string enum: - suspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -140212,10 +140244,10 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 target_type: type: string @@ -140294,11 +140326,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *727 + enterprise: *726 installation: *20 - organization: *729 - repositories: *748 - repository: *730 + organization: *728 + repositories: *747 + repository: *729 requester: type: - 'null' @@ -140464,7 +140496,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 user: title: User type: @@ -140550,8 +140582,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141363,8 +141395,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141381,7 +141413,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -141725,8 +141757,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -141806,7 +141838,7 @@ webhooks: type: string enum: - deleted - comment: &751 + comment: &750 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -141963,7 +141995,7 @@ webhooks: pin: anyOf: - type: 'null' - - *561 + - *560 required: - url - html_url @@ -141977,8 +142009,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142786,8 +142818,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142804,7 +142836,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -143150,8 +143182,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -143231,7 +143263,7 @@ webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -143243,9 +143275,9 @@ webhooks: type: string required: - from - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144056,8 +144088,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144074,7 +144106,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -144418,8 +144450,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -144500,9 +144532,9 @@ webhooks: type: string enum: - pinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145315,8 +145347,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145333,7 +145365,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -145679,8 +145711,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -145760,9 +145792,9 @@ webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *727 - installation: *728 + comment: *750 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146575,8 +146607,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146593,7 +146625,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -146939,8 +146971,8 @@ webhooks: - state - locked - assignee - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147029,9 +147061,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147120,9 +147152,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147210,9 +147242,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147301,9 +147333,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -147383,10 +147415,10 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - issue: &752 + assignee: *746 + enterprise: *726 + installation: *727 + issue: &751 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148197,11 +148229,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148218,7 +148250,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -148321,8 +148353,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -148402,8 +148434,8 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149219,11 +149251,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149240,7 +149272,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -149486,8 +149518,8 @@ webhooks: required: - state - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -149566,8 +149598,8 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150374,11 +150406,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150395,7 +150427,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -150497,8 +150529,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -150577,8 +150609,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151408,11 +151440,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151429,7 +151461,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -151510,7 +151542,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &753 + milestone: &752 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151653,8 +151685,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -151753,8 +151785,8 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152565,11 +152597,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152583,7 +152615,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -152689,9 +152721,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -152771,9 +152803,9 @@ webhooks: type: string enum: - field_added - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was set or updated on the @@ -152892,8 +152924,8 @@ webhooks: - id required: - from - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -152973,9 +153005,9 @@ webhooks: type: string enum: - field_removed - enterprise: *727 - installation: *728 - issue: *752 + enterprise: *726 + installation: *727 + issue: *751 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -153038,8 +153070,8 @@ webhooks: - 'null' required: - id - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -153119,8 +153151,8 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153930,11 +153962,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153948,7 +153980,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -154054,9 +154086,9 @@ webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *729 - repository: *730 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -154136,8 +154168,8 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154972,11 +155004,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154990,7 +155022,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *245 title: description: Title of the issue type: string @@ -155073,8 +155105,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -155153,8 +155185,8 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155983,11 +156015,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156004,7 +156036,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -156084,9 +156116,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *753 - organization: *729 - repository: *730 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -156973,11 +157005,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157077,7 +157109,7 @@ webhooks: required: - login - id - type: *246 + type: *245 required: - id - number @@ -157569,8 +157601,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158377,11 +158409,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158398,7 +158430,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -158504,8 +158536,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -158585,9 +158617,9 @@ webhooks: type: string enum: - pinned - enterprise: *727 - installation: *728 - issue: &754 + enterprise: *726 + installation: *727 + issue: &753 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -159392,11 +159424,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159413,7 +159445,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -159515,8 +159547,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -159595,8 +159627,8 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -160429,11 +160461,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160530,9 +160562,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *729 - repository: *730 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -161420,11 +161452,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161441,7 +161473,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -162034,11 +162066,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162118,12 +162150,12 @@ webhooks: type: string enum: - typed - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162204,7 +162236,7 @@ webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: - object @@ -162276,11 +162308,11 @@ webhooks: required: - login - id - enterprise: *727 - installation: *728 - issue: *752 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162359,12 +162391,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - issue: *752 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -162444,8 +162476,8 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163278,11 +163310,11 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *664 - issue_dependencies_summary: *665 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *545 + items: *544 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163299,7 +163331,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *245 updated_at: type: string format: date-time @@ -163379,8 +163411,8 @@ webhooks: format: uri user_view_type: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163460,11 +163492,11 @@ webhooks: type: string enum: - unpinned - enterprise: *727 - installation: *728 - issue: *754 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *753 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163543,12 +163575,12 @@ webhooks: type: string enum: - untyped - enterprise: *727 - installation: *728 - issue: *752 - type: *246 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + issue: *751 + type: *245 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163628,11 +163660,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163710,11 +163742,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163824,11 +163856,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - label: *746 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + label: *745 + organization: *728 + repository: *729 sender: *4 required: - action @@ -163910,9 +163942,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: &755 + enterprise: *726 + installation: *727 + marketplace_purchase: &754 title: Marketplace Purchase type: object required: @@ -164000,8 +164032,8 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: &756 + organization: *728 + previous_marketplace_purchase: &755 title: Marketplace Purchase type: object properties: @@ -164085,7 +164117,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -164165,10 +164197,10 @@ webhooks: - changed effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164256,7 +164288,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -164338,10 +164370,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164427,7 +164459,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *730 + repository: *729 sender: *4 required: - action @@ -164508,8 +164540,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 marketplace_purchase: title: Marketplace Purchase type: object @@ -164595,9 +164627,9 @@ webhooks: type: integer unit_count: type: integer - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -164677,12 +164709,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *727 - installation: *728 - marketplace_purchase: *755 - organization: *729 - previous_marketplace_purchase: *756 - repository: *730 + enterprise: *726 + installation: *727 + marketplace_purchase: *754 + organization: *728 + previous_marketplace_purchase: *755 + repository: *729 sender: *4 required: - action @@ -164784,11 +164816,11 @@ webhooks: type: string required: - to - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164890,11 +164922,11 @@ webhooks: type: - string - 'null' - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -164973,11 +165005,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165055,11 +165087,11 @@ webhooks: type: string enum: - added - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165137,7 +165169,7 @@ webhooks: required: - login - id - team: &757 + team: &756 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -165367,11 +165399,11 @@ webhooks: type: string enum: - removed - enterprise: *727 - installation: *728 - member: *747 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + member: *746 + organization: *728 + repository: *729 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165450,7 +165482,7 @@ webhooks: required: - login - id - team: *757 + team: *756 required: - action - scope @@ -165532,8 +165564,8 @@ webhooks: type: string enum: - checks_requested - installation: *728 - merge_group: &758 + installation: *727 + merge_group: &757 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -165552,15 +165584,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *421 + head_commit: *420 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165646,10 +165678,10 @@ webhooks: - merged - invalidated - dequeued - installation: *728 - merge_group: *758 - organization: *729 - repository: *730 + installation: *727 + merge_group: *757 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165722,7 +165754,7 @@ webhooks: type: string enum: - deleted - enterprise: *727 + enterprise: *726 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165831,12 +165863,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *728 - organization: *729 + installation: *727 + organization: *728 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -165916,11 +165948,11 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -165999,9 +166031,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - milestone: &759 + enterprise: *726 + installation: *727 + milestone: &758 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166143,8 +166175,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166223,11 +166255,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166337,11 +166369,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - milestone: *753 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *752 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166421,11 +166453,11 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - milestone: *759 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + milestone: *758 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166504,11 +166536,11 @@ webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166587,11 +166619,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + blocked_user: *746 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166670,9 +166702,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - membership: &760 + enterprise: *726 + installation: *727 + membership: &759 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166782,8 +166814,8 @@ webhooks: - role - organization_url - user - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166861,11 +166893,11 @@ webhooks: type: string enum: - member_added - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -166944,8 +166976,8 @@ webhooks: type: string enum: - member_invited - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -167067,10 +167099,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 - user: *747 + user: *746 required: - action - invitation @@ -167148,11 +167180,11 @@ webhooks: type: string enum: - member_removed - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -167239,11 +167271,11 @@ webhooks: properties: from: type: string - enterprise: *727 - installation: *728 - membership: *760 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + membership: *759 + organization: *728 + repository: *729 sender: *4 required: - action @@ -167320,9 +167352,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -167845,7 +167877,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &761 + items: &760 title: Ruby Gems metadata type: object properties: @@ -167942,7 +167974,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -168018,9 +168050,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 package: description: Information about the package. type: object @@ -168382,7 +168414,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 source_url: type: string format: uri @@ -168453,7 +168485,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -168633,12 +168665,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *727 + enterprise: *726 id: type: integer - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - id @@ -168715,7 +168747,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &762 + personal_access_token_request: &761 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168865,10 +168897,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *727 - organization: *729 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -168945,11 +168977,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -169025,11 +169057,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *762 - enterprise: *727 - organization: *729 + personal_access_token_request: *761 + enterprise: *726 + organization: *728 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -169104,11 +169136,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *762 - organization: *729 - enterprise: *727 + personal_access_token_request: *761 + organization: *728 + enterprise: *726 sender: *4 - installation: *728 + installation: *727 required: - action - personal_access_token_request @@ -169213,7 +169245,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *763 + last_response: *762 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -169245,8 +169277,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 zen: description: Random string of GitHub zen. @@ -169491,10 +169523,10 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: &764 + enterprise: *726 + installation: *727 + organization: *728 + project_card: &763 title: Project Card type: object properties: @@ -169617,7 +169649,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -169698,11 +169730,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -169782,9 +169814,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: title: Project Card type: object @@ -169914,7 +169946,7 @@ webhooks: repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -170008,11 +170040,11 @@ webhooks: - from required: - note - enterprise: *727 - installation: *728 - organization: *729 - project_card: *764 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_card: *763 + repository: *729 sender: *4 required: - action @@ -170106,9 +170138,9 @@ webhooks: - from required: - column_id - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 project_card: allOf: - title: Project Card @@ -170305,7 +170337,7 @@ webhooks: type: string required: - after_id - repository: *730 + repository: *729 sender: *4 required: - action @@ -170385,10 +170417,10 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - organization: *729 - project: &766 + enterprise: *726 + installation: *727 + organization: *728 + project: &765 title: Project type: object properties: @@ -170515,7 +170547,7 @@ webhooks: - creator - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -170595,10 +170627,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project_column: &765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: &764 title: Project Column type: object properties: @@ -170638,7 +170670,7 @@ webhooks: - name - created_at - updated_at - repository: *730 + repository: *729 sender: *4 required: - action @@ -170717,14 +170749,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -170813,11 +170845,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -170897,11 +170929,11 @@ webhooks: type: string enum: - moved - enterprise: *727 - installation: *728 - organization: *729 - project_column: *765 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project_column: *764 + repository: *729 sender: *4 required: - action @@ -170981,11 +171013,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -171065,14 +171097,14 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - project: *766 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 repository: anyOf: - type: 'null' - - *730 + - *729 sender: *4 required: - action @@ -171173,11 +171205,11 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -171256,11 +171288,11 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - organization: *729 - project: *766 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + project: *765 + repository: *729 sender: *4 required: - action @@ -171341,9 +171373,9 @@ webhooks: type: string enum: - closed - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171424,9 +171456,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171507,9 +171539,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171630,9 +171662,9 @@ webhooks: type: string to: type: string - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -171715,7 +171747,7 @@ webhooks: type: string enum: - archived - changes: &770 + changes: &769 type: object properties: archived_at: @@ -171731,9 +171763,9 @@ webhooks: - string - 'null' format: date-time - installation: *728 - organization: *729 - projects_v2_item: &767 + installation: *727 + organization: *728 + projects_v2_item: &766 title: Projects v2 Item description: An item belonging to a project type: object @@ -171751,7 +171783,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *284 creator: *4 created_at: type: string @@ -171873,9 +171905,9 @@ webhooks: - 'null' to: type: string - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -171957,9 +171989,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -172040,9 +172072,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -172147,7 +172179,7 @@ webhooks: oneOf: - type: string - type: integer - - &768 + - &767 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -172171,7 +172203,7 @@ webhooks: required: - id - name - - &769 + - &768 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -172211,8 +172243,8 @@ webhooks: oneOf: - type: string - type: integer + - *767 - *768 - - *769 type: - 'null' - string @@ -172235,9 +172267,9 @@ webhooks: - 'null' required: - body - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -172334,9 +172366,9 @@ webhooks: type: - string - 'null' - installation: *728 - organization: *729 - projects_v2_item: *767 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -172419,10 +172451,10 @@ webhooks: type: string enum: - restored - changes: *770 - installation: *728 - organization: *729 - projects_v2_item: *767 + changes: *769 + installation: *727 + organization: *728 + projects_v2_item: *766 sender: *4 required: - action @@ -172504,9 +172536,9 @@ webhooks: type: string enum: - reopened - installation: *728 - organization: *729 - projects_v2: *279 + installation: *727 + organization: *728 + projects_v2: *278 sender: *4 required: - action @@ -172587,9 +172619,9 @@ webhooks: type: string enum: - created - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -172670,9 +172702,9 @@ webhooks: type: string enum: - deleted - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -172818,9 +172850,9 @@ webhooks: - string - 'null' format: date - installation: *728 - organization: *729 - projects_v2_status_update: *771 + installation: *727 + organization: *728 + projects_v2_status_update: *770 sender: *4 required: - action @@ -172891,10 +172923,10 @@ webhooks: title: public event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - repository @@ -172971,13 +173003,13 @@ webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *727 - installation: *728 - number: &772 + assignee: *746 + enterprise: *726 + installation: *727 + number: &771 description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -175348,7 +175380,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -175445,11 +175477,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -177813,7 +177845,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -177910,11 +177942,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -180278,7 +180310,7 @@ webhooks: - draft reason: type: string - repository: *730 + repository: *729 sender: *4 required: - action @@ -180375,13 +180407,13 @@ webhooks: type: string enum: - closed - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: &773 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: &772 allOf: - - *582 + - *581 - type: object properties: allow_auto_merge: @@ -180443,7 +180475,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *730 + repository: *729 sender: *4 required: - action @@ -180524,12 +180556,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -180609,11 +180641,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: &774 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: &773 title: Pull Request type: object properties: @@ -183004,7 +183036,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *730 + repository: *729 sender: *4 required: - action @@ -183083,11 +183115,11 @@ webhooks: type: string enum: - dequeued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -185455,7 +185487,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *730 + repository: *729 sender: *4 required: - action @@ -185587,12 +185619,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -185672,11 +185704,11 @@ webhooks: type: string enum: - enqueued - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -188029,7 +188061,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -188117,11 +188149,11 @@ webhooks: type: string enum: - labeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -190491,7 +190523,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -190587,10 +190619,10 @@ webhooks: type: string enum: - locked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -192958,7 +192990,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -193053,12 +193085,12 @@ webhooks: type: string enum: - milestoned - enterprise: *727 - milestone: *282 - number: *772 - organization: *729 - pull_request: *774 - repository: *730 + enterprise: *726 + milestone: *281 + number: *771 + organization: *728 + pull_request: *773 + repository: *729 sender: *4 required: - action @@ -193137,12 +193169,12 @@ webhooks: type: string enum: - opened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -193223,12 +193255,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -193308,12 +193340,12 @@ webhooks: type: string enum: - reopened - enterprise: *727 - installation: *728 - number: *772 - organization: *729 - pull_request: *773 - repository: *730 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 + pull_request: *772 + repository: *729 sender: *4 required: - action @@ -193688,9 +193720,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -195942,7 +195974,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -196037,7 +196069,7 @@ webhooks: type: string enum: - deleted - comment: &776 + comment: &775 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -196330,9 +196362,9 @@ webhooks: - start_side - side - reactions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -198572,7 +198604,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -198667,11 +198699,11 @@ webhooks: type: string enum: - edited - changes: *775 - comment: *776 - enterprise: *727 - installation: *728 - organization: *729 + changes: *774 + comment: *775 + enterprise: *726 + installation: *727 + organization: *728 pull_request: type: object properties: @@ -200914,7 +200946,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *730 + repository: *729 sender: *4 required: - action @@ -201010,9 +201042,9 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -203267,7 +203299,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 review: description: The review that was affected. type: object @@ -203533,9 +203565,9 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -205649,8 +205681,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: &777 + repository: *729 + review: &776 description: The review that was affected. type: object properties: @@ -205896,12 +205928,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -208270,7 +208302,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -208356,12 +208388,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -210737,7 +210769,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210955,12 +210987,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -213331,7 +213363,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_reviewer: title: User type: @@ -213418,12 +213450,12 @@ webhooks: type: string enum: - review_requested - enterprise: *727 - installation: *728 + enterprise: *726 + installation: *727 number: description: The pull request number. type: integer - organization: *729 + organization: *728 pull_request: title: Pull Request type: object @@ -215785,7 +215817,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215992,9 +216024,9 @@ webhooks: type: string enum: - submitted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -218252,8 +218284,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 - review: *777 + repository: *729 + review: *776 sender: *4 required: - action @@ -218348,9 +218380,9 @@ webhooks: type: string enum: - resolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -220503,7 +220535,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -220908,9 +220940,9 @@ webhooks: type: string enum: - unresolved - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 pull_request: title: Simple Pull Request type: object @@ -223046,7 +223078,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *730 + repository: *729 sender: *4 thread: type: object @@ -223453,10 +223485,10 @@ webhooks: type: string before: type: string - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -225813,7 +225845,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -225910,11 +225942,11 @@ webhooks: type: string enum: - unassigned - assignee: *778 - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + assignee: *777 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -228286,7 +228318,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -228380,11 +228412,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *727 - installation: *728 - label: *746 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + label: *745 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -230745,7 +230777,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -230841,10 +230873,10 @@ webhooks: type: string enum: - unlocked - enterprise: *727 - installation: *728 - number: *772 - organization: *729 + enterprise: *726 + installation: *727 + number: *771 + organization: *728 pull_request: title: Pull Request type: object @@ -233195,7 +233227,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *730 + repository: *729 sender: *4 required: - action @@ -233413,7 +233445,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *727 + enterprise: *726 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -233508,8 +233540,8 @@ webhooks: - url - author - committer - installation: *728 - organization: *729 + installation: *727 + organization: *728 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -234108,9 +234140,9 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -234587,7 +234619,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -234643,7 +234675,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -234721,9 +234753,9 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 registry_package: type: object properties: @@ -235035,7 +235067,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *761 + items: *760 summary: type: string tag_name: @@ -235085,7 +235117,7 @@ webhooks: - owner - package_version - registry - repository: *730 + repository: *729 sender: *4 required: - action @@ -235162,10 +235194,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - release: &779 + enterprise: *726 + installation: *727 + organization: *728 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -235496,7 +235528,7 @@ webhooks: - updated_at - zipball_url - body - repository: *730 + repository: *729 sender: *4 required: - action @@ -235573,11 +235605,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -235694,11 +235726,11 @@ webhooks: type: boolean required: - to - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -235776,9 +235808,9 @@ webhooks: type: string enum: - prereleased - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -236114,7 +236146,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -236190,10 +236222,10 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - release: &780 + enterprise: *726 + installation: *727 + organization: *728 + release: &779 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -236526,7 +236558,7 @@ webhooks: - string - 'null' format: uri - repository: *730 + repository: *729 sender: *4 required: - action @@ -236602,11 +236634,11 @@ webhooks: type: string enum: - released - enterprise: *727 - installation: *728 - organization: *729 - release: *779 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *778 + repository: *729 sender: *4 required: - action @@ -236682,11 +236714,11 @@ webhooks: type: string enum: - unpublished - enterprise: *727 - installation: *728 - organization: *729 - release: *780 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + release: *779 + repository: *729 sender: *4 required: - action @@ -236762,11 +236794,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -236842,11 +236874,11 @@ webhooks: type: string enum: - reported - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_advisory: *651 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_advisory: *650 sender: *4 required: - action @@ -236922,10 +236954,10 @@ webhooks: type: string enum: - archived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237002,10 +237034,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237083,10 +237115,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237171,10 +237203,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237289,10 +237321,10 @@ webhooks: - 'null' items: type: string - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237364,10 +237396,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 status: type: string @@ -237448,10 +237480,10 @@ webhooks: type: string enum: - privatized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237528,10 +237560,10 @@ webhooks: type: string enum: - publicized - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237625,10 +237657,10 @@ webhooks: - name required: - repository - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -237708,11 +237740,11 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -237790,11 +237822,11 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 sender: *4 required: - action @@ -237872,11 +237904,11 @@ webhooks: type: string enum: - edited - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - repository_ruleset: *324 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + repository_ruleset: *323 changes: type: object properties: @@ -237895,16 +237927,16 @@ webhooks: properties: added: type: array - items: *298 + items: *297 deleted: type: array - items: *298 + items: *297 updated: type: array items: type: object properties: - condition: *298 + condition: *297 changes: type: object properties: @@ -237937,16 +237969,16 @@ webhooks: properties: added: type: array - items: *602 + items: *601 deleted: type: array - items: *602 + items: *601 updated: type: array items: type: object properties: - rule: *602 + rule: *601 changes: type: object properties: @@ -238183,10 +238215,10 @@ webhooks: - from required: - owner - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238264,10 +238296,10 @@ webhooks: type: string enum: - unarchived - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238345,7 +238377,7 @@ webhooks: type: string enum: - create - alert: &781 + alert: &780 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -238470,10 +238502,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238683,10 +238715,10 @@ webhooks: type: string enum: - dismissed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238764,11 +238796,11 @@ webhooks: type: string enum: - reopen - alert: *781 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *780 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -238970,10 +239002,10 @@ webhooks: enum: - fixed - open - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239051,17 +239083,17 @@ webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: - number: *181 - created_at: *182 + number: *180 + created_at: *181 updated_at: anyOf: - type: 'null' - - *183 - url: *184 - html_url: *185 + - *182 + url: *183 + html_url: *184 locations_url: type: string format: uri @@ -239191,10 +239223,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239272,11 +239304,11 @@ webhooks: type: string enum: - created - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239357,11 +239389,11 @@ webhooks: type: string enum: - created - alert: *782 - installation: *728 - location: *783 - organization: *729 - repository: *730 + alert: *781 + installation: *727 + location: *782 + organization: *728 + repository: *729 sender: *4 required: - location @@ -239599,11 +239631,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239681,11 +239713,11 @@ webhooks: type: string enum: - reopened - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239763,11 +239795,11 @@ webhooks: type: string enum: - resolved - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239845,12 +239877,12 @@ webhooks: type: string enum: - unassigned - alert: *782 + alert: *781 assignee: *4 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -239928,11 +239960,11 @@ webhooks: type: string enum: - validated - alert: *782 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + alert: *781 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -240062,10 +240094,10 @@ webhooks: - organization - enterprise - - repository: *730 - enterprise: *727 - installation: *728 - organization: *729 + repository: *729 + enterprise: *726 + installation: *727 + organization: *728 sender: *4 required: - action @@ -240143,11 +240175,11 @@ webhooks: type: string enum: - published - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: &784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: &783 description: The details of the security advisory, including summary, description, and severity. type: object @@ -240351,11 +240383,11 @@ webhooks: type: string enum: - updated - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 - security_advisory: *784 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 + security_advisory: *783 sender: *4 required: - action @@ -240428,10 +240460,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -240625,11 +240657,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *727 - installation: *728 - organization: *729 - repository: *344 + security_and_analysis: *296 + enterprise: *726 + installation: *727 + organization: *728 + repository: *343 sender: *4 required: - changes @@ -240707,12 +240739,12 @@ webhooks: type: string enum: - cancelled - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: &785 + sponsorship: &784 type: object properties: created_at: @@ -241017,12 +241049,12 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -241110,12 +241142,12 @@ webhooks: type: string required: - from - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -241192,17 +241224,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &786 + effective_date: &785 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: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -241276,7 +241308,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -241320,13 +241352,13 @@ webhooks: - from required: - tier - effective_date: *786 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + effective_date: *785 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -241403,13 +241435,13 @@ webhooks: type: string enum: - tier_changed - changes: *787 - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + changes: *786 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -241483,10 +241515,10 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241570,10 +241602,10 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242007,15 +242039,15 @@ webhooks: type: - string - 'null' - enterprise: *727 + enterprise: *726 id: description: The unique identifier of the status. type: integer - installation: *728 + installation: *727 name: type: string - organization: *729 - repository: *730 + organization: *728 + repository: *729 sender: *4 sha: description: The Commit SHA. @@ -242131,9 +242163,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -242222,9 +242254,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -242313,9 +242345,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -242404,9 +242436,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *728 - organization: *729 - repository: *730 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -242482,12 +242514,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 - team: &788 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -242717,9 +242749,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -243189,7 +243221,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -243265,9 +243297,9 @@ webhooks: type: string enum: - created - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -243737,7 +243769,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -243814,9 +243846,9 @@ webhooks: type: string enum: - deleted - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -244286,7 +244318,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -244430,9 +244462,9 @@ webhooks: - from required: - permissions - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -244902,7 +244934,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -244980,9 +245012,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *727 - installation: *728 - organization: *729 + enterprise: *726 + installation: *727 + organization: *728 repository: title: Repository description: A git repository @@ -245452,7 +245484,7 @@ webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -245528,10 +245560,10 @@ webhooks: type: string enum: - started - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 required: - action @@ -245604,17 +245636,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *727 + enterprise: *726 inputs: type: - object - 'null' additionalProperties: true - installation: *728 - organization: *729 + installation: *727 + organization: *728 ref: type: string - repository: *730 + repository: *729 sender: *4 workflow: type: string @@ -245696,10 +245728,10 @@ webhooks: type: string enum: - completed - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -245955,7 +245987,7 @@ webhooks: type: string required: - conclusion - deployment: *499 + deployment: *498 required: - action - repository @@ -246034,10 +246066,10 @@ webhooks: type: string enum: - in_progress - enterprise: *727 - installation: *728 - organization: *729 - repository: *730 + enterprise: *726 + installation: *727 + organization: *728 + repository: *729 sender: *4 workflow_job: allOf: @@ -246319,7 +246351,7 @@ webhooks: required: - status {"code":"deadline_exceeded","msg":"operation timed out"}